.dotfiles/bash/bash_profile

32 lines
755 B
Bash

# vim: ft=sh
# If running bash (vs. login prompt)
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
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
eval "$(plenv init -)"
if [ -f "/run/.containerenv" ]; then
source "$HOME/.dotfiles/bash/bash_profile.distrobox"
else
source "$HOME/.dotfiles/bash/bash_profile.host"
fi