diff options
author | Joe <bousset.rudy@gmail.com> | 2022-04-30 16:38:33 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-04-30 16:38:33 +0200 |
commit | c5741b4e39568d9d7edf7a2285ee2b8d82d397bc (patch) | |
tree | 3ef5cc19be3d283c0399a1b7d581eef560717402 | |
parent | revert (diff) | |
download | dotfiles-bsd-c5741b4e39568d9d7edf7a2285ee2b8d82d397bc.tar.gz dotfiles-bsd-c5741b4e39568d9d7edf7a2285ee2b8d82d397bc.tar.bz2 dotfiles-bsd-c5741b4e39568d9d7edf7a2285ee2b8d82d397bc.tar.xz dotfiles-bsd-c5741b4e39568d9d7edf7a2285ee2b8d82d397bc.tar.zst dotfiles-bsd-c5741b4e39568d9d7edf7a2285ee2b8d82d397bc.zip |
switched to picom
-rw-r--r-- | .config/compton.conf | 10 | ||||
-rw-r--r-- | .config/picom.conf | 10 | ||||
-rw-r--r-- | .config/x11/xinitrc | 2 |
3 files changed, 11 insertions, 11 deletions
diff --git a/.config/compton.conf b/.config/compton.conf deleted file mode 100644 index 617ed93..0000000 --- a/.config/compton.conf +++ /dev/null @@ -1,10 +0,0 @@ -# basic configuration -backend = "glx"; -paint-on-overlay = true; -glx-no-stencil = true; -vsync = "opengl-swc"; -unredir-if-possible = false; - -# Inactive windows diming -inactive-dim = 0.06; -inactive-dim-fixed = true; diff --git a/.config/picom.conf b/.config/picom.conf new file mode 100644 index 0000000..8db373f --- /dev/null +++ b/.config/picom.conf @@ -0,0 +1,10 @@ +# basic configuration +backend = "xrender"; +paint-on-overlay = true; +vsync = true; +unredir-if-possible = true; +no-fading-openclose = true; + +# Inactive windows diming +inactive-dim = 0.10; +inactive-dim-fixed = true; diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc index ee31ce5..04b65c3 100644 --- a/.config/x11/xinitrc +++ b/.config/x11/xinitrc @@ -7,7 +7,7 @@ startif() { "$HOME"/.local/bin/scrmain "$HOME"/.local/bin/kb startif dunst -startif compton +startif picom pgrep musicpd >/dev/null || musicpd >/dev/null 2>&1 startif mpd-notification startif lowbat |