dotfiles

my shiny new dotfiles
git clone git://git.jakekoroman.com/dotfiles
Log | Files | Refs | README

.bash_profile (427B)


      1 # /etc/skel/.bash_profile
      2 
      3 # This file is sourced by bash for login shells.  The following line
      4 # runs your .bashrc and is recommended by the bash info pages.
      5 if [[ -f ~/.bashrc ]] ; then
      6 	. ~/.bashrc
      7 fi
      8 
      9 if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
     10     echo 'welcome bozo'
     11     export MOZ_ENABLE_WAYLAND=1
     12     export ELECTRON_OZONE_PLATFORM_HINT=wayland
     13     export GTK_THEME=Adwaita:dark
     14     dbus-run-session sway
     15 fi