summaryrefslogtreecommitdiff
path: root/xinit/Scripts
diff options
context:
space:
mode:
Diffstat (limited to 'xinit/Scripts')
-rwxr-xr-xxinit/Scripts/xlaunchrc13
1 files changed, 8 insertions, 5 deletions
diff --git a/xinit/Scripts/xlaunchrc b/xinit/Scripts/xlaunchrc
index c9c7a21..c24f4d9 100755
--- a/xinit/Scripts/xlaunchrc
+++ b/xinit/Scripts/xlaunchrc
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
-set +e
+set -e
setxkbmap -layout us -variant altgr-intl
@@ -14,20 +14,16 @@ xmodmap .Xmodmap
#xcape -e "Control_R=Escape"
nm-applet &
-xscreensaver &
# set wallpaper
~/Scripts/setwall
-xss-lock -- xscreensaver-command --lock &
dunst &
play ~/Winsounds/login.wav -q &
# Set dbus display variable
dbus-update-activation-environment --systemd DISPLAY
-autorandr -c
-
for arg in "$LOPTS"
do
case $arg in
@@ -43,6 +39,13 @@ do
dbus-update-activation-environment --systemd DISPLAY &
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets) &
;;
+ *"screensaver"*)
+ xscreensaver &
+ xss-lock -- xscreensaver-command --lock &
+ ;;
+ *"autorandr"*)
+ autorandr -c
+ ;;
esac
done