8 lines
157 B
Bash
8 lines
157 B
Bash
|
|
#!/bin/bash
|
||
|
|
if command -v openbox &> /dev/null; then
|
||
|
|
exec openbox
|
||
|
|
else
|
||
|
|
echo "No window manager installed, running without one"
|
||
|
|
sleep infinity
|
||
|
|
fi
|