Hide menubar, show border

Multi-arg pushdot messages
This commit is contained in:
Sage Vaillancourt 2023-12-13 16:07:28 -05:00
parent cb46ae4704
commit bb2dd4c1f1
2 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
[Configuration]
MiscAlwaysShowTabs=FALSE
MiscBell=FALSE
MiscBordersDefault=FALSE
MiscBordersDefault=TRUE
MiscCursorBlinks=FALSE
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
MiscDefaultGeometry=80x24
MiscInheritGeometry=FALSE
MiscMenubarDefault=TRUE
MiscMenubarDefault=FALSE
MiscMouseAutohide=FALSE
MiscToolbarDefault=FALSE
MiscConfirmClose=TRUE

View File

@ -72,7 +72,7 @@ function pushdot {
if [ $# -eq 0 ]; then
git commit -a && git push -u origin main
else
git commit -a -m "$1" && git push -u origin main
git commit -a -m "$@" && git push -u origin main
fi
cd -
}