diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-01-21 00:21:23 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-01-21 00:21:23 +0100 |
commit | 749c30114476758cc695b09fc25c5abbc3600740 (patch) | |
tree | 13fbf1c1cf6639da0b62315298588c1b17c01659 | |
parent | 3dca48c8ef770511bd2468fbc510f2412fe2e203 (diff) |
picom: add -> no tearing!
-rwxr-xr-x | install.sh | 3 | ||||
-rw-r--r-- | picom/picom.conf | 5 | ||||
-rw-r--r-- | uninstall.sh | 3 |
3 files changed, 11 insertions, 0 deletions
@@ -44,3 +44,6 @@ stow -Rt $XDG_CONFIG_HOME reminder # feh stow -Rt $XDG_CONFIG_HOME feh + +# picom +stow -Rt $XDG_CONFIG_HOME picom diff --git a/picom/picom.conf b/picom/picom.conf new file mode 100644 index 0000000..8a7f4ad --- /dev/null +++ b/picom/picom.conf @@ -0,0 +1,5 @@ +# menu = { shadow = false; }; +dropdown_menu = { shadow = false; }; +popup_menu = { shadow = false; }; +utility = { shadow = false; }; +backend = "glx"; diff --git a/uninstall.sh b/uninstall.sh index 4ccaa0c..2cef81f 100644 --- a/uninstall.sh +++ b/uninstall.sh @@ -41,3 +41,6 @@ stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} reminder # feh stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} feh + +# picom +stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} feh |