
This also alias sxmobar to the old adapted script in case the dependency is missing. The api of sxmo_status.sh changed to be sxmobar compatible.
8 lines
110 B
Bash
8 lines
110 B
Bash
#!/bin/sh
|
|
|
|
if command -v sxmobar > /dev/null; then
|
|
exec sxmobar -w "$@"
|
|
else
|
|
exec sxmo_status.sh -w "$@"
|
|
fi
|