diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-11-16 18:52:53 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-11-16 21:43:50 +0100 |
commit | 08f4d63f450ccd96f5077bc60774d8f1fecec92c (patch) | |
tree | 7f09941d62ca23737bc0b1f616d2d50eb7dd14af /bashrc | |
download | koszko-org-website-08f4d63f450ccd96f5077bc60774d8f1fecec92c.tar.gz koszko-org-website-08f4d63f450ccd96f5077bc60774d8f1fecec92c.zip |
initial commitv2022.11.16
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($WEBSITE_SHELL_NAME)\$ " |