add bin (scripts)

This commit is contained in:
2024-02-19 20:37:09 +01:00
parent 075f2deaf0
commit b54b08442a
26 changed files with 2056 additions and 0 deletions

6
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:])))' "$*"`