Add install.sh Add .zshrc add: nvim configs add: toggleterm, alpha update update Create README.md major changes major changes add picom updated dot files update shit
9 lines
86 B
Bash
Executable file
9 lines
86 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if pgrep -x 'picom'; then
|
|
killall 'picom'
|
|
else
|
|
picom -b
|
|
fi
|
|
|
|
exit
|