diff --git a/bash/mounts.sh b/bash/mounts.sh index 9fdd893..c4b7d8d 100644 --- a/bash/mounts.sh +++ b/bash/mounts.sh @@ -46,6 +46,16 @@ declare -A MOUNTS4=( [share]='isos' [mount]='isos' ) +declare -A MOUNTS5=( + [server]="$MY_SERVER_LOCATION" + [share]='books' + [mount]='books' +) +declare -A MOUNTS6=( + [server]="$MY_SERVER_LOCATION" + [share]='pictures' + [mount]='pictures' +) # declare array with "objects" declare -n MOUNTS diff --git a/config/picom.conf b/config/picom.conf new file mode 100644 index 0000000..8534a64 --- /dev/null +++ b/config/picom.conf @@ -0,0 +1,6 @@ +################################# +# Transparency / Opacity # +################################# + +# Opacity of inactive windows. (0.1 - 1.0) +inactive-opacity = 1.0; diff --git a/install.sh b/install.sh index 5ec50f3..36e0f10 100644 --- a/install.sh +++ b/install.sh @@ -100,6 +100,7 @@ function install_config { ln -sf "$PWD"/config/user-dirs.dirs ~/.config/user-dirs.dirs mkdir -p ~/.pulse ln -sf "$PWD"/config/pulse/daemon.conf ~/.pulse/daemon.conf + ln -sf "$PWD"/config/picom.conf ~/.config/picom.conf # link system files / directories sudo ln -sf "$PWD"/config/package-managers/pacman.conf /etc/pacman.conf