9 lines
73 B
Bash
Executable file
9 lines
73 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if ! pidof awesome; then
|
|
sleep 5
|
|
exit
|
|
fi
|
|
|
|
exec redshift-gtk
|