diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/browsers/home.html | 2 | ||||
-rw-r--r-- | .config/catgirl/libera | 1 | ||||
-rw-r--r-- | .config/zsh/alias.zsh | 10 |
3 files changed, 6 insertions, 7 deletions
diff --git a/.config/browsers/home.html b/.config/browsers/home.html index 443c50d..9054a29 100644 --- a/.config/browsers/home.html +++ b/.config/browsers/home.html @@ -57,7 +57,7 @@ body { background-color: #282828; border: 2px solid black; width: 25%; - height: 28em; + height: 100%; margin: 0em .5em; } .bookmark_links { diff --git a/.config/catgirl/libera b/.config/catgirl/libera index 582b783..34e3dca 100644 --- a/.config/catgirl/libera +++ b/.config/catgirl/libera @@ -4,5 +4,4 @@ cert = libera.pem sasl-external join = #linux,#freebsd,#archlinux,##chat,#c,#embedded,#neovim,#perl timestamp = %H:%M -hash = 0,15 quiet diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 59a6e7d..d86baab 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -17,6 +17,7 @@ tree() { eza -T $@ | $PAGER } alias hff='cd ~/dev/go/hardflip' +alias kk='cd ~/dev/c/kirc' alias \ e='nvim' \ vim='nvim' \ @@ -56,7 +57,7 @@ alias \ ytdl='yt-dlp --add-metadata' \ ytdlist='yt-dlp -F' \ ytdl1080="yt-dlp --add-metadata -f '[height<=1080]'" \ - irc='catgirl' \ + irc='TERM=st-16color catgirl' \ free='freecolor' \ n='nnn' \ gt='gpg-tui' \ @@ -99,10 +100,9 @@ bssh() { ssh $user@$host -t -- $* fi } -assh() { - user='admin' - host='bastion' - ssh $user@$host -- --osh $* +j() { + job=$(jobs -l | sed 's/ suspended //' | fzf --reverse --prompt='job > ') || return + [ -n "$job" ] && fg %$(awk '{print $1}' <<< "$job" | tr -d '[]') } upsrc() { doas git -C /usr/src pull --ff-only |