Misc. other changes I guess
This commit is contained in:
parent
bb1e17b373
commit
4cb23eb79f
4
.bashrc
4
.bashrc
|
@ -274,8 +274,8 @@ elif [[ "$operating_system" = "BSD" ]]; then
|
|||
alias la='ls -A --color=auto '
|
||||
alias lla='ls -lhA --color=auto '
|
||||
else # assume GNU ls (most desktop Linux distros)
|
||||
alias ls='ls -C --color=auto '
|
||||
alias l='ls -C --color=auto '
|
||||
alias ls='ls --color=auto '
|
||||
alias l='ls --color=auto '
|
||||
alias ll='ls -lh --color=auto '
|
||||
alias la='ls -A --color=auto '
|
||||
alias lla='ls -lhA --color=auto '
|
||||
|
|
|
@ -265,7 +265,8 @@ bindsym $mod+q exec "$HOME/.config/i3/screenlocker.sh"
|
|||
|
||||
# 'desktop' background changed below
|
||||
# TODO: maybe replace with variable if posssible
|
||||
exec_always feh --bg-fill "$HOME/Library/Images/Wallpapers/archer/archer-mallorys-office3.jpg"
|
||||
#exec_always feh --bg-fill "$HOME/Library/Images/Wallpapers/archer/archer-mallorys-office3.jpg"
|
||||
exec_always feh --bg-fill "$HOME/Library/Images/Wallpapers/archer/archer-mallorys-office2.jpg"
|
||||
# runs compositor, needed for effects, (really for st transparency)
|
||||
#exec --no-startup-id compton -b --config ~/.config/compton/compton.conf
|
||||
## TODO replace
|
||||
|
|
|
@ -39,7 +39,6 @@ unset emptyline
|
|||
|
||||
## Editor behavior
|
||||
set autoindent
|
||||
set smooth
|
||||
set softwrap
|
||||
set tabsize 8
|
||||
#set tabstospaces # will automatically replace TAB w/ spaces, disabled
|
||||
|
|
|
@ -20,7 +20,8 @@ read rhost
|
|||
# transfered, if already existing, by checksum (rather than by filesize or
|
||||
# modified time). '-e' specifies the remote shell to use, which here is ssh
|
||||
# '--stats' and '--progress' simply show a lot of info about the file transfers
|
||||
options="-avhc -e ssh --stats --progress"
|
||||
# '-z' compresses data during the transfer
|
||||
options="-avhcz -e ssh --stats --progress"
|
||||
|
||||
echo "Delete files at destination not present in source directories? (y/n):"
|
||||
read del_remote
|
||||
|
|
Loading…
Reference in New Issue