dotfiles

The dotfiles of my personnal laptop.
Log | Files | Refs

commit 439230a85fc925ba2ef0c4119dd08ec83a6892d9
parent 1e37bca2d994e4dc9a95702e3520756c44f15e9a
Author: Hugo Soucy <hugo@soucy.cc>
Date:   Thu, 23 Mar 2023 20:25:41 -0400

Remove unused lines

Diffstat:
M.kshrc | 13++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/.kshrc b/.kshrc @@ -22,13 +22,14 @@ else LS='ls' fi -# Configure terminal to automatically start tmux as default -#if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then -# tmux attach -t default || tmux new -s default -#fi +if [ -n "$DISPLAY" ]; then + export BROWSER=firefox-esr +else + export BROWSER=w3m +fi # aliases -#alias ferron='cd ~/Ferron/ && ./cornelius build' +# nothing for now export LUA_CPATH='/home/hs0ucy/.luarocks/lib/lua/5.3/?.so;/usr/local/lib/lua/5.3/?.so;/usr/local/lib/lua/5.3/loadall.so;./?.so' export PATH='/home/hs0ucy/.luarocks/bin:/usr/local/bin:/home/hs0ucy/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/sbin:/usr/games:/home/hs0ucy/.local/bin' @@ -42,6 +43,4 @@ case "$(id -u)" in *) _PS1_COLOR='\[\033[32m\]' ;; esac -# screenfetch - PS1='$_XTERM_TITLE\A $_PS1_COLOR\u@\h$_PS1_CLEAR:$_PS1_BLUE\w$_PS1_COLOR\$$_PS1_CLEAR '