fixed bug that caused an alleged decompression DOS attack
This commit is contained in:
@@ -3,22 +3,24 @@
|
||||
# A script to manage my dotfiles and copy them to my git
|
||||
dotfiles=$HOME/workspace/Git/dotfiles
|
||||
|
||||
# -avv for debugging purposes
|
||||
# -v for normal use
|
||||
copy(){
|
||||
rsync -avv $HOME/$1 $dotfiles/$1
|
||||
# rsync -avv $HOME/$1 $dotfiles/$1
|
||||
rsync -a $HOME/$1 $dotfiles/$1
|
||||
}
|
||||
|
||||
# For Debugging purposes
|
||||
copy_test(){
|
||||
echo rsync -a $HOME/$1 $dotfiles/$1
|
||||
echo rsync -avv $HOME/$1 $dotfiles/$1
|
||||
}
|
||||
|
||||
# i3 gaps
|
||||
# Powerline fonts must be installed
|
||||
|
||||
printf "\nCopying i3 configs...\n"
|
||||
copy .config/i3/
|
||||
|
||||
# Termite
|
||||
|
||||
printf "\nCopying Termite configs...\n"
|
||||
copy .config/termite/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user