dotfiles

My personal dotfiles
git clone https://codeberg.org/emmett1/dotfiles
Log | Files | Refs

.profile (536B)


      1 #                     ____ __   
      2 #      ___  _______  / _(_) /__ 
      3 #   _ / _ \/ __/ _ \/ _/ / / -_)
      4 #  (_) .__/_/  \___/_//_/_/\__/ 
      5 #   /_/                         
      6 #  
      7 
      8 export ENV=~/.ashrc
      9 export PATH=$PATH:~/bin
     10 export SHFM_OPENER=~/.config/shfm/opener.sh
     11 export PF_INFO="ascii title os host kernel uptime pkgs memory shell editor"
     12 
     13 if [ ! "$XDG_RUNTIME_DIR" ]; then
     14 	export XDG_RUNTIME_DIR="/tmp/$(id -u)-runtime-dir"
     15 	mkdir -pm 0700 "$XDG_RUNTIME_DIR"
     16 fi
     17 
     18 if [ ! "$WAYLAND_DISPLAY" ] && [ "$(tty)" = /dev/tty1 ]; then
     19 	exec sway
     20 fi