diff options
Diffstat (limited to 'xinit/Scripts')
-rwxr-xr-x | xinit/Scripts/xlaunchrc | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/xinit/Scripts/xlaunchrc b/xinit/Scripts/xlaunchrc index c24f4d9..05d65cf 100755 --- a/xinit/Scripts/xlaunchrc +++ b/xinit/Scripts/xlaunchrc @@ -26,19 +26,19 @@ dbus-update-activation-environment --systemd DISPLAY for arg in "$LOPTS" do - case $arg in - *"panel"*) - echo starting panel - xfce4-panel & - ;; - *"composer"*) - echo starting comp - xcompmgr & - ;; - *"gnome-keyring"*) - dbus-update-activation-environment --systemd DISPLAY & - eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets) & - ;; + case $arg in + *"panel"*) + echo starting panel + xfce4-panel & + ;; + *"composer"*) + echo starting comp + xcompmgr & + ;; + *"gnome-keyring"*) + dbus-update-activation-environment --systemd DISPLAY & + eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets) & + ;; *"screensaver"*) xscreensaver & xss-lock -- xscreensaver-command --lock & @@ -46,7 +46,7 @@ do *"autorandr"*) autorandr -c ;; - esac + esac done |