55 lines
1.2 KiB
Bash
55 lines
1.2 KiB
Bash
#!/usr/bin/env sh
|
|
|
|
userresources="$XDG_CONFIG_HOME/X11/xresources"
|
|
|
|
# give systemd X11 env goodies
|
|
systemctl --user import-environment PATH
|
|
systemctl --user import-environment DISPLAY
|
|
|
|
# ditto for dbus (needed sometimes for gnome-keyring to work)
|
|
source /etc/X11/xinit/xinitrc.d/50-systemd-user.sh
|
|
|
|
if [ -f "$userresources" ]; then
|
|
xrdb -merge "$userresources"
|
|
fi
|
|
|
|
{{ if .features.optimus -}}
|
|
/usr/bin/prime-offload > /dev/null 2>&1
|
|
{{- end }}
|
|
|
|
setxkbmap hypermode
|
|
|
|
KEYS="Control_L=Escape"
|
|
KEYS="$KEYS;Control_R=Return"
|
|
KEYS="$KEYS;Super_L=Tab"
|
|
KEYS="$KEYS;Super_R=backslash"
|
|
KEYS="$KEYS;Alt_R=space"
|
|
KEYS="$KEYS;ISO_Level3_Shift=XF86Search"
|
|
xman -t 500 "$KEYS" "^VirtualBox Machine$" &
|
|
|
|
# TODO put xmonad-specific stuff in its own script
|
|
tmuxctl start
|
|
greenclip daemon &
|
|
redshift > /dev/null 2>&1 &
|
|
dunst &
|
|
{{ if .development.emacs -}}
|
|
emacs-start &
|
|
{{- end }}
|
|
{{ if .features.seafile -}}
|
|
seafile-applet > /dev/null 2>&1 &
|
|
{{- end }}
|
|
{{ if .features.activitywatch -}}
|
|
aw-server > /dev/null 2>&1 &
|
|
aw-watcher-window > /dev/null 2>&1 &
|
|
aw-watcher-afk > /dev/null 2>&1 &
|
|
{{- end }}
|
|
flameshot > /dev/null 2>&1 &
|
|
rofi-bw -d 3600 &
|
|
|
|
autorandr --change > /dev/null
|
|
picom --config "$XDG_CONFIG_HOME/picom.conf" -b
|
|
|
|
numlockx on
|
|
|
|
exec xmonad
|