-
Notifications
You must be signed in to change notification settings - Fork 2
/
executable_dot_xinitrc
50 lines (39 loc) · 1.21 KB
/
executable_dot_xinitrc
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
48
49
50
#! /bin/sh -
#
# NB: In Vim, execute selection with ":terminal sh".
clean_up() {
if [ "$SSH_AGENT_PID" ]; then
kill "$SSH_AGENT_PID"
fi
for s in ~/.local/etc/rc.d/*; do
$s stop
done
}
trap 'clean_up' EXIT
export LANG=en_US.UTF-8
export LC_TIME=en_GB.UTF-8
# This is a workaround for dwm not being able to handle Java-based GUI
# applications properly. This is an OpenJDK-specific options. See the dwm(1)
# manual page for more details.
export _JAVA_AWT_WM_NONREPARENTING=1
# This is a workaround for a freezing Firefox process when sharing a screen
# during a video call while using the scfb(4) driver. I am not using the i915
# driver because as of eb8bf6bb4204 the kernel panics when a screen is shared
# (not immediately, but after a couple of minutes of intensive video workload).
#export LIBGL_DRI3_DISABLE=yes
mkdir -p ~/.cache
# XXX: For some reason, sxhkd does not work correctly when started too early.
for s in ~/.local/etc/rc.d/*; do
$s start
done
[ -f ~/.xmodmap ] && xmodmap ~/.xmodmap
eval $(ssh-agent -s)
gpg-connect-agent reloadagent /bye
xrdb -merge ~/.Xresources
autorandr --change
$(which dbus-run-session) sh -c '
"$@"
while [ -f ~/.cache/restart-dwm ]; do
"$@" || break
done
' xinitsh "${@:-dwm}"