diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-12-12 17:50:52 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2018-12-12 17:50:52 -0500 |
| commit | 264fbcb0213455c1a1848671826e9799f8f02b19 (patch) | |
| tree | 1cab3974a34cd284dd12a21b83b38def2334e59e /.profile | |
| parent | 4933a7983e4dcfa9fb002b1fca43dc5abc869996 (diff) | |
| download | eibhear-264fbcb0213455c1a1848671826e9799f8f02b19.tar.gz eibhear-264fbcb0213455c1a1848671826e9799f8f02b19.tar.zst eibhear-264fbcb0213455c1a1848671826e9799f8f02b19.zip | |
profile is bash
Diffstat (limited to '.profile')
| -rw-r--r-- | .profile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/bash # Profile file. Runs on login. # Adds `~/.scripts` and all subdirectories to $PATH -export PATH="$(du $HOME/.scripts/ | cut -f2 | tr '\n' ':')$PATH" +export PATH="$(du "$HOME/.scripts/" | cut -f2 | tr '\n' ':')$PATH" export EDITOR="vim" export TERMINAL="st" export BROWSER="firefox" @@ -24,7 +24,7 @@ export LESS_TERMCAP_ue=$'\E[0m' # reset underline [ ! -f ~/.shortcuts ] && shortcuts >/dev/null 2>&1 -[ -f ~/.bashrc ] && source ~/.bashrc +[ -f ~/.bashrc ] && source "$HOME/.bashrc" # Start graphical server if i3 not already running. [ "$(tty)" = "/dev/tty1" ] && ! pgrep -x i3 >/dev/null && exec startx |
