summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-12-12 17:50:52 -0500
committerLuke Smith <luke@lukesmith.xyz>2018-12-12 17:50:52 -0500
commit264fbcb0213455c1a1848671826e9799f8f02b19 (patch)
tree1cab3974a34cd284dd12a21b83b38def2334e59e /.profile
parent4933a7983e4dcfa9fb002b1fca43dc5abc869996 (diff)
downloadeibhear-264fbcb0213455c1a1848671826e9799f8f02b19.tar.gz
eibhear-264fbcb0213455c1a1848671826e9799f8f02b19.tar.zst
eibhear-264fbcb0213455c1a1848671826e9799f8f02b19.zip
profile is bash
Diffstat (limited to '.profile')
-rw-r--r--.profile6
1 files changed, 3 insertions, 3 deletions
diff --git a/.profile b/.profile
index 4809ad1..42f079b 100644
--- a/.profile
+++ b/.profile
@@ -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