From f8d2af143552b5a3cf2975bf587c7f29052938bf Mon Sep 17 00:00:00 2001 From: Hedy Li Date: Fri, 25 Dec 2020 05:49:37 +0000 Subject: [PATCH] Update fish functions and readme --- .config/fish/functions/fish_greeting.fish | 1 - .config/fish/functions/rm.fish | 7 +++++-- README.md | 16 ++++++++++++++++ 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/.config/fish/functions/fish_greeting.fish b/.config/fish/functions/fish_greeting.fish index 8115ec1..018520b 100644 --- a/.config/fish/functions/fish_greeting.fish +++ b/.config/fish/functions/fish_greeting.fish @@ -1,3 +1,2 @@ function fish_greeting - echo lol end diff --git a/.config/fish/functions/rm.fish b/.config/fish/functions/rm.fish index d574c4a..2b32448 100644 --- a/.config/fish/functions/rm.fish +++ b/.config/fish/functions/rm.fish @@ -1,4 +1,7 @@ -# Defined in - @ line 1 function rm --wraps=trash --description 'alias rm=trash' - trash $argv; + if which trash + trash $argv; + else + /usr/bin/rm $argv; + end end diff --git a/README.md b/README.md index 8048c57..ac86e48 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,18 @@ # dotfiles Welcome, these are for Ubuntu/Debian and WSL + +### Notes for setup + +**Python** +- git fame +- termdown +- pyjokes + +**Shell/Misc** +- exa +- qalc (apt) +- trash-cli + +### Todo +- [ ] Add links for above +- [ ] Write copy/sync scripts