Major overhaul

This commit is contained in:
Augusto Gunsch
2021-08-11 14:45:00 -03:00
parent 1b0aaf9186
commit 6dcc6899a2
16 changed files with 38 additions and 35 deletions

3
local/bin/cleartrash Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
rm -rfv "$HOME/.trash"

3
local/bin/forecast Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
curl -s wttr.in | head -n -1

4
local/bin/getip Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/sh
curl -s ipecho.net/plain
echo

4
local/bin/trash Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/sh
mkdir -p "$HOME/.trash"
mv $@ "$HOME/.trash"

3
local/bin/weather Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
curl -s wttr.in | head -n -1