Update linkdots.sh

This commit is contained in:
Marco Thomas
2020-08-22 11:56:29 +02:00
parent 31edfdceea
commit acd10383de
3 changed files with 25 additions and 30 deletions

View File

@@ -279,7 +279,7 @@ visual_bell:
# #
# Window opacity as a floating point number from `0.0` to `1.0`. # Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque. # The value `0.0` is completely transparent and `1.0` is opaque.
background_opacity: 0.98 background_opacity: 0.95
selection: selection:
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"

View File

@@ -5,3 +5,8 @@ opacity-rule = [
]; ];
corner-radius = 15; corner-radius = 15;
#blur: {
# method: "gaussian";
# strength = 7;
#}

View File

@@ -1,5 +1,7 @@
#!/bin/sh #!/bin/sh
VERBOSE=$1
# Make sure the paths are correct # Make sure the paths are correct
path=$(pwd) path=$(pwd)
@@ -8,34 +10,22 @@ rm -rf $HOME/scripts
ln -sf $path/scripts $HOME/scripts ln -sf $path/scripts $HOME/scripts
# Home directory # Home directory
ln -sf $path/.dir_colors $HOME/.dir_colors home_files=".dir_colors .gitconfig .tmux.conf .vimrc .Xresources .zshrc"
ln -sf $path/.gitconfig $HOME/.gitconfig for file in $home_files
ln -sf $path/.tmux.conf $HOME/.tmux.conf do
ln -sf $path/.vimrc $HOME/.vimrc ln -sf $path/$file $HOME/$file
ln -sf $path/.Xresources $HOME/.Xresources if [ "$VERBOSE" = "-v" ]; then
ln -sf $path/.zshrc $HOME/.zshrc echo "Linked from $path/$file to $HOME/$file"
fi
done
# .config directory # .config directory
rm -rf $HOME/.config/alacritty conf_files="alacritty dunst i3 nvim picom.conf polybar ranger rofi"
ln -sf $path/.config/alacritty $HOME/.config/alacritty for file in $conf_files
do
rm -rf $HOME/.config/dunst rm -rf $HOME/.config/$file
ln -sf $path/.config/dunst $HOME/.config/dunst ln -sf $path/.config/$file $HOME/.config/$file
if [ "$VERBOSE" = "-v" ]; then
rm -rf $HOME/.config/i3 echo "Linked from $path/.config/$file to $HOME/.config/$file"
ln -sf $path/.config/i3 $HOME/.config/i3 fi
done
rm -rf $HOME/.config/nvim
ln -sf $path/.config/nvim $HOME/.config/nvim
rm -rf $HOME/.config/picom.conf
ln -sf $path/.config/picom.conf $HOME/.config/picom.conf
rm -rf $HOME/.config/polybar
ln -sf $path/.config/polybar $HOME/.config/polybar
rm -rf $HOME/.config/ranger
ln -sf $path/.config/ranger $HOME/.config/ranger
rm -rf $HOME/.config/rofi
ln -sf $path/.config/rofi $HOME/.config/rofi