18 lines
529 B
Bash
18 lines
529 B
Bash
#!/bin/sh
|
|
|
|
BROWSER=chromium
|
|
XTERM=urxvt
|
|
|
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
|
unset QT_STYLE_OVERRIDE
|
|
|
|
# TrackPoint+Middleclick scroll
|
|
xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation" 1
|
|
xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Button" 2
|
|
xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Timeout" 200
|
|
xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Axes" 6 7 4 5
|
|
|
|
# exec ck-launch-session dbus-launch
|
|
xrdb -merge ~/.Xresources
|
|
exec notion > $HOME/.notion/log.txt 2>&1
|