summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-x.scripts/i3cmds/lockscreen14
-rwxr-xr-x.scripts/tools/qndl11
-rwxr-xr-x.scripts/tools/queueandnotify7
3 files changed, 14 insertions, 18 deletions
diff --git a/.scripts/i3cmds/lockscreen b/.scripts/i3cmds/lockscreen
index b745a6a..456857f 100755
--- a/.scripts/i3cmds/lockscreen
+++ b/.scripts/i3cmds/lockscreen
@@ -1,19 +1,9 @@
#!/bin/sh
-
-rm -f /tmp/locked.png
-
-# If `imagemagick` is not installed, use a blank screen.
-[ -f /usr/bin/convert ] &&
-scrot -m -z /tmp/base.png &&
-pgrep -x dunst && notify-send -i ~/.scripts/pix/lock.png "Locking computer..." &&
-convert /tmp/base.png -blur 0x8 /tmp/locked.png
-
-# Pause music (mocp, mpd and send the pause key to all mpv videos):
-mocp -P >/dev/null 2>&1
+# Pause mpd and send the pause key to all mpv videos:
mpc pause >/dev/null 2>&1
pauseallmpv >/dev/null 2>&1
-i3lock -e -f -c 000000 -i /tmp/locked.png
+i3lock -e -f -c 1d2021
# In five seconds, turn off display unless key press in last 4 seconds.
sleep 5 && [ 4000 -lt "$(xssstate -i)" ] && pgrep -x i3lock && xset dpms force off
diff --git a/.scripts/tools/qndl b/.scripts/tools/qndl
new file mode 100755
index 0000000..ffe3647
--- /dev/null
+++ b/.scripts/tools/qndl
@@ -0,0 +1,11 @@
+#!/bin/sh
+# $1 is a url; $2 is a command
+[ -z "$1" ] && exit
+base="$(basename "$1")"
+notify-send -i "$PIX/dl.svg" "Queuing $base..."
+cmd="$2"
+[ -z "$cmd" ] && cmd="youtube-dl --add-metadata"
+idnum="$(tsp $cmd "$1")"
+realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")"
+tsp -D "$idnum" mv "$base" "$realname"
+tsp -D "$idnum" notify-send -i "$PIX/check.svg" "$realname done."
diff --git a/.scripts/tools/queueandnotify b/.scripts/tools/queueandnotify
index 332668f..a1417ec 100755
--- a/.scripts/tools/queueandnotify
+++ b/.scripts/tools/queueandnotify
@@ -7,12 +7,7 @@ queuefile="$HOME/.local/share/newsboat/queue"
while read -r line; do
[ -z "$line" ] && continue
url="$(echo "$line" | awk '{print $1}')"
- base="$(basename "$url")"
- notify-send -i "$PIX/dl.png" "Queuing $base..."
- idnum="$(tsp curl -LO "$url")"
- realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")"
- tsp -D "$idnum" mv "$base" "$realname"
- tsp -D "$idnum" notify-send -i "$PIX/check.png" "$realname done."
+ qndl "$url" "curl -LO"
done < "$queuefile"
echo > "$queuefile"