From 48cc40f50ae24d187dca24112a9ebd7dccc5f42d Mon Sep 17 00:00:00 2001 From: Olivia Mackintosh Date: Sat, 13 Aug 2022 21:46:37 +0200 Subject: scripts: statusbar and linkhandler --- .gitignore | 2 ++ .local/bin/linkhandler | 26 ++++++++++++++++++++++++++ .local/bin/statusbar | 28 ++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100755 .local/bin/linkhandler create mode 100755 .local/bin/statusbar diff --git a/.gitignore b/.gitignore index 21309db..3834a83 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ * !/.gitignore !/.config** +!/.local +!/.local/bin** diff --git a/.local/bin/linkhandler b/.local/bin/linkhandler new file mode 100755 index 0000000..cc971fc --- /dev/null +++ b/.local/bin/linkhandler @@ -0,0 +1,26 @@ +#!/bin/sh + +# Feed script a url or file location. +# If an image, it will view in sxiv, +# if a video or gif, it will view in mpv +# if a music file or pdf, it will download, +# otherwise it opens link in browser. + +if [ -z "$1" ]; then + url="$(xclip -o)" +else + url="$1" +fi + +case "$url" in + *mkv|*webm|*mp4|*youtube.com/watch*|*youtube.com/playlist*|*youtu.be*|*hooktube.com*|*bitchute.com*|*videos.lukesmith.xyz*|*odysee.com*) + setsid -f mpv -quiet "$url" >/dev/null 2>&1 ;; + *png|*jpg|*jpe|*jpeg|*gif) + curl -sL "$url" > "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" && sxiv -a "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" >/dev/null 2>&1 & ;; + *pdf|*cbz|*cbr) + curl -sL "$url" > "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" && zathura "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" >/dev/null 2>&1 & ;; + *mp3|*flac|*opus|*mp3?source*) + qndl "$url" 'curl -LO' >/dev/null 2>&1 ;; + *) + [ -f "$url" ] && setsid -f "$TERMINAL" -e "$EDITOR" "$url" >/dev/null 2>&1 || setsid -f "$BROWSER" "$url" >/dev/null 2>&1 +esac diff --git a/.local/bin/statusbar b/.local/bin/statusbar new file mode 100755 index 0000000..9f124a7 --- /dev/null +++ b/.local/bin/statusbar @@ -0,0 +1,28 @@ +#!/bin/sh + +print_wifi() { + if=wlan0 + while IFS=$': \t' read -r label value + do + case $label in SSID) SSID=$value + ;; + signal) SIGNAL=$value + ;; + esac + done < <(iw "$if" link) + test "$SIGNAL" && echo -e "$SSID $SIGNAL" +} + + + +while true +do + xsetroot -name\ + "$(printf "%s %s %s %s%% %s"\ + "$(print_wifi)"\ + "`ip -4 -j a show wlan0 | jq -r ".[0].addr_info[0].local"`"\ + "$(($(cat /proc/meminfo|grep MemAvailable | awk '{print $2}')/1024))M"\ + "`