diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 23:49:16 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 23:49:16 -0200 |
commit | 4453f319458f6f7efa709b1c253032e56ebced67 (patch) | |
tree | 97899aa89c29aacd63667e892370f14facbe673c /modules | |
parent | 63dfd651503e24ea1bb3cede976712e5852b33b7 (diff) | |
download | dotfiles-4453f319458f6f7efa709b1c253032e56ebced67.tar.gz dotfiles-4453f319458f6f7efa709b1c253032e56ebced67.tar.bz2 |
Removing bashisms from profile scripts (2)
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/profile/xprofile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile/xprofile b/modules/profile/xprofile index 744ae5d..c4e4eab 100755 --- a/modules/profile/xprofile +++ b/modules/profile/xprofile @@ -10,14 +10,14 @@ BACKGROUND="" PROGRAMS="" # Make sure to load the profile -source $HOME/.profile +. $HOME/.profile # Start xscreensaver xscreensaver -no-splash & # Custom if [ -e "$HOME/.custom/xprofile" ]; then - source $HOME/.custom/xprofile + . $HOME/.custom/xprofile fi # Set background |