added scripts

This commit is contained in:
CoolnsX
2021-07-01 21:23:58 +05:30
parent 4d1bf7b564
commit a0d2ace1f2
6 changed files with 73 additions and 0 deletions

13
pi.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
if ps aux | grep "picom$" ; then
killall -q picom
sleep 1
notify-send "picom vsync on"
picom --vsync &
else
killall -q picom
sleep 1
picom &
notify-send "picom vsync off"
fi