commit 788e5ce39570c58a4ceaa47c4bc2a3338f10d1a4
Author: Simon Watson <spw01@protonmail.com>
Date: Wed Jul 21 21:37:44 2021 -0400
Small updates
diff --git a/bashrc/bashrc-all b/bashrc/bashrc-all
index 2a2f164..61fc388 100644
--- a/bashrc/bashrc-all
+++ b/bashrc/bashrc-all
@@ -29,6 +29,12 @@ alias tmuxq="echo $TMUX"
alias httpserver="python -m SimpleHTTPServer"
+if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
+then
+ PATH="$HOME/.local/bin:$HOME/bin:$PATH"
+fi
+export PATH
+
# Case defines platform specific configs
# Platform agnostic configs above
case $(hostname) in
@@ -51,12 +57,6 @@ case $(hostname) in
watsonsi-fedora)
- if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
- then
- PATH="$HOME/.local/bin:$HOME/bin:$PATH"
- fi
- export PATH
-
export PS1="[\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]]\$ "
alias start_od="rclone --vfs-cache-mode writes mount ipconedrive: /home/watonsi/OneDrive/"
alias tmuxn="systemd-run --scope --user tmux new -s $1"
@@ -73,6 +73,14 @@ case $(hostname) in
echo "Loaded Work Fedora config"
;;
+
+ void)
+
+ export PS1="\[\033[36m\]\w\[\033[m\] λ "
+ alias shorten-ps1="PS1='λ > '"
+
+ echo "Loaded Void config"
+
esac