move ~/bin to ~/.local/bin

This commit is contained in:
2025-09-09 12:57:50 +02:00
parent b8cf5a87ab
commit f86008162b
42 changed files with 199 additions and 17 deletions

6
.local/bin/§calc Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
function _echo(){
[ -t 0 ] && echo "$1" && exit
notify-send -i kcalc "$1" && exit
}
_echo `python3 -c 'import sys; print(eval(" ".join(sys.argv[1:])))' "$*"`