summaryrefslogtreecommitdiff
path: root/desktop/.xsession
blob: 403cb88762f6aec14b54be61077740ee827c98d8 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env bash
set -euo pipefail
set -x

SETUP_MARKER=$HOME/.local/share/__kj.dotfiles__
if [[ ! -e "$SETUP_MARKER" ]]; then
    echo running setup
    urxvt -e sh -c "$HOME/dotfiles/setup.sh"
    touch "$SETUP_MARKER"
fi

source ~/.zshenv

if [[ $(hostname) =~ pincer* ]]; then
    exec river
    exit 0
fi

find_planck_keyboard() {
  xinput list | grep -q "OLKB Planck"
}

export TERMINAL=urxvt
xrdb -merge $HOME/.Xresources -I$HOME
#if find_planck_keyboard; then
#  setxkbmap us -option compose:ralt
#else
  setxkbmap us -variant dvorak -option compose:ralt -option caps:ctrl_modifier
#fi

# faster key repeat
xset r rate 200 50
xsetroot -solid "#2A3462"
pasystray &
xss-lock -- /usr/bin/env xscreensaver-command --lock &
xset -b
dzen2 -dock -x 0 -h 24 -e 'onstart=lower' -bg '#252526' -p &
conky | dzen2 -dock -geometry 800x24-950+0 -expand left -fn "WenQuanYi Micro Hei-16" -ta r -bg '#252526' -fg '#f4f4f4' &
trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 100 --widthtype pixel --transparent true --height 24 --tint 0x252526  --alpha 0 &
xbindkeys

#xinput --set-prop "pointer:Ploopy Corporation Trackball Nano" 'libinput Accel Speed' -0.9
{
  while true; do
    xkbset exp 65535 && xkbset m && xmodmap -e 'keycode 87 = Pointer_Button1'
    xkbset exp 65535 && xkbset m && xmodmap -e 'keycode 88 = Pointer_Button3'
    xkbset exp 65535 && xkbset m && xmodmap -e 'keycode 89 = Pointer_Button2'
    xkbset exp 65535 && xkbset m && xmodmap -e 'keycode 89 = Pointer_Button4'
    sleep 300
  done
} &

[[ -f /etc/nixos/configuration.nix ]] || \
  redshift -l 40:-70 -r -t 5500:3700 &

nm-applet --no-agent &

if which autorandr >/dev/null; then
  autorandr --change
fi

dunst -max_icon_size 30 &

exec xmonad