minor changes to many files

This commit is contained in:
lelgenio 2020-11-12 16:15:55 -03:00
parent 91fbf010e4
commit 3e511297df
5 changed files with 9 additions and 6 deletions

View File

@ -3,14 +3,14 @@
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
# env:
env:
# TERM variable
#
# This value is used to set the `$TERM` environment variable for
# each instance of Alacritty. If it is not present, alacritty will
# check the local terminfo database and use `alacritty` if it is
# available, otherwise `xterm-256color` is used.
# TERM: screen-256color
TERM: xterm-256color
#window:
# Window dimensions (changes require restart)

View File

@ -194,8 +194,8 @@ c.colors.tabs.odd.fg = color.txt
c.colors.tabs.even.bg = color.bg
c.colors.tabs.odd.bg = color.bg
c.colors.tabs.selected.even.fg = color.bg
c.colors.tabs.selected.odd.fg = color.bg
c.colors.tabs.selected.even.fg = color.txt
c.colors.tabs.selected.odd.fg = color.txt
c.colors.tabs.selected.even.bg = color.accent
c.colors.tabs.selected.odd.bg = color.accent

View File

@ -37,7 +37,7 @@ sed -i -- '1d' "${namebase}.2"
{
echo '# Please review/modify this script or empty it to do nothing'
while read -r l1 <&3 && read -r l2 <&4; do
[ "$l1" = "$l2" ] || printf "mv -i -- %q %q" "$l1" "$l2"
[ "$l1" = "$l2" ] || printf "mv -Ti -- %q %q\n" "$l1" "$l2"
done 3<"${namebase}.1" 4<"${namebase}.2"
} > "${namebase}.sh"

View File

@ -389,4 +389,4 @@ bindsym $mod+escape mode Passthrough
include /etc/sway/config.d/
#}}}
# vim:filetype=i3config:foldmethod=marker
# vim:filetype=sh:foldmethod=marker

View File

@ -22,3 +22,6 @@ set -g pane-active-border-style "fg=#cc5757 bg=default"
set -g status-bg default
set -g status off
set -g default-terminal "xterm-256color"
set -g terminal-overrides ",xterm-256color:Tc"