summaryrefslogtreecommitdiff
path: root/src/session-init/setup-env
blob: 98fd924dc44ae492123fac21b5dcea85806d088e (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
# 
# "~/.config/user/setup-env"
#

# Make sure launchers (eg gmrun) are able to find custom executables.
export PATH=~/.bin:$PATH

# For ls command.
export TIME_STYLE=+%Y-%m-%d_%H:%M

# Use ISO date format (originates from configuring thunderbird)
export LC_TIME=en_DK.UTF-8

# Configure UI colors
# .. for GTK-2
export GTK2_RC_FILES=/usr/share/themes/Adwaita-dark/gtk-2.0/gtkrc
# .. for GTK-3
export GTK_THEME=Adwaita:dark
# .. Qt 5 (needs 'qt5-style-plugins' to be installed)
export QT_QPA_PLATFORMTHEME=gtk2

# Disable QT DPI scaling. Can be really helpful for eg vlc in a multi-monitor
# setup.
export QT_AUTO_SCREEN_SCALE_FACTOR=0