diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-10-29 13:54:06 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-10-29 13:54:06 +0200 |
commit | d7db0d187ccb4404fdf6f19fba15e0a39391640a (patch) | |
tree | 4c41764c51818587d797efe17abab2e94306ec48 /bashrc | |
download | hydrilla-website-d7db0d187ccb4404fdf6f19fba15e0a39391640a.tar.gz hydrilla-website-d7db0d187ccb4404fdf6f19fba15e0a39391640a.zip |
initial commit
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +# SPDX-License-Identifier: CC0-1.0 + +# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org> +# +# Available under the terms of Creative Commons Zero v1.0 Universal. + +if [ -r /etc/bash.bashrc ]; then + source /etc/bash.bashrc +fi + +if [ -r ~/.bashrc ]; then + source ~/.bashrc +fi + +export PS1="$PS1($HYDRILLA_SHELL_NAME)\$ " |