guix-dotfiles/home-config/bash_profile

17 lines
425 B
Bash
Raw Permalink Normal View History

2023-04-18 05:02:27 +00:00
export MOZ_ENABLE_WAYLAND=1
export XDG_CURRENT_DESKTOP=sway
export XDG_SESSION_DESKTOP=sway
export _JAVA_AWT_WM_NONREPEATING=1
export XDG_DATA_DIRS=$XDG_DATA_DIRS:~/.nix-profile/share
export PATH=~/.local/bin:$PATH:~/.nix-profile/bin
2023-04-18 05:02:27 +00:00
# Honor per-interactive-shell startup file
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
2023-09-07 18:45:05 +00:00
2023-09-07 23:28:02 +00:00
if [ -z "$SSH_CLIENT" ] && [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
2023-09-07 18:45:05 +00:00
exec Hyprland
fi