Lots of updates.

This commit is contained in:
Derek Taylor
2020-03-19 14:50:17 -05:00
parent 55f24bf77c
commit 3814732157
55 changed files with 981 additions and 7944 deletions

4
.local/bin/clock Executable file
View File

@@ -0,0 +1,4 @@
#! /bin/bash
dte="$(date +"%a, %B %d %l:%M%p"| sed 's/ / /g')"
echo -e "$dte"

4
.local/bin/kernel Executable file
View File

@@ -0,0 +1,4 @@
#! /bin/bash
kern="$(uname -r)"
echo -e "$kern "

4
.local/bin/memory Executable file
View File

@@ -0,0 +1,4 @@
#! /bin/bash
mem="$(free -h | awk '/^Mem:/ {print $3 "/" $2}')"
echo -e "$mem ram "

4
.local/bin/pacupdate Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
cupd=$(checkupdates | wc -l)
printf "$cupd udpates \n"

4
.local/bin/upt Executable file
View File

@@ -0,0 +1,4 @@
#! /bin/bash
upt="$(uptime --pretty | sed -e 's/up //g' -e 's/ hours/h/g' -e 's/ hour/h/g' -e 's/ minutes/m/g' -e 's/, //g')"
echo -e "$upt uptime "

4
.local/bin/volume Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
vol="$(amixer get Master | tail -n1 | sed -r 's/.*\[(.*)%\].*/\1/')"
echo "${vol}% "