2022-10-17 22:35:06 -04:00
|
|
|
if test -f /usr/share/doc/fzf/examples/completion.zsh &> /dev/null; then
|
|
|
|
source /usr/share/doc/fzf/examples/completion.zsh
|
|
|
|
fi
|
2020-02-09 12:29:17 -05:00
|
|
|
|
2024-01-25 20:29:19 -05:00
|
|
|
ssh_ids=$(find "$HOME/.ssh" -type f -name "id*" | grep -v '\.pub')
|
|
|
|
if [[ "$ssh_ids" != "" ]]; then
|
|
|
|
eval "$(ssh-agent -s)" &> /dev/null
|
|
|
|
for id in $(echo $ssh_ids); do
|
|
|
|
ssh-add "$id" &> /dev/null
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2020-04-21 12:39:18 -04:00
|
|
|
HISTFILE=~/.histfile
|
2024-01-22 13:30:45 -05:00
|
|
|
HISTSIZE=SAVEHIST=100000000
|
2020-04-21 12:39:18 -04:00
|
|
|
setopt appendhistory autocd notify
|
|
|
|
setopt menu_complete
|
|
|
|
unsetopt beep
|
|
|
|
bindkey -v
|
2020-04-21 13:54:09 -04:00
|
|
|
|
2020-06-12 18:44:25 -04:00
|
|
|
autoload -Uz up-line-or-beginning-search
|
|
|
|
autoload -Uz down-line-or-beginning-search
|
|
|
|
zle -N up-line-or-beginning-search
|
|
|
|
zle -N down-line-or-beginning-search
|
|
|
|
bindkey '\eOA' up-line-or-beginning-search
|
|
|
|
bindkey '\e[A' up-line-or-beginning-search
|
|
|
|
bindkey '\eOB' down-line-or-beginning-search
|
|
|
|
bindkey '\e[B' down-line-or-beginning-search
|
2020-04-21 13:54:09 -04:00
|
|
|
|
|
|
|
export EDITOR="vim"
|
2020-02-09 12:29:17 -05:00
|
|
|
|
2020-04-21 12:39:18 -04:00
|
|
|
zstyle ':completion:*' completer _expand _complete _ignored _correct _approximate
|
|
|
|
zstyle ':completion:*' matcher-list '+' '+m:{[:lower:]}={[:upper:]}' '+m:{[:lower:][:upper:]}={[:upper:][:lower:]}' '+r:|[._-]=** r:|=** l:|=*'
|
2020-04-21 13:54:09 -04:00
|
|
|
zstyle :compinstall filename '~/.zshrc'
|
2021-10-06 13:15:39 -04:00
|
|
|
zstyle ':completion:*' ignored-patterns '*.class'
|
2020-02-09 12:29:17 -05:00
|
|
|
|
2020-04-21 12:39:18 -04:00
|
|
|
autoload -Uz compinit
|
|
|
|
compinit
|
2020-02-09 12:29:17 -05:00
|
|
|
|
2020-04-21 12:39:18 -04:00
|
|
|
# enable color support of ls and also add handy aliases
|
|
|
|
if [ -x /usr/bin/dircolors ]; then
|
|
|
|
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
|
|
|
alias grep='grep --color=auto'
|
|
|
|
alias fgrep='fgrep --color=auto'
|
|
|
|
alias egrep='egrep --color=auto'
|
|
|
|
fi
|
2020-02-09 12:29:17 -05:00
|
|
|
|
2023-12-13 12:23:16 -05:00
|
|
|
export PATH=~/.bin:$HOME/.dotnet:~/.local/bin:/usr/local/go/bin:$PATH
|
2020-04-21 12:39:18 -04:00
|
|
|
|
2024-01-22 14:04:24 -05:00
|
|
|
fignore=(o class swp)
|
2020-04-21 12:39:18 -04:00
|
|
|
|
|
|
|
function SetTtyColors() {
|
2024-01-09 10:12:38 -05:00
|
|
|
echo -en "\e]P0""2c2d27" # black 1
|
|
|
|
echo -en "\e]P1""f92672" # darkgrey 2
|
|
|
|
echo -en "\e]P2""00aa00" # darkred 3
|
|
|
|
echo -en "\e]P3""f92672" # red 4
|
|
|
|
echo -en "\e]P4""4444aa" # darkgreen 5
|
|
|
|
echo -en "\e]P5""a6e22e" # green 6
|
|
|
|
echo -en "\e]P6""f59762" # brown 7
|
|
|
|
echo -en "\e]P7""fdfff1" # yellow 8
|
|
|
|
echo -en "\e]P8""f92672" # darkblue 9
|
|
|
|
echo -en "\e]P9""f92672" # blue 10
|
|
|
|
echo -en "\e]PA""55ff55" # darkmagenta 11
|
|
|
|
echo -en "\e]PB""f92672" # magenta 12
|
|
|
|
echo -en "\e]PC""66d9ef" # darkcyan 13
|
|
|
|
echo -en "\e]PD""ae81ff" # cyan 14
|
|
|
|
echo -en "\e]PE""a1efe4" # lightgray 15
|
|
|
|
echo -en "\e]PF""fdfff1" # white 16
|
2020-04-21 12:39:18 -04:00
|
|
|
clear
|
|
|
|
}
|
2020-02-09 12:29:17 -05:00
|
|
|
|
2020-04-21 12:39:18 -04:00
|
|
|
if [ "$TERM" = "linux" ]; then
|
|
|
|
SetTtyColors
|
|
|
|
fi
|
2020-02-09 12:29:17 -05:00
|
|
|
|
2023-12-13 15:09:02 -05:00
|
|
|
source ~/.shell_aliases
|
|
|
|
source ~/.zsh_local
|
|
|
|
|
2024-02-18 01:15:03 -05:00
|
|
|
function dconf-dump {
|
2024-02-19 01:25:44 -05:00
|
|
|
local current_section=""
|
2024-02-18 01:15:03 -05:00
|
|
|
local ignore_section=false
|
2024-02-19 00:28:03 -05:00
|
|
|
# Ignores certain values/sections that shouldn't be synced
|
2024-02-19 01:25:44 -05:00
|
|
|
dconf dump / | while read -r line; do
|
|
|
|
if [[ "$line" == "["* ]]; then
|
|
|
|
current_section="$line"
|
2024-02-19 00:12:19 -05:00
|
|
|
ignore_section=false
|
|
|
|
fi
|
2024-02-19 01:25:44 -05:00
|
|
|
case "$current_section" in
|
2024-02-19 01:30:26 -05:00
|
|
|
"[org/gnome/desktop/background]" | \
|
|
|
|
"[org/gnome/shell/extensions/gsconnect"*)
|
2024-02-19 01:25:44 -05:00
|
|
|
ignore_section=true
|
|
|
|
;;
|
|
|
|
"[org/gnome/desktop/interface]")
|
2024-02-19 01:30:26 -05:00
|
|
|
if [[ "$line" == "gtk-theme='"* ]]; then
|
|
|
|
continue
|
2024-02-19 01:25:44 -05:00
|
|
|
fi
|
2024-02-19 01:30:26 -05:00
|
|
|
echo "$line"
|
2024-02-19 01:25:44 -05:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if ! $ignore_section; then
|
|
|
|
echo "$line"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2024-02-18 01:15:03 -05:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2024-02-17 14:40:50 -05:00
|
|
|
function push-dconf {
|
2024-02-19 01:37:07 -05:00
|
|
|
if ! command -v scpace &> /dev/null; then
|
2024-02-17 14:06:08 -05:00
|
|
|
echo "An alias for scpace has not been defined on this device!"
|
2024-02-19 01:37:07 -05:00
|
|
|
return 1
|
2024-02-17 14:06:08 -05:00
|
|
|
fi
|
2024-02-19 01:37:07 -05:00
|
|
|
dconf-dump > /tmp/dconf-dump || return 1
|
|
|
|
scp -P 11275 /tmp/dconf-dump 'sage@sagev.space:~/dconf-dump'
|
2024-02-17 14:40:50 -05:00
|
|
|
}
|
|
|
|
|
2024-02-24 12:16:49 -05:00
|
|
|
function push-extensions {
|
|
|
|
if ! command -v gnome-extensions &> /dev/null; then
|
|
|
|
echo "gnome-extensions is not installed!"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
gnome-extensions list > /tmp/gnome-extension-list
|
|
|
|
scp -P 11275 /tmp/gnome-extension-list 'sage@sagev.space:~/gnome-extension-list'
|
|
|
|
}
|
|
|
|
|
|
|
|
function load-extensions {
|
|
|
|
if ! command -v gnome-extensions &> /dev/null; then
|
|
|
|
echo "gnome-extensions is not installed!"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
local existing="$(gnome-extensions list)"
|
|
|
|
for ext in $(cat /tmp/gnome-extension-list); do
|
|
|
|
if grep "$ext" <(echo $existing) &> /dev/null; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
VERSION_TAG=$(curl -Lfs "https://extensions.gnome.org/extension-query/?search=${ext}" | jq '.extensions[0] | .shell_version_map | map(.pk) | max')
|
|
|
|
wget -O ${ext}.zip "https://extensions.gnome.org/download-extension/${ext}.shell-extension.zip?version_tag=$VERSION_TAG"
|
|
|
|
gnome-extensions install --force ${EXTENSION_ID}.zip
|
|
|
|
if ! gnome-extensions list | grep --quiet ${ext}; then
|
|
|
|
busctl --user call org.gnome.Shell.Extensions /org/gnome/Shell/Extensions org.gnome.Shell.Extensions InstallRemoteExtension s ${ext}
|
|
|
|
fi
|
|
|
|
gnome-extensions enable ${ext}
|
|
|
|
rm ${EXTENSION_ID}.zip
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2024-02-17 14:40:50 -05:00
|
|
|
function pushdot {
|
|
|
|
cd "$DOT_DIR" || return 1
|
2024-02-19 00:49:01 -05:00
|
|
|
local res
|
2024-02-17 14:40:50 -05:00
|
|
|
if [ $# -eq 0 ]; then
|
2024-02-24 12:16:49 -05:00
|
|
|
git commit -a
|
2024-02-19 00:49:01 -05:00
|
|
|
res="$?"
|
2024-02-17 14:40:50 -05:00
|
|
|
else
|
2024-02-24 12:16:49 -05:00
|
|
|
git commit -a -m "$@"
|
2024-02-19 00:49:01 -05:00
|
|
|
res="$?"
|
2024-02-17 14:40:50 -05:00
|
|
|
fi
|
2024-02-24 12:16:49 -05:00
|
|
|
if [[ "$res" == "0" ]]; then
|
|
|
|
git push -u origin main && push-extensions && push-dconf
|
|
|
|
fi
|
2020-02-09 12:36:34 -05:00
|
|
|
cd -
|
2024-02-19 00:49:01 -05:00
|
|
|
return $res
|
2020-02-09 12:36:34 -05:00
|
|
|
}
|
2020-04-23 11:46:53 -04:00
|
|
|
|
|
|
|
function getdot {
|
2024-02-19 01:37:07 -05:00
|
|
|
if ! command -v scpace &> /dev/null; then
|
|
|
|
echo "An alias for scpace has not been defined on this device!"
|
|
|
|
return 1
|
|
|
|
fi
|
2023-12-13 15:09:02 -05:00
|
|
|
cd "$DOT_DIR" || return 1
|
2024-01-16 06:42:13 -05:00
|
|
|
git pull && ./copy.sh
|
2024-02-22 23:08:43 -05:00
|
|
|
rm /tmp/dconf-dump &> /dev/null
|
2024-02-24 12:16:49 -05:00
|
|
|
scp -P 11275 'sage@sagev.space:~/gnome-extension-list' /tmp/gnome-extension-list
|
|
|
|
load-extensions
|
2024-02-19 01:37:07 -05:00
|
|
|
scp -P 11275 'sage@sagev.space:~/dconf-dump' /tmp/dconf-dump
|
|
|
|
dconf-dump > /tmp/current-dconf-dump
|
|
|
|
if ! git --no-pager diff --no-index /tmp/current-dconf-dump /tmp/dconf-dump &> /dev/null; then
|
|
|
|
echo
|
|
|
|
echo "Incoming conf changes:"
|
|
|
|
echo
|
|
|
|
git --no-pager diff --no-index /tmp/current-dconf-dump /tmp/dconf-dump
|
|
|
|
echo
|
|
|
|
bash -c 'read -p "Press enter to continue, or Ctrl-C to cancel."' || return 1
|
|
|
|
echo "Applying changes..."
|
2024-02-17 14:06:08 -05:00
|
|
|
fi
|
2024-02-19 01:37:07 -05:00
|
|
|
dconf load / < /tmp/dconf-dump || return 1
|
2024-01-22 20:38:11 -05:00
|
|
|
cd - > /dev/null
|
2020-04-23 11:46:53 -04:00
|
|
|
}
|
2020-04-26 20:17:35 -04:00
|
|
|
|
2022-10-17 22:35:06 -04:00
|
|
|
if which starship &> /dev/null; then
|
|
|
|
eval "$(starship init zsh)"
|
|
|
|
fi
|
|
|
|
|
2024-01-22 13:30:45 -05:00
|
|
|
last_get_file="/tmp/.$(whoami)-dotfiles-last-get"
|
|
|
|
current_date="$(date '+%Y-%m-%d')"
|
|
|
|
if test -d "$DOT_DIR" && [[ "$current_date" != "$(cat "$last_get_file")" ]] &> /dev/null; then
|
|
|
|
echo "$current_date" > "$last_get_file"
|
|
|
|
getdot
|
|
|
|
fi
|
|
|
|
|
2024-01-24 21:33:45 -05:00
|
|
|
export nvm_loaded=false
|
|
|
|
|
|
|
|
alias nvm="load_nvm; nvm"
|
|
|
|
alias node="load_nvm; node"
|
|
|
|
|
|
|
|
function load_nvm {
|
|
|
|
if $nvm_loaded; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
unalias nvm
|
|
|
|
unalias node
|
|
|
|
export NVM_DIR="$HOME/.nvm"
|
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
|
export nvm_loaded=true
|
|
|
|
}
|
2023-09-27 12:21:12 -04:00
|
|
|
|
2023-12-13 13:39:18 -05:00
|
|
|
test -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh && source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
2023-12-13 13:42:44 -05:00
|
|
|
test -f "$HOME/.asdf/asdf.sh" && . "$HOME/.asdf/asdf.sh"
|
2024-01-22 14:04:24 -05:00
|
|
|
test -f ~/.cargo/env && source ~/.cargo/env
|