fish: Show tasks when opening a new terminal

Note that in the future I may simply use something else instead.
This commit is contained in:
Donovan Glover 2022-12-15 16:10:19 -05:00
parent 7eb4952e3e
commit 60c2561fec
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,7 +1,16 @@
# New Start: A modern Arch workflow built with an emphasis on functionality. # New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017-2022 Donovan Glover # Copyright (C) 2017-2022 Donovan Glover
set -U fish_greeting "" # Show tasks when opening a new terminal
function fish_greeting
if test "$PWD" = "$HOME"
fish_prompt
set_color blue
echo task
set_color normal
task
end
end
export VISUAL="nvim" export VISUAL="nvim"
export EDITOR="nvim" export EDITOR="nvim"