mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-18 10:26:06 -07:00
23 lines
470 B
Bash
23 lines
470 B
Bash
#!/usr/bin/env bash
|
|
# https://github.com/starr-dusT/dotfiles
|
|
|
|
# sesh
|
|
function b() {
|
|
{
|
|
exec </dev/tty
|
|
exec <&1
|
|
local session
|
|
session=$(sesh list -i | fzf --ansi --height 40% --reverse --border-label ' sesh ' --border --prompt '⚡ ')
|
|
[[ -z "$session" ]] && return
|
|
sesh connect $session
|
|
}
|
|
}
|
|
|
|
# chezmoi
|
|
alias cc="cd ~/.local/share/chezmoi"
|
|
alias ca="chezmoi apply"
|
|
alias ce='chezmoi edit'
|
|
|
|
# rsync
|
|
alias rsync.net="ssh fm2120@fm2120.rsync.net"
|