updated a bunch

This commit is contained in:
2026-05-20 18:14:15 +02:00
parent 45fb878bd1
commit 8989c7927c
29 changed files with 680 additions and 514 deletions
+27
View File
@@ -2,6 +2,7 @@
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="eastwood"
HIST_STAMPS="dd.mm.yyyy"
RPROMPT='%{$fg[cyan]%}%n:%m%{$reset_color%}'
plugins=(git sudo)
# Load sources
@@ -56,6 +57,21 @@ alias tk='tmux kill-session -t'
# Pdf alias
alias pdf='zathura'
alias pdf-edit='okular'
# SSH Aliases
alias vps01='tmux new-session -s vps01 "ssh agres@agres.online"'
alias vps02='tmux new-session -s vps02 "ssh agres@agres.cloud"'
alias pve01='tmux new-session -s pve01 "ssh agres@192.168.0.200"'
# Slop Alias
claude() {
if [ $# -eq 0 ]; then
tmux new-session -s claude "claude"
else
command claude "$@"
fi
}
# GPG TTY Fix
export GPG_TTY=$(tty)
@@ -67,3 +83,14 @@ export LS_COLORS
# Add local and global bin files to path
export PATH="/home/agres/.npm-global/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
# Brew Setup
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv zsh)"
# Certificate for agres.site used by bitwarden cli
export NODE_EXTRA_CA_CERTS="$HOME/.config/bitwarden-certs/vaultwarden-agres-site.pem"
# Atuin
. "$HOME/.atuin/bin/env"
eval "$(atuin init zsh)"
+7
View File
@@ -9,3 +9,10 @@ export GOBIN=$HOME/.local/go/bin
export PATH=$PATH:$GOBIN
export PATH="$HOME/.local/bin:$PATH"
# Shell function to turn on pc
pc() {
ssh -T root@192.168.0.254 'bash /root/wakeup.sh'
}
alias copy='wl-copy --type text/plain <'
alias copyimg='wl-copy --type image/png <'