general update
This commit is contained in:
Executable
+5
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
text=$(fortune)
|
||||
|
||||
cbonsai -lp -L 50 -m "$text"
|
||||
Executable
+7
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ "$(pactl get-sink-mute @DEFAULT_SINK@)" = "Mute: yes" ]; then
|
||||
echo "vol: mute"
|
||||
else
|
||||
echo "vol: $(pactl get-sink-volume @DEFAULT_SINK@ | awk '{printf "%s", substr($5, 1, length($5) - 1)}')"
|
||||
fi
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
TMPBG=/tmp/screen.png
|
||||
scrot /tmp/screen.png
|
||||
magick $TMPBG -scale 10% -scale 1000% $TMPBG
|
||||
i3lock -u -i $TMPBG
|
||||
rm /tmp/screen.png
|
||||
Reference in New Issue
Block a user