You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/x/.xsessionrc

19 lines
493 B

#!/bin/sh
# This file is sourced only on Debian and derivates by basically all
# graphical interface launchers (xinit, startx, xdm, GDM, LightDM, etc..).
# Uniform qt apps to gtk themes
# Dependencies: qt5-style-plugins adwaita-qt
export QT_QPA_PLATFORMTHEME=gtk3
export QT_STYLE_OVERRIDE=adwaita-dark
# Add `~/.local/bin` to $PATH
C_PATH="$HOME/.local/bin"
if [ -d "$C_PATH" ]; then
export PATH="$C_PATH:$PATH"
else
printf "Custom PATH dir not found: %s" "$C_PATH"
fi
unset C_PATH