Compare commits

...

3 Commits

Author SHA1 Message Date
a192f828af Updated dotfiles-zsh
Added random quote lines directly to .zshrc, updated README, commented create-links and removed separate quote script
2025-04-07 18:56:44 -04:00
dd6646cf40 Added ~/.local/rc.local import, if exists 2025-04-07 18:32:57 -04:00
chawley (tfadmin)
4cf415c886 Added autojump to .zshrc
Source autojump.zsh if it exists
2025-03-12 15:16:17 +00:00
4 changed files with 48 additions and 54 deletions

57
.zshrc
View File

@@ -1,27 +1,58 @@
# Exports
export PATH=$HOME/bin:/usr/local/bin:$HOME/.local/bin/:$PATH
export ZSH="$HOME/.oh-my-zsh"
# Export notes directory
if [[ -z $NOTES_DIR ]]; then
if [[ -d $HOME/Sync/MarkdownNotes ]]; then
export NOTES_DIR=$HOME/Sync/MarkdownNotes
else
if [[ -d $HOME/Documents ]]; then
export NOTES_DIR=$HOME/Documents
fi
fi
fi
ZSH_THEME="powerlevel10k/powerlevel10k"
POWERLEVEL9K_MODE="nerdfont-complete"
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
export ZSH_COMPDUMP=$ZSH/cache/completions/.zcompdump-$HOST
source $ZSH/oh-my-zsh.sh
# If rc.local exists, source it
[ -f ~/.local/rc.local ] && source ~/.local/rc.local
# User-defined Aliases and Functions
[[ ! -f ~/.shell_functions ]] || source ~/.shell_functions
[[ ! -f ~/.shell_aliases ]] || source ~/.shell_aliases
$HOME/dotfiles-zsh/get-quote.sh
# ZSH History Options
# Reference: https://unix.stackexchange.com/questions/273861/unlimited-history-in-zsh
HISTFILE="$HOME/.zsh_history"
HISTSIZE=10000
SAVEHIST=10000
setopt BANG_HIST # Treat the '!' character specially during expansion.
setopt EXTENDED_HISTORY # Write the history file in the ":start:elapsed;command" format.
setopt INC_APPEND_HISTORY # Write to the history file immediately, not when the shell exits.
setopt SHARE_HISTORY # Share history between all sessions.
setopt HIST_EXPIRE_DUPS_FIRST # Expire duplicate entries first when trimming history.
setopt HIST_IGNORE_DUPS # Don't record an entry that was just recorded again.
setopt HIST_IGNORE_ALL_DUPS # Delete old recorded entry if new entry is a duplicate.
setopt HIST_FIND_NO_DUPS # Do not display a line previously found.
setopt HIST_IGNORE_SPACE # Don't record an entry starting with a space.
setopt HIST_SAVE_NO_DUPS # Don't write duplicate entries in the history file.
setopt HIST_REDUCE_BLANKS # Remove superfluous blanks before recording entry.
setopt HIST_VERIFY # Don't execute immediately upon history expansion.
setopt HIST_BEEP # Beep when accessing nonexistent history.
# Display Random Quote
if command -v curl >/dev/null 2>&1; then
QUOTE=$(curl -s https://files.planethawleywood.com/quotes.txt)
if [ -n "$QUOTE" ]; then
if command -v shuf >/dev/null 2>&1; then
QUOTE=$(echo "$QUOTE" | shuf -n 1)
fi
if command -v cowsay >/dev/null 2>&1; then
if command -v lolcat >/dev/null 2>&1; then
echo "$QUOTE" | cowsay -f tux | lolcat
else
echo "$QUOTE" | cowsay -f tux
fi
elif command -v lolcat >/dev/null 2>&1; then
echo "$QUOTE" | lolcat
else
echo "$QUOTE"
fi
fi
fi
# Instant Prompt Preamble
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
@@ -31,7 +62,6 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# If .fzf.zsh exists, source it
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
@@ -40,3 +70,6 @@ fi
# If .zshrc.$USER exists, source it
[[ ! -f ~/.zshrc.$USER ]] || source ~/.zshrc.$USER
# If autojump installed, source it
[[ ! -f /usr/share/autojump/autojump.zsh ]] || source /usr/share/autojump/autojump.zsh

View File

@@ -3,3 +3,5 @@
Just a place to track my ZSH configs
Including `.zshrc`, `.fzf.zsh` and settings for [oh-my-zsh ](https://github.com/robbyrussell/oh-my-zsh) (required)
Includes `.zshrc.original` as a working reference since I've changed mine so much.

View File

@@ -19,5 +19,6 @@
[[ -L $HOME/.zshrc ]] && unlink $HOME/.zshrc
[[ -L $HOME/.fzf.zsh ]] && unlink $HOME/.fzf.zsh
# Create symlinks to files in repository
ln -s $PWD/.zshrc $HOME/.zshrc
ln -s $PWD/.fzf.zsh $HOME/.fzf.zsh

View File

@@ -1,42 +0,0 @@
#!/usr/bin/env bash
#===============================================================================
#
# FILE:
# USAGE:
# DESCRIPTION:
# REQUIREMENTS:
# NOTES:
# AUTHOR: C Hawley
# CREATED:
#
#===============================================================================
# URL of the text file
TEXT_FILE_URL="https://files.planethawleywood.com/quotes.txt"
# Download the text file using curl and store it in a temporary file
temp_file=$(mktemp)
curl -s "$TEXT_FILE_URL" > "$temp_file"
# Count the number of lines in the file
num_lines=$(wc -l < "$temp_file")
# Generate a random line number
random_line=$(( (RANDOM % num_lines) + 1))
# Display the random line
quote=$(sed -n "${random_line}p" "$temp_file")
# cowsay and lolcat if available
if [[ $(command -v cowsay) ]]; then
if [[ $(command -v lolcat) ]]; then
cowsay -f tux "${quote}" | lolcat
else
cowsay -f tux "${quote}"
fi
else
echo "${quote}"
fi
# remove temp file
rm $temp_file