diff --git a/.config/dwm b/.config/dwm index fd9e12e..3f3811e 160000 --- a/.config/dwm +++ b/.config/dwm @@ -1 +1 @@ -Subproject commit fd9e12e7c5f22d2f9d577baee2e34f53c87efa99 +Subproject commit 3f3811e80d985ab6004a17aba6476ab5abe02f9d diff --git a/.config/picom/toggle_picom.sh b/.config/picom/toggle_picom.sh new file mode 100755 index 0000000..662eb17 --- /dev/null +++ b/.config/picom/toggle_picom.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +if pgrep picom &>/dev/null; then + notify-send "Turning Picom OFF" + pkill picom & +else + notify-send "Turning Picom ON" + picom --experimental-backend --config /home/sravan/.config/picom/picom.conf & +fi + +exit 0