diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-11-28 13:21:14 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-11-28 13:21:14 -0200 |
commit | d9d47ff171155a366105c6ec04a21e97f77dd704 (patch) | |
tree | e1fc591230f766fb47f71481771ddb4592abb978 /share/provision/files/desktop-basic/home/user/.custom | |
parent | 9ece175e58b5743073eb608c3210a037e5b09408 (diff) | |
download | kvmx-d9d47ff171155a366105c6ec04a21e97f77dd704.tar.gz kvmx-d9d47ff171155a366105c6ec04a21e97f77dd704.tar.bz2 |
Provision: desktop-basic: updates custom xsession config
Diffstat (limited to 'share/provision/files/desktop-basic/home/user/.custom')
-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 |