Files

9 lines
161 B
Bash
Raw Permalink Normal View History

2018-09-20 15:38:43 +02:00
#!/bin/bash
# Exit immediately if a command exits with a non-zero status.
set -e
# restart openbox for immediate effect
openbox --restart
# Exit cleanly
exit 0