forked from appvise/T430
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.xinitrc
More file actions
33 lines (26 loc) · 690 Bytes
/
.xinitrc
File metadata and controls
33 lines (26 loc) · 690 Bytes
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
# Dir = ~/.xinitrc
#!/bin/sh
#
#
# Executed by startx (run your window manager from here)
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
#swap ctrl and capslock
#setxkbmap -option ctrl:swapcaps # Swap Left Control and Caps Lock
#setxkbmap -option ctrl:nocaps # Make Caps Lock a Control key
#create_ap wlp3s0 enp0s25 MyAccessPoint
emacs --daemon &
# compton &
wicd-client --tray &
synapse &
#fcitx setup
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"
fcitx &
exec dbus-launch --sh-syntax --exit-with-session dwm
# ...or the Window Manager of your choice