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
|
||||||
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"
|
THEME="dark"
|
||||||
|
|
||||||
# Perl junk to allow scripts to run for non-interactive sessions
|
# Perl junk to allow scripts to run for non-interactive sessions
|
||||||
|
|
22
bash/bashrc
22
bash/bashrc
|
@ -1,12 +1,22 @@
|
||||||
# vim: ft=sh
|
# 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
|
# Setup editor
|
||||||
export EDITOR="${HOME}/.dotfiles/nix/bin/nvim"
|
export EDITOR="${HOME}/.dotfiles/nix/bin/nvim"
|
||||||
|
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
case $- in
|
case $- in
|
||||||
*i*) ;;
|
*i*) ;;
|
||||||
*) return;;
|
*) return;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# agetty is set to automatically log me in on tty1
|
# agetty is set to automatically log me in on tty1
|
||||||
|
@ -35,11 +45,11 @@ shopt -s checkwinsize
|
||||||
|
|
||||||
# enable programmable completion features
|
# enable programmable completion features
|
||||||
if ! shopt -oq posix; then
|
if ! shopt -oq posix; then
|
||||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||||
. /usr/share/bash-completion/bash_completion
|
. /usr/share/bash-completion/bash_completion
|
||||||
elif [ -f /etc/bash_completion ]; then
|
elif [ -f /etc/bash_completion ]; then
|
||||||
. /etc/bash_completion
|
. /etc/bash_completion
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set window title to last command
|
# Set window title to last command
|
||||||
|
|
Loading…
Reference in New Issue