diff options
author | George Abbott <george@gabbott.dev> | 2023-10-31 17:54:07 +0000 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2023-10-31 17:54:07 +0000 |
commit | 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch) | |
tree | c2a6751823e064e003cd4f6166df07bfc106d7eb /sys |
Commit all to date.
Diffstat (limited to 'sys')
-rwxr-xr-x | sys/add-bookmark | 34 | ||||
-rwxr-xr-x | sys/add-coast | 40 | ||||
-rwxr-xr-x | sys/cdadd | 39 | ||||
-rwxr-xr-x | sys/change-audio | 21 | ||||
-rwxr-xr-x | sys/change-light | 4 | ||||
-rwxr-xr-x | sys/dwmblocks-battery | 54 | ||||
-rwxr-xr-x | sys/dwmblocks-brightness | 4 | ||||
-rwxr-xr-x | sys/dwmblocks-mpc | 37 | ||||
-rwxr-xr-x | sys/dwmblocks-updatesig | 7 | ||||
-rwxr-xr-x | sys/dwmblocks-vpn | 8 | ||||
-rwxr-xr-x | sys/feeds | 3 | ||||
-rwxr-xr-x | sys/get-bookmark | 17 | ||||
-rwxr-xr-x | sys/get-coast | 14 | ||||
-rwxr-xr-x | sys/insert-char | 16 | ||||
-rwxr-xr-x | sys/open-bookmark | 26 | ||||
-rwxr-xr-x | sys/orgd | 5 | ||||
-rwxr-xr-x | sys/orgdenv | 27 | ||||
-rwxr-xr-x | sys/orgdresolv | 35 | ||||
-rwxr-xr-x | sys/powermenu | 9 | ||||
-rwxr-xr-x | sys/vpnc | 4 | ||||
-rwxr-xr-x | sys/vpnd | 4 |
21 files changed, 408 insertions, 0 deletions
diff --git a/sys/add-bookmark b/sys/add-bookmark new file mode 100755 index 0000000..cf37c7f --- /dev/null +++ b/sys/add-bookmark @@ -0,0 +1,34 @@ +#!/bin/sh +# Adds a bookmark. +# Either grabs xclip, or requests input of the string to bookmark. +# If passed --ask (-a), then ignore the clipboard and prompt the user what to +# bookmark. + +bkmk="$(xclip -o -selection primary)" +alias bmnotify-send="notify-send -i $HOME/.local/share/img/bm-icon.png" + +if isflag '-a' "$@" ; then + bkmk="$(dmenu -p "Enter bookmark: " < /dev/null)" +fi + + +[ -z "$bkmk" ] && bmnotify-send "Did not bookmark." "Nothing selected to bookmark!" && exit + +comment="$(dmenu -p "Add comment ($bkmk): " < /dev/null)" +[ -z "$comment" ] && exit +if [ "$ORGD_KT_PATH" = "" ]; then + notify-send "ORGD_KT_PATH empty." "Using $HOME/docs/wr/orgd/kt as fallback." + file="$HOME/docs/wr/orgd/kt/bookmark" +else + file="$ORGD_KT_PATH/bookmark" +fi + +stripped="$(strip-comments "$file")" + +if echo "$stripped" | grep -q "^$bkmk[/ \t]*$"; then + bmnotify-send "No!" "<i>$bkmk</i> already bookmarked!" +else + echo "$bkmk # $comment" >> "$file" + bmnotify-send "Bookmark Added!" "<i>$bkmk</i> added and tagged as <i>$comment</i>." +fi + diff --git a/sys/add-coast b/sys/add-coast new file mode 100755 index 0000000..ebd1df9 --- /dev/null +++ b/sys/add-coast @@ -0,0 +1,40 @@ +#!/bin/sh +# Adds a bookmark. +# Either grabs xclip, or requests input of the string to bookmark. +# If passed --ask (-a), then ignore the clipboard and prompt the user what to +# bookmark. + +coast="$(xclip -o -selection primary)" +alias bmnotify-send="notify-send -i $HOME/.local/share/img/bm-icon.png" +commonargs="-i $HOME/.local/share/img/bm-icon.png" + +if isflag '-a' "$@" ; then + coast="$(dmenu -p "Enter coast entry: " < /dev/null)" +fi + +# Exit if entry is not present. +[ -z "$coast" ] && bmnotify-send "Did not add coast." "Nothing selected to add!" && exit + +# Request comment. +comment="$(dmenu -p "Add comment ($coast): " < /dev/null)" + +# Exit if the comment is blank. +[ -z "$comment" ] && exit + +# Find the file which holds coast entries, and process it. +if [ "$ORGD_KT_PATH" = "" ]; then + notify-send "ORGD_KT_PATH empty." "Using $HOME/docs/wr/orgd/kt as fallback." + file="$HOME/docs/wr/orgd/kt/coast" +else + file="$ORGD_KT_PATH/coast" +fi +stripped="$(strip-comments "$file")" + +# Add the entry, unless its already added. +if echo "$stripped" | grep -q "^$coast[/ \t]*$"; then + bmnotify-send "No!" "<i>$coast</i> already added!" +else + echo "$coast # $comment" >> "$file" + bmnotify-send "Entry Added!" "<i>$coast</i> added and tagged as <i>$comment</i>." $commonargs +fi + diff --git a/sys/cdadd b/sys/cdadd new file mode 100755 index 0000000..57f1b69 --- /dev/null +++ b/sys/cdadd @@ -0,0 +1,39 @@ +#!/bin/sh + +# Add a cd alias to the $ORGD_CDALIAS_PATH file. +# Checks the path is valid first before adding it, and that alias less than +# seven characters as per the requirements. +# Usage: cdadd alias $HOME/target/directory +# Pass -p to disable the check for a valid path. + + +dir="$(orgdresolv ORGD_SD_PATH)" +path="$(orgdresolv ORGD_CDALIAS_PATH)" +alias="$1" +target="$2" + +# Ensure that $ORGD_CDALIAS_PATH exists +mkdir -p "$dir" +touch "$path" +# Check alias less than eight characters. +[ ${#alias} -gt 8 ] && \ + echo "Alias ($alias) must be less than eight characters long." && \ + exit + +# Check $target is a valid path. + +if [ ! -d "$target" ] ; then + if ! isflag '-p' "$@" ; then + echo "Target ($target) is not a valid directory" && \ + exit + fi +fi + +# Check if alias already exists as a cd alias, grep with tab to not match part +# of existing alias. +awk ' { print $1 } ' $path | grep -q "$alias " && \ + echo "The alias ($alias) already exists." && \ + exit + + +echo "$alias $target" >> $path diff --git a/sys/change-audio b/sys/change-audio new file mode 100755 index 0000000..2dafe73 --- /dev/null +++ b/sys/change-audio @@ -0,0 +1,21 @@ +#!/bin/bash +# change-audio +# Shamelessly copied from the Arch Linux wiki. + +# Arbitrary but unique message tag +msgTag="myvolume" + +# Change the volume using alsa(might differ if you use pulseaudio) +amixer -M -c 0 set Master "$@" > /dev/null + +# Query amixer for the current volume and whether or not the speaker is muted +volume="$(amixer -M -c 0 get Master | tail -1 | awk '{print $4}' | sed 's/[^0-9]*//g')" +mute="$(amixer -M -c 0 get Master | tail -1 | awk '{print $6}' | sed 's/[^a-z]*//g')" +if [[ $volume == 0 || "$mute" == "off" ]]; then + # Show the sound muted notification + dunstify -a "changeVolume" -u low -i audio-volume-muted -h string:x-dunst-stack-tag:$msgTag "Volume muted" +else + # Show the volume notification + dunstify -a "changeVolume" -u low -i audio-volume-high -h string:x-dunst-stack-tag:$msgTag \ + -h int:value:"$volume" "Volume: ${volume}%" +fi diff --git a/sys/change-light b/sys/change-light new file mode 100755 index 0000000..4658349 --- /dev/null +++ b/sys/change-light @@ -0,0 +1,4 @@ +#!/bin/sh + +xbacklight -$1 $2 +pkill -RTMIN+2 dwmblocks diff --git a/sys/dwmblocks-battery b/sys/dwmblocks-battery new file mode 100755 index 0000000..455a42f --- /dev/null +++ b/sys/dwmblocks-battery @@ -0,0 +1,54 @@ +#!/bin/sh + +CHARGING="" + +get_symbol() { + printf '' + if [ "$2" = "indeed" ]; then + printf $CHARGING + else + if [ "$1" -ge 0 ] && [ "$1" -le 4 ]; then + printf "" + elif [ "$1" -ge 5 ] && [ "$1" -le 14 ]; then + printf "" + elif [ "$1" -ge 15 ] && [ "$1" -le 24 ]; then + printf "" + elif [ "$1" -ge 25 ] && [ "$1" -le 34 ]; then + printf "" + elif [ "$1" -ge 35 ] && [ "$1" -le 44 ]; then + printf "" + elif [ "$1" -ge 45 ] && [ "$1" -le 54 ]; then + printf "" + elif [ "$1" -ge 55 ] && [ "$1" -le 64 ]; then + printf "" + elif [ "$1" -ge 65 ] && [ "$1" -le 74 ]; then + printf "" + elif [ "$1" -ge 75 ] && [ "$1" -le 84 ]; then + printf "" + elif [ "$1" -ge 85 ] && [ "$1" -le 94 ]; then + printf "" + elif [ "$1" -ge 95 ] && [ "$1" -le 100 ]; then + printf "" + else + printf "uhoh" + fi + fi + printf '' + +} + +for bat in /sys/class/power_supply/BAT*; do + stt=$(cat "$bat/status") + if [ "$stt" = 'Discharging' ] || [ "$stt" = 'Not charging' ] + then + is_battery_charging='no' + else + is_battery_charging='indeed' + fi + + cpcy="$(cat "$bat/capacity")" + + symbol="$(get_symbol "$cpcy" "$is_battery_charging")" + + printf "$symbol $cpcy%%" | tr '\n' ' '; +done diff --git a/sys/dwmblocks-brightness b/sys/dwmblocks-brightness new file mode 100755 index 0000000..34390db --- /dev/null +++ b/sys/dwmblocks-brightness @@ -0,0 +1,4 @@ +#!/bin/sh + +v=$(xbacklight -get) +echo " ${v%%.*}%" diff --git a/sys/dwmblocks-mpc b/sys/dwmblocks-mpc new file mode 100755 index 0000000..0897855 --- /dev/null +++ b/sys/dwmblocks-mpc @@ -0,0 +1,37 @@ +#!/bin/bash + +# Accepts, e.g. 81:50 and prints it to 1:21:50. +to_hms_time() { + min="$(cut -d':' -f1 <<<"$1")" + sec="$(cut -d':' -f2 <<<"$1")" + + ((hour=$min/60)) + ((min=$min-$hour*60)) + + printf -v min "%02d" $min + printf -v sec "%02d" $sec + + if [ $hour = "0" ] ; then + printf "$min:$sec" + else + printf "$hour:$min:$sec" + fi +} + +FILENAME="$(mpc current -f "%title%")" +if [ -z "$FILENAME" ] ; then + FILENAME="$(basename "$(mpc current -f "%file%")")" # TODO: also remove file extension. +fi + +TIMES="$(mpc status "%currenttime%/%totaltime%")" + +if [ -z "$FILENAME" ] && [ "$TIMES" = "0:00/0:00" ] ; then + printf "" + exit +fi + +mpctime="$(mpc status %currenttime%/%totaltime%)" +curtime="$(to_hms_time $(cut -d '/' -f1 <<<"$mpctime"))" # <<< isn't POSIX? +tottime="$(to_hms_time $(cut -d '/' -f2 <<<"$mpctime"))" + +printf " %s/%s ~ %s" "$curtime" "$tottime" "$FILENAME" diff --git a/sys/dwmblocks-updatesig b/sys/dwmblocks-updatesig new file mode 100755 index 0000000..730a7b2 --- /dev/null +++ b/sys/dwmblocks-updatesig @@ -0,0 +1,7 @@ +#!/bin/sh +# Give signal in blocks.def.h + 34. + +echo "$0" +echo "$1" + +pkill -RTMIN+"$1" dwmblocks diff --git a/sys/dwmblocks-vpn b/sys/dwmblocks-vpn new file mode 100755 index 0000000..6a81123 --- /dev/null +++ b/sys/dwmblocks-vpn @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ "$(ip link show | rg proton0)" = "" ] +then + echo "no vpn" +else + echo "vpn" +fi diff --git a/sys/feeds b/sys/feeds new file mode 100755 index 0000000..9330324 --- /dev/null +++ b/sys/feeds @@ -0,0 +1,3 @@ +#!/bin/sh + +nvim $XDG_CONFIG_HOME/newsboat/urls diff --git a/sys/get-bookmark b/sys/get-bookmark new file mode 100755 index 0000000..321aa10 --- /dev/null +++ b/sys/get-bookmark @@ -0,0 +1,17 @@ +#!/bin/sh + +alias bmnotify-send="notify-send -i $HOME/.local/share/img/bm-icon.png" + +if [ "$ORGD_KT_PATH" = "" ]; then + notify-send "ORGD_KT_PATH empty." "Using $HOME/docs/wr/orgd/kt as fallback." + file="$HOME/docs/wr/orgd/kt/bookmark" +else + file="$ORGD_KT_PATH/bookmark" +fi + +# This regex matches <space tab carriage-return linefeed> though it is hard to +# read. +# I wonder if it might be worth cutting on a different character than space? +# If a space is present in the bookmark then it will bug out. +xdotool type --delay 2 "$(grep -v '^#\|^[ \r\n]*$' $file | dmenu -i -l 50 | cut -d' ' -f1)" +bmnotify-send "Done!" "Text fully pasted." diff --git a/sys/get-coast b/sys/get-coast new file mode 100755 index 0000000..d04364c --- /dev/null +++ b/sys/get-coast @@ -0,0 +1,14 @@ +#!/bin/sh +# get-coast: get a "check-out-at-some-time" entry. +if [ "$ORGD_KT_PATH" = "" ]; then + notify-send "ORGD_KT_PATH empty." "Using $HOME/docs/wr/orgd/kt as fallback." + file="$HOME/docs/wr/orgd/kt/coast" +else + file="$ORGD_KT_PATH/coast" +fi + +# This regex matches <space tab carriage-return linefeed> though it is hard to +# read. +# I wonder if it might be worth cutting on a different character than space? +# If a space is present in the bookmark then it will bug out. +xdotool type --delay 2 "$(grep -v '^#\|^[ \r\n]*$' $file | dmenu -i -l 50 | cut -d' ' -f1)" diff --git a/sys/insert-char b/sys/insert-char new file mode 100755 index 0000000..20ea288 --- /dev/null +++ b/sys/insert-char @@ -0,0 +1,16 @@ +#!/bin/sh + +# A simple dmenu script that grabs from a file, and inserts that character. +# File is located at: $ORGD_DATA_PATH, or $HOME/docs/wr/orgd/dt/chars. + +if [ "$ORGD_DT_PATH" = "" ]; then + notify-send "ORGD_DT_PATH empty." "Using $HOME/docs/wr/orgd/dt as fallback." + file="$HOME/docs/wr/orgd/dt/chars" +else + file="$ORGD_DT_PATH/chars" +fi + +char="$(grep -v '^#\|^[ \r\n]*$' $file | dmenu -l 25 | cut -d' ' -f1)" +notify-send "Inserted Character" "Inserted <i>$char</i>." +xdotool type --delay 0 "$char" + diff --git a/sys/open-bookmark b/sys/open-bookmark new file mode 100755 index 0000000..12f5ae6 --- /dev/null +++ b/sys/open-bookmark @@ -0,0 +1,26 @@ +#!/bin/sh +# Open a bookmark. If the text entered is not a bookmark, search for it +# using Duckduckgo, for now. + +[ -z "$BROWSER" ] && BROWSER="firefox" + +if [ -z "$ORGD_KT_PATH" ] ; then + notify-send "ORGD_KT_PATH empty." "Using $HOME/docs/wr/orgd/kt as fallback." + file="$HOME/docs/wr/orgd/kt/bookmark" +else + file="$ORGD_KT_PATH"/bookmark +fi + +open="$(grep -v '^#\|^[ \r\n]*$' $file | \ + dmenu -p 'Site to open:' -i -l 50 | \ + cut -d'#' -f1 | \ + sed 's/[[:space:]]*$//')" + +[ -z "$open" ] && exit +if cat "$file" | grep -q "^.*$open.*$" ; then + notify-send "Bookmark Opened" "$open has been opened." + $BROWSER "$open" +else + notify-send "Opened DuckDuckGo" "Seached <i>$open</i>." + $BROWSER "https://duckduckgo.com/?q=$(echo $open | tr ' ' '+')" +fi diff --git a/sys/orgd b/sys/orgd new file mode 100755 index 0000000..3f0934c --- /dev/null +++ b/sys/orgd @@ -0,0 +1,5 @@ +#!/bin/sh +# orgd + +mkdir -p "$HOME/docs/wr/orgd" +wr "orgd/$1" diff --git a/sys/orgdenv b/sys/orgdenv new file mode 100755 index 0000000..9c537eb --- /dev/null +++ b/sys/orgdenv @@ -0,0 +1,27 @@ +#!/bin/sh + +# Set up the full gamut of ORGD environment variables based on the prompt +# path. + +# Usage: +# orgdenv .profile +# Add all default orgd paths, e.g. $HOME/docs/wr/orgd into .profile. +# orgdenv .zshrc ~/.local/orgd +# Add orgd paths starting at ~/.local/orgd into .zshrc. +# TODO: finish the envvars off. + +[ -z "$1" ] && echo "You must provide a file to add into." && exit +[ -z "$2" ] && ORGD_ROOT="$HOME/docs/wr/orgd" || ORGD_ROOT="$2" + +echo "$1" +echo "$2" +touch "$1" + +cat > "$1" <<-END + export ORGD_ROOT="$ORGD_ROOT" + # kt + export ORGD_KT_PATH="$ORGD_ROOT/kt" + export ORGD_BIB_PATH="$ORGD_KT_PATH/biblio" + export ORGD_BIBCSV_PATH="$ORGD_KT_PATH/biblio.csv" + export ORGD_MED_PATH="$ORGD_ROOT/med" +END diff --git a/sys/orgdresolv b/sys/orgdresolv new file mode 100755 index 0000000..59a2c4f --- /dev/null +++ b/sys/orgdresolv @@ -0,0 +1,35 @@ +#!/bin/sh +# Resolve an environment path if not present. Pass the name of the path here +# and it will output the path. +# For instance: orgdresolv ORGD_ROOT will output "$HOME/docs/wr/orgd/" + + +# TODO: add all envvars. +# Also, probably best to recursively resolve. So if $ORGD_BIBCSV_PATH not +# found, try $ORGD_KT_PATH/biblio.csv, if that envvar not found try +# $ORGD_ROOT/kt/biblio.csv, etc etc + +case $1 in + ORGD_ROOT) + [ -z "$ORGD_ROOT" ] && echo "$HOME/docs/wr/orgd" || echo "$ORGD_ROOT";; + ORGD_KT_PATH) + [ -z "$ORGD_KT_PATH" ] && echo "$HOME/docs/wr/orgd/kt" || echo "$ORGD_KT_PATH";; + ORGD_MED_PATH) + [ -z "$ORGD_MED_PATH" ] && echo "$HOME/docs/wr/orgd/med" || echo "$ORGD_MED_PATH";; + ORGD_BIBCSV_PATH) + [ -z "$ORGD_BIBCSV_PATH" ] && echo "$HOME/docs/wr/orgd/kt/biblio.csv" || echo "$ORGD_BIBCSV_PATH";; + ORGD_SD_PATH) + [ -z "$ORGD_SD_PATH" ] && echo "$HOME/docs/wr/orgd/sd" || echo "$ORGD_SD_PATH";; + ORGD_CDALIAS_PATH) + [ -z "$ORGD_CDALIAS_PATH" ] && echo "$HOME/docs/wr/orgd/sd/cd" || echo "$ORGD_CDALIAS_PATH";; + ORGD_TD_PATH) + [ -z "$ORGD_TD_PATH" ] && echo "$HOME/docs/wr/orgd/td" || echo "$ORGD_TD_PATH";; + ORGD_FIN_MONTHS) + [ -z "$ORGD_FIN_MONTHS" ] && echo "$HOME/docs/wr/trk/fin/ent" || echo "$ORGD_FIN_MONTHS";; + ORGD_TRK_PATH) + [ -z "$ORGD_TRK_PATH" ] && echo "$HOME/docs/wr/trk" || echo "$ORGD_TRK_PATH";; + *) + exit 1 ;; +esac + +exit 0 diff --git a/sys/powermenu b/sys/powermenu new file mode 100755 index 0000000..e9d6a2a --- /dev/null +++ b/sys/powermenu @@ -0,0 +1,9 @@ +#!/bin/sh + +resp=$(printf "♻️ shutdown\n⏼ reboot\n lock\nrestart dwm\nclose X" | dmenu) + +[ "$resp" = "♻️ shutdown" ] && sudo poweroff +[ "$resp" = "⏼ reboot" ] && sudo reboot +[ "$resp" = " lock" ] && slock +[ "$resp" = "restart dwm" ] && pkill dwm +[ "$resp" = "close X" ] && pkill xinit diff --git a/sys/vpnc b/sys/vpnc new file mode 100755 index 0000000..0a09fc0 --- /dev/null +++ b/sys/vpnc @@ -0,0 +1,4 @@ +#!/bin/sh + +sudo protonvpn c --p2p +pkill -RTMIN+7 dwmblocks diff --git a/sys/vpnd b/sys/vpnd new file mode 100755 index 0000000..f26a909 --- /dev/null +++ b/sys/vpnd @@ -0,0 +1,4 @@ +#!/bin/sh + +sudo protonvpn d +pkill -RTMIN+7 dwmblocks |