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:
John Mertz 2023-09-05 10:45:45 -06:00
parent cc587e25f2
commit 1fc94fef22
2 changed files with 27 additions and 6 deletions

View File

@ -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

View File

@ -1,5 +1,15 @@
# 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"