Add picom to fix screen tearing and allow for transparency effects

This commit is contained in:
2024-06-22 19:40:37 +01:00
parent 8f7079cfc6
commit 5210c74c7e
2 changed files with 11 additions and 12 deletions

View File

@@ -3,6 +3,7 @@ feh --bg-scale "/home/trude/dotfiles/bg2.png" &
xrdb ~/.Xresources xrdb ~/.Xresources
dunst & dunst &
/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 & /usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 &
picom &
export XDG_SESSION_TYPE=??? export XDG_SESSION_TYPE=???
export XDG_SESSION_DESKTOP=??? export XDG_SESSION_DESKTOP=???

View File

@@ -158,7 +158,7 @@ for selection in $main_menu; do
dialogDotfiles 0 7 4 4 4 4 4 4 4 4 dialogDotfiles 0 7 4 4 4 4 4 4 4 4
# Xorg # Xorg
sudo apt-get install xorg -y &> logs/dotfiles.log sudo apt-get install xorg picom -y &> logs/dotfiles.log
dialogDotfiles 20 5 7 4 4 4 4 4 4 4 dialogDotfiles 20 5 7 4 4 4 4 4 4 4
# DE Deps # DE Deps
@@ -180,17 +180,15 @@ for selection in $main_menu; do
dialogDotfiles 75 5 5 5 5 5 7 4 4 4 dialogDotfiles 75 5 5 5 5 5 7 4 4 4
# Neovim # Neovim
{ sudo apt-get install -y ninja-build gettext cmake unzip curl build-essential
sudo apt-get install -y ninja-build gettext cmake unzip curl build-essential git clone https://github.com/neovim/neovim --depth 1 2>/dev/null
git clone https://github.com/neovim/neovim --depth 1 2>/dev/null cd neovim
cd neovim git checkout stable
git checkout stable make CMAKE_BUILD_TYPE=RelWithDebInfo
make CMAKE_BUILD_TYPE=RelWithDebInfo sudo make install
sudo make install cd ..
cd .. rm -rf neovim
rm -rf neovim dialogDotfiles 80 5 5 5 5 5 5 7 4 4
dialogDotfiles 80 5 5 5 5 5 5 7 4 4
} | dialog --backtitle "$BACKTITLE" --programbox "Compile Neovim" 30 90
# Utilities # Utilities
sudo apt-get install htop fzf tmux git wget curl feh scrot dunst bash-completion -y &>> logs/dotfiles.log sudo apt-get install htop fzf tmux git wget curl feh scrot dunst bash-completion -y &>> logs/dotfiles.log