Add WindowMaker as a new UI. Also add a WindowMaker pmOS theme and some configs for making it somewhat usable on mobile (though that is not a main goal of this UI package). Signed-off-by: Ferass El Hafidi <funderscore@postmarketos.org> Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/8717>
17 lines
452 B
Bash
17 lines
452 B
Bash
#!/bin/sh
|
|
#
|
|
# WindowMaker will wait until this script finishes, so if you run any
|
|
# commands that take long to execute (like a xterm), put a ``&'' in the
|
|
# end of the command line.
|
|
#
|
|
# This file must be executable.
|
|
#
|
|
|
|
# Start svkbd if installed and not already running
|
|
if command -v svkbd-mobile-intl && ! pgrep svkbd-mobile-intl; then
|
|
svkbd-mobile-intl &
|
|
fi
|
|
|
|
if command -v unclutter-xfixes; then
|
|
unclutter-xfixes --start-hidden --hide-on-touch &
|
|
fi
|