.bash_profile 582 B

123456789101112131415
  1. # Honor per-interactive-shell startup file
  2. if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
  3. # shepherd
  4. if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
  5. export MOZ_ENABLE_WAYLAND=1
  6. export GUIX_PACKAGE_PATH=/home/joshua/prog/gnu/guix/guix-packages/
  7. XDG_DATA_DIRS=/var/lib/flatpak/exports/share:/home/joshua/.local/share/flatpak/exports/share:$XDG_DATA_DIRS
  8. # this may fix a bug that I have with termite confusing backspace as space in guix environment
  9. # export TERM=linux
  10. shepherd -c /home/joshua/.config/shepherd/init.scm &
  11. exec dbus-run-session sway
  12. fi