diff options
Diffstat (limited to 'share/provision/files/desktop-basic/home/user/.custom/xsession')
-rw-r--r-- | share/provision/files/desktop-basic/home/user/.custom/xsession | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/share/provision/files/desktop-basic/home/user/.custom/xsession b/share/provision/files/desktop-basic/home/user/.custom/xsession index f178b69..8f5337b 100644 --- a/share/provision/files/desktop-basic/home/user/.custom/xsession +++ b/share/provision/files/desktop-basic/home/user/.custom/xsession @@ -8,13 +8,6 @@ HOSTNAME="`cat /etc/hostname | cut -d . -f 1`" # Set window manager WINDOW_MANAGER="ratpoison" -# Startup programs -if [ "$HOSTNAME" == "web" ]; then - PROGRAMS="$PROGRAMS tor-browser" -else - PROGRAMS="$PROGRAMS terminal" -fi - # Display device DISPLAY_DEVICE="Virtual-0" # or maybe qlx-0 @@ -40,3 +33,10 @@ DISPLAY_DEVICE="Virtual-0" # or maybe qlx-0 # you mind find a whitelisting error at the firejail profile in your # ~/.xsession-errors. sleep 8 + +# Startup programs +if [ "$HOSTNAME" == "web" ]; then + PROGRAMS="$PROGRAMS tor-browser" +else + PROGRAMS="$PROGRAMS terminal" +fi |