config: add intention prompt at login

This commit is contained in:
xerus2000 2021-01-07 12:04:44 +01:00
parent 331fe4a838
commit 67e7d711be
2 changed files with 8 additions and 0 deletions

View File

@ -11,6 +11,7 @@ highlight: true
indent_character: '|'
journals:
default: ~/data/2-standards/notes/journal/jrnl.txt
intentions: ~/data/2-standards/notes/journal/intentions.txt
nug: ~/data/2-standards/notes/journal/nugnug.txt
linewrap: 99
tagsymbols: '@'

View File

@ -43,3 +43,10 @@ export FZF_CTRL_T_COMMAND="$FD_BASE -d 7"
export CTEST_PROGRESS_OUTPUT=1
export CTEST_OUTPUT_ON_FAILURE=1
export CTEST_PARALLEL_LEVEL=3
if test -z "${DISPLAY}" && test "${XDG_VTNR}" -eq 1 ; then
echo "What do you want to do?"
read response
jrnl intentions "$response"
exec startx
fi