mirror of
https://github.com/CoolnsX/repos_scripts.git
synced 2025-12-20 07:15:20 +05:30
14 lines
196 B
Bash
Executable File
14 lines
196 B
Bash
Executable File
#!/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
|
|
|