Hevin screensaver on one monitor
This commit is contained in:
@@ -203,6 +203,7 @@ abbr adr "task-due-rm"
|
||||
abbr anx "task-next"
|
||||
abbr anr "task-next-rm"
|
||||
abbr ant "task-notes"
|
||||
abbr aon "taskopen-new"
|
||||
abbr apr "task-mod-pri"
|
||||
abbr aprl "task-mod-pri L"
|
||||
abbr aprm "task-mod-pri M"
|
||||
@@ -272,6 +273,7 @@ abbr mtm "maven-test-method"
|
||||
abbr pgr "grep-pdf"
|
||||
abbr pgrf "grep-pdf-file"
|
||||
abbr pst "pastebin"
|
||||
abbr q "bc-qalc '"
|
||||
abbr qh "qalc-history"
|
||||
abbr qu "qalc-update"
|
||||
abbr re "reminder ''"
|
||||
|
||||
8
dot_config/fish/functions/bc-qalc.fish
Normal file
8
dot_config/fish/functions/bc-qalc.fish
Normal file
@@ -0,0 +1,8 @@
|
||||
#function bc-qalc
|
||||
#echo "scale=4; $argv[1]" | bc
|
||||
#end
|
||||
function bc-qalc
|
||||
set -l expression "scale=4; $argv[1]"
|
||||
set -l result (echo "$expression" | bc -l)
|
||||
python3 -c "print(f'{float($result):,}')"
|
||||
end
|
||||
3
dot_config/fish/functions/taskopen-new.fish
Normal file
3
dot_config/fish/functions/taskopen-new.fish
Normal file
@@ -0,0 +1,3 @@
|
||||
function taskopen-new
|
||||
echo "md" | taskopen -A $argv[1] && taskopen -A $argv[1]
|
||||
end
|
||||
Reference in New Issue
Block a user