8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ $(pidof compton) ]]; then
|
|
al-compositor --restart
|
|
else
|
|
al-compositor --start
|
|
fi
|