Fix minor issues in a few configs, update geany colourscheme

This commit is contained in:
natemaia
2018-02-21 01:42:36 -08:00
parent f5fd85b9f5
commit 8c628ca06c
10 changed files with 29 additions and 34 deletions

View File

@ -1,13 +1,9 @@
# .xprofile
# vim:ft=sh
# lightdm sources this file at boot
# as well as our own xinitrc with startx
XDG_CONFIG_HOME=$HOME/.config
export XDG_CONFIG_HOME
if [ -d "$HOME/bin" ]; then
PATH=$HOME/bin:$PATH
fi
export XDG_CONFIG_HOME=$HOME/.config
if [ -d "/sbin" ]; then
PATH="/sbin:$PATH"
@ -17,6 +13,10 @@ if [ -d "/usr/sbin" ]; then
PATH="/usr/sbin:$PATH"
fi
if [ -d "$HOME/bin" ]; then
PATH=$HOME/bin:$PATH
fi
if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
eval "$(dbus-launch --sh-syntax --exit-with-session)"
fi