7 lines
178 B
Plaintext
7 lines
178 B
Plaintext
|
#!/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:])))' "$*"`
|