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