mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-28 04:51:38 +02:00
9 lines
161 B
Bash
Executable File
9 lines
161 B
Bash
Executable File
#!/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
|