about summary refs log tree commit diff stats
path: root/xorg/xsessionrc
blob: f44f35b74b9b0603e9b698b6eaa5166aef32dd8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# ~/.xsessionrc -*- sh -*-

[ -r $HOME/.profile ] && . $HOME/.profile # this file is sourced in ~/.profile

export XRESOURCE_FILE="${XRESOURCE_FILE:-${XDG_CONFIG_HOME:-$HOME/.config}/xorg/xresources}"
xrdb -merge -I"${XRESOURCE_FILE##*/}" "$XRESOURCE_FILE"

export XMODMAP_FILE="${XMODMAP_FILE:-${XDG_CONFIG_HOME:-$HOME/.config}/xorg/xmodmap}"
xmodmap "$XMODMAP_FILE"

#Disable overlay scrollbars
export GTK_OVERLAY_SCROLLING=0