diff options
author | Amin Bandali <bandali@gnu.org> | 2022-12-24 15:49:15 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2022-12-24 15:49:15 -0500 |
commit | 22a90cca43cc2d42cd8f658b6ee388a733afd9ed (patch) | |
tree | 5f2c6c54876e79636269b23e3f7b061b7482e860 /.profile | |
parent | 0a2ebcf45c0a40dd258e91bd2f4a3bd90b0fae18 (diff) | |
download | configs-22a90cca43cc2d42cd8f658b6ee388a733afd9ed.tar.gz configs-22a90cca43cc2d42cd8f658b6ee388a733afd9ed.tar.xz configs-22a90cca43cc2d42cd8f658b6ee388a733afd9ed.zip |
Move host-specific additional profiles into .config/ itself
Diffstat (limited to '')
-rw-r--r-- | .profile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,8 +9,8 @@ #umask 022 # source host-specific profile -if [ -f "$HOME/.config/profiles/$(hostname)" ]; then - . "$HOME/.config/profiles/$(hostname)" +if [ -f "$HOME/.config/$(hostname).profile" ]; then + . "$HOME/.config/$(hostname).profile" fi export EDITOR="emacsclient -nw" |