Update linkdots.sh
This commit is contained in:
@@ -279,7 +279,7 @@ visual_bell:
|
||||
#
|
||||
# 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.
|
||||
background_opacity: 0.98
|
||||
background_opacity: 0.95
|
||||
|
||||
selection:
|
||||
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
||||
|
||||
@@ -5,3 +5,8 @@ opacity-rule = [
|
||||
];
|
||||
|
||||
corner-radius = 15;
|
||||
|
||||
#blur: {
|
||||
# method: "gaussian";
|
||||
# strength = 7;
|
||||
#}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
VERBOSE=$1
|
||||
|
||||
# Make sure the paths are correct
|
||||
path=$(pwd)
|
||||
|
||||
@@ -8,34 +10,22 @@ rm -rf $HOME/scripts
|
||||
ln -sf $path/scripts $HOME/scripts
|
||||
|
||||
# Home directory
|
||||
ln -sf $path/.dir_colors $HOME/.dir_colors
|
||||
ln -sf $path/.gitconfig $HOME/.gitconfig
|
||||
ln -sf $path/.tmux.conf $HOME/.tmux.conf
|
||||
ln -sf $path/.vimrc $HOME/.vimrc
|
||||
ln -sf $path/.Xresources $HOME/.Xresources
|
||||
ln -sf $path/.zshrc $HOME/.zshrc
|
||||
home_files=".dir_colors .gitconfig .tmux.conf .vimrc .Xresources .zshrc"
|
||||
for file in $home_files
|
||||
do
|
||||
ln -sf $path/$file $HOME/$file
|
||||
if [ "$VERBOSE" = "-v" ]; then
|
||||
echo "Linked from $path/$file to $HOME/$file"
|
||||
fi
|
||||
done
|
||||
|
||||
# .config directory
|
||||
rm -rf $HOME/.config/alacritty
|
||||
ln -sf $path/.config/alacritty $HOME/.config/alacritty
|
||||
|
||||
rm -rf $HOME/.config/dunst
|
||||
ln -sf $path/.config/dunst $HOME/.config/dunst
|
||||
|
||||
rm -rf $HOME/.config/i3
|
||||
ln -sf $path/.config/i3 $HOME/.config/i3
|
||||
|
||||
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
|
||||
conf_files="alacritty dunst i3 nvim picom.conf polybar ranger rofi"
|
||||
for file in $conf_files
|
||||
do
|
||||
rm -rf $HOME/.config/$file
|
||||
ln -sf $path/.config/$file $HOME/.config/$file
|
||||
if [ "$VERBOSE" = "-v" ]; then
|
||||
echo "Linked from $path/.config/$file to $HOME/.config/$file"
|
||||
fi
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user