Copy theme vars to profile and bashrc
Probably overkill, but I am too lazy to figure out where this needs to be configured to allow all applications to behave
This commit is contained in:
parent
cc587e25f2
commit
1fc94fef22
|
@ -8,6 +8,17 @@ if [ -n "$BASH_VERSION" ]; then
|
|||
fi
|
||||
fi
|
||||
|
||||
# GUI themes
|
||||
export GTK_THEME="Gruvbox"
|
||||
export ICON_THEME="Gruvbox"
|
||||
export CURSOR_THEME="FlatbedCursors-White"
|
||||
export PROFILE_NAME="Oled"
|
||||
export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||
export QT_QPA_PLATFORM="wayland-egl;wayland;xcb"
|
||||
export GDK_BACKEND="wayland"
|
||||
export DCONF=".config/dconf/user"
|
||||
|
||||
GTK_THEME="Gruvbox"
|
||||
THEME="dark"
|
||||
|
||||
# Perl junk to allow scripts to run for non-interactive sessions
|
||||
|
|
22
bash/bashrc
22
bash/bashrc
|
@ -1,12 +1,22 @@
|
|||
# vim: ft=sh
|
||||
|
||||
# GUI themes
|
||||
export GTK_THEME="Gruvbox"
|
||||
export ICON_THEME="Gruvbox"
|
||||
export CURSOR_THEME="FlatbedCursors-White"
|
||||
export PROFILE_NAME="Oled"
|
||||
export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||
export QT_QPA_PLATFORM="wayland-egl;wayland;xcb"
|
||||
export GDK_BACKEND="wayland"
|
||||
export DCONF=".config/dconf/user"
|
||||
|
||||
# Setup editor
|
||||
export EDITOR="${HOME}/.dotfiles/nix/bin/nvim"
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
case $- in
|
||||
*i*) ;;
|
||||
*) return;;
|
||||
*) return;;
|
||||
esac
|
||||
|
||||
# agetty is set to automatically log me in on tty1
|
||||
|
@ -35,11 +45,11 @@ shopt -s checkwinsize
|
|||
|
||||
# enable programmable completion features
|
||||
if ! shopt -oq posix; then
|
||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||
. /usr/share/bash-completion/bash_completion
|
||||
elif [ -f /etc/bash_completion ]; then
|
||||
. /etc/bash_completion
|
||||
fi
|
||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||
. /usr/share/bash-completion/bash_completion
|
||||
elif [ -f /etc/bash_completion ]; then
|
||||
. /etc/bash_completion
|
||||
fi
|
||||
fi
|
||||
|
||||
# Set window title to last command
|
||||
|
|
Loading…
Reference in New Issue