blob: 318ea161a3418781b45a2490376070598347a7f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/usr/bin/env bash
set -e
source $HOME/Scripts/gpre
setxkbmap -layout us -variant altgr-intl
xmodmap .Xmodmap
#xcape -e "Control_R=Escape"
dunst &
# Set dbus display variable
dbus-update-activation-environment --systemd DISPLAY
args="$LOPTS"
for arg in $args
do
echo $arg
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)
xss-lock -- $HOME/Scripts/lock.sh &
;;
autorandr)
autorandr -c
;;
autorun)
~/.xautorun
;;
esac
done
# Please do not block
|