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
|
||||
|
|
10
bash/bashrc
10
bash/bashrc
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue