From 104a1789bead0827b3c206629978f894665b0006 Mon Sep 17 00:00:00 2001 From: hgw Date: Tue, 3 Oct 2023 16:15:03 -0700 Subject: [PATCH] Update dotfiles/.zshrc-linux --- dotfiles/.zshrc-linux | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/dotfiles/.zshrc-linux b/dotfiles/.zshrc-linux index 66d3f94..7822fea 100644 --- a/dotfiles/.zshrc-linux +++ b/dotfiles/.zshrc-linux @@ -1,6 +1,6 @@ # --- OH-MY-ZSH --- export ZSH="$HOME/.oh-my-zsh" -ZSH_THEME="philips" +ZSH_THEME="clean" zstyle ':omz:update' mode auto zstyle ':omz:update' frequency 7 plugins=(git) @@ -17,13 +17,19 @@ alias duf="docker compose down && docker compose up -d --build && docker compose hf() { curl -F file=@$1 https://hardfiles.org } +# Uncomment if on desktop #hfs() { # filename=$HOME/.scrot/$(cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 50 | head -n 1).png -# screencapture -i $filename +# flameshot gui -p $filename # hf $filename #} hft() { filename=$HOME/.scrot/$(cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 50 | head -n 1).txt nano $filename hf $filename -} \ No newline at end of file +} + +# Session Manager (Uncomment if desktop) +#if [[ ! ${DISPLAY} && ${XDG_VTNR} == 1 ]]; then +# exec tbsm +#fi