diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-10-09 21:52:25 +0200 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-10-09 21:52:25 +0200 |
commit | 826a4b8e04a7d2b3a83fee3aa211db4909565079 (patch) | |
tree | 8dafb876b99a43e27d1569b143593515c92014a1 /.local/bin/comptoggle | |
parent | 1e5b6df23f9610786ffc0c04ac9bfd1c0b778352 (diff) |
scripts: renamed picom and polybar scripts
Diffstat (limited to '.local/bin/comptoggle')
-rwxr-xr-x | .local/bin/comptoggle | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.local/bin/comptoggle b/.local/bin/comptoggle new file mode 100755 index 0000000..c579fc7 --- /dev/null +++ b/.local/bin/comptoggle @@ -0,0 +1,8 @@ +#!/bin/sh + +if pgrep -x "picom" > /dev/null +then + killall picom +else + picom -b --config $HOME/.config/picom/picom.conf +fi |