-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
32 lines (26 loc) · 958 Bytes
/
.bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# alias
test -s ~/.alias && . ~/.alias || true
if [[ "$(tty)" == "/dev/tty"* ]]; then
# Commands to run only in console TTYs
source ~/.local/share/colors-tty.sh
else
case "$-" in
*i*)
# starship
eval "$(starship init bash)"
# catppuccin mocha colors
#(cat ~/.local/share/catppuccin-mocha-seq &)
esac
fi
# Disable hardware acceleration
#export LIBGL_ALWAYS_SOFTWARE=1
# make xdg-su not use xterm for password prompt
#export DESKTOP_SESSION=xfce
# settings for qt apps
#export QT_QPA_PLATFORMTHEME=qt5ct
# force gtk theme for some apps
#export GTK_THEME=Catppuccin-Mocha-Standard-Blue-Dark
# bemenu catppuccin mocha colors
export BEMENU_OPTS='--single-instance --fb "#1e1e2e" --ff "#cdd6f4" --nb "#1e1e2e" --nf "#cdd6f4" --tb "#fab387" --hb "#f5e0dc" --tf "#1e1e2e" --hf "#1e1e2e" --af "#cdd6f4" --ab "#1e1e2e" --sb "#89b4fa" --sf "#1e1e2e" --bdr "#fab387"'
# set xdg config path
#export XDG_CONFIG_HOME="/home/kristhian/.config"