Created
September 16, 2024 23:43
-
-
Save leroux/34b7cca74606807c1841edd37c00a683 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PS1="[\$(_frame)]$prompt_newline$PS1" | |
_frame_append() { | |
frame append --message="$*" | |
} | |
_frame_new() { | |
frame new "$*" --message="$*" | |
} | |
alias fr="frame" | |
alias frs="frame status" | |
alias frt="frame tree" | |
alias frl="frame list" | |
alias fru="frame up" | |
alias frd="frame down" | |
alias frp="frame push" | |
alias frpop="frame pop" | |
alias frr="frame top; frame tree" | |
alias fra="_frame_append" | |
alias fre="frame edit" | |
alias frn="_frame_new" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment