xinitrc -> xsessionrc
At the moment, I'm unsure why this is working, but it is. More research needs to be done.
This commit is contained in:
parent
f68cd7113f
commit
5dd3ebe314
2 changed files with 23 additions and 2 deletions
|
@ -1,2 +0,0 @@
|
||||||
! Load keybindings
|
|
||||||
xmodmap ~/.Xmodmap
|
|
23
configs/linux/x_server/.xsessionrc
Normal file
23
configs/linux/x_server/.xsessionrc
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
export DESKTOP_SESSION=cinnamon # gnome for trusty.
|
||||||
|
|
||||||
|
# NOTE: This may break your compose key.
|
||||||
|
# See http://g/i3-users/YBexXGbik7E for more details.
|
||||||
|
export GTK_IM_MODULE=xim
|
||||||
|
|
||||||
|
# Desktop background color.
|
||||||
|
xsetroot -solid "#333333"
|
||||||
|
|
||||||
|
# set kbds
|
||||||
|
xmodmap -e 'remove Lock = Caps_Lock'
|
||||||
|
xmodmap -e 'keysym Caps_Lock = Escape'
|
||||||
|
|
||||||
|
# set key repeat preferences
|
||||||
|
xset r rate 250 60
|
||||||
|
|
||||||
|
# setup OSX style scrolling for gLinux Mouse
|
||||||
|
xinput --set-prop 'PixArt Lenovo USB Optical Mouse' 'libinput Natural Scrolling Enabled' 1
|
||||||
|
|
||||||
|
# increase mouse speed
|
||||||
|
xinput --set-prop 'PixArt Lenovo USB Optical Mouse' 'libinput Accel Speed' 1
|
Loading…
Reference in a new issue