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