update alacritty font size to be nicer with x11, fix indentation for waybar config, and update notes.sh to automatically do spell checking if EDITOR is (n)vim
This commit is contained in:
parent
fa502576f7
commit
eccd915bc9
3 changed files with 13 additions and 3 deletions
|
@ -150,7 +150,7 @@ font:
|
||||||
#style: Bold Italic
|
#style: Bold Italic
|
||||||
|
|
||||||
# Point size
|
# Point size
|
||||||
size: 11.0
|
size: 7.0
|
||||||
|
|
||||||
# Offset is the extra space around each character. `offset.y` can be thought
|
# Offset is the extra space around each character. `offset.y` can be thought
|
||||||
# of as modifying the line spacing, and `offset.x` as modifying the letter
|
# of as modifying the line spacing, and `offset.x` as modifying the letter
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
},
|
},
|
||||||
"clock": {
|
"clock": {
|
||||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||||
"format": "{:%m/%d/%y %H:%M}"
|
"format": "{:%m/%d/%y %H:%M}"
|
||||||
},
|
},
|
||||||
"cpu": {
|
"cpu": {
|
||||||
"format": "{usage}% ",
|
"format": "{usage}% ",
|
||||||
|
|
|
@ -56,6 +56,16 @@ notes() {
|
||||||
echo -e "# $(date -d "@${NOW}" +'%a %d %b %Y')\n\n## todo\n\n" > "${FILE_PATH}"
|
echo -e "# $(date -d "@${NOW}" +'%a %d %b %Y')\n\n## todo\n\n" > "${FILE_PATH}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
"${EDITOR:-vim}" "${FILE_PATH}"
|
local -r EDITOR="${EDITOR:-vim}"
|
||||||
|
local EDITOR_OPTIONS=()
|
||||||
|
|
||||||
|
if [[ "${EDITOR}" =~ 'vim$' ]]; then
|
||||||
|
EDITOR_OPTIONS=(
|
||||||
|
'-c'
|
||||||
|
'set spell'
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
|
"${EDITOR}" "${EDITOR_OPTIONS[@]}" "${FILE_PATH}"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue