mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
22 lines
416 B
Bash
22 lines
416 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
#if [ -z "$DISPLAY" ] && [ "$(fgconsole)" -eq 1 ]; then
|
|
#startx
|
|
#fi
|
|
|
|
#[ -z "$DISPLAY" -a "$(fgconsole)" -eq 1 ] && exec startx
|
|
|
|
if [[ -f /usr/bin/waterfox ]]; then
|
|
export BROWSER="waterfox"
|
|
elif [[ -f /usr/bin/palemoon ]]; then
|
|
export BROWSER="palemoon"
|
|
elif [[ -f /usr/bin/iceweasel ]]; then
|
|
export BROWSER="iceweasel"
|
|
else
|
|
export BROWSER="firefox"
|
|
fi
|