aboutsummaryrefslogtreecommitdiffstats
path: root/hm/soispha/pkgs/scripts/small_functions
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-02-24 14:59:50 +0100
committerSoispha <soispha@vhack.eu>2024-02-24 15:04:49 +0100
commit8284b6a7b4d212913083b003a819fda8d4931d4d (patch)
tree1a41cb60fe64f3f9b1a8c33bd2895ad419366cb5 /hm/soispha/pkgs/scripts/small_functions
parentfix(hm/pkgs/git-update-index): Remove '--' from help text (diff)
downloadnixos-config-8284b6a7b4d212913083b003a819fda8d4931d4d.zip
refactor(hm/pkgs): Implement with an nixpkgs overlay
Diffstat (limited to 'hm/soispha/pkgs/scripts/small_functions')
-rwxr-xr-xhm/soispha/pkgs/scripts/small_functions/nato.py106
-rwxr-xr-xhm/soispha/pkgs/scripts/small_functions/screenshot_persistent.sh22
-rwxr-xr-xhm/soispha/pkgs/scripts/small_functions/screenshot_temporary.sh8
-rwxr-xr-xhm/soispha/pkgs/scripts/small_functions/update-sys.sh77
4 files changed, 0 insertions, 213 deletions
diff --git a/hm/soispha/pkgs/scripts/small_functions/nato.py b/hm/soispha/pkgs/scripts/small_functions/nato.py
deleted file mode 100755
index e9d15f56..00000000
--- a/hm/soispha/pkgs/scripts/small_functions/nato.py
+++ /dev/null
@@ -1,106 +0,0 @@
-#!/usr/bin/env python3
-# originally from here: https://cgit.pacien.net/desktop-utilities/
-
-import sys
-
-alphabet = {
- "nato": {
- "A": "Alfa", # No idea why this is not just 'Alpha' ..
- "B": "Bravo",
- "C": "Charlie",
- "D": "Delta",
- "E": "Echo",
- "F": "Foxtrot",
- "G": "Golf",
- "H": "Hotel",
- "I": "India",
- "J": "Juliett",
- "K": "Kilo",
- "L": "Lima",
- "M": "Mike",
- "N": "November",
- "O": "Oscar",
- "P": "Papa",
- "Q": "Quebec",
- "R": "Romeo",
- "S": "Sierra",
- "T": "Tango",
- "U": "Uniform",
- "V": "Victor",
- "W": "Whiskey",
- "X": "X-ray",
- "Y": "Yankee",
- "Z": "Zulu",
- "0": "Nadazero",
- "1": "Unaone",
- "2": "Bissotwo",
- "3": "Terrathree",
- "4": "Kartefour",
- "5": "Pantafive",
- "6": "Soxisix",
- "7": "Setteseven",
- "8": "Oktoeight",
- "9": "Novenine",
- ",": "Comma",
- "/": "Forward slash",
- ".": "Stop/Decimal",
- },
- "german": {
- "A": "Aachen",
- "Ä": "Umlaut Aachen",
- "B": "Berlin",
- "C": "Chemnitz",
- "D": "Düsseldorf",
- "E": "Essen",
- "F": "Frankfurt",
- "G": "Goslar",
- "H": "Hamburg",
- "I": "Ingelheim",
- "J": "Jena",
- "K": "Köln",
- "L": "Leipzig",
- "M": "München",
- "N": "Nürnberg",
- "O": "Offenbach",
- "Ö": "Umlaut Offenbach",
- "P": "Potsdam",
- "Q": "Quickborn",
- "R": "Rostock",
- "S": "Salzwedel",
- "ẞ": "Eszett",
- "T": "Tübingen",
- "U": "Unna",
- "Ü": "Umlaut Unna",
- "V": "Völklingen",
- "W": "Wuppertal",
- "X": "Xanten",
- "Y": "Ypsilon",
- "Z": "Zwickau",
- },
-}
-
-
-def str_to_telephony(phrase, language):
- language_alphabet = alphabet[language]
-
- return [
- language_alphabet[c] if c in language_alphabet else c for c in phrase.upper()
- ]
-
-
-language = sys.argv[1]
-if language not in ["nato", "german"]:
- print(
- f"Langugae '{language}' is not a valid language, only 'nato' and 'german' are!",
- file=sys.stderr,
- )
- exit(1)
-
-print(
- "\n".join(
- str_to_telephony(
- " ".join(sys.argv[2:]),
- language,
- )
- )
-)
diff --git a/hm/soispha/pkgs/scripts/small_functions/screenshot_persistent.sh b/hm/soispha/pkgs/scripts/small_functions/screenshot_persistent.sh
deleted file mode 100755
index 5992e02f..00000000
--- a/hm/soispha/pkgs/scripts/small_functions/screenshot_persistent.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/env dash
-
-# shellcheck source=/dev/null
-SHELL_LIBRARY_VERSION="2.0.13" . %SHELL_LIBRARY_PATH
-
-# only generate a path (this could lead to a time-of-check/time-of-use bug)
-tmp="$(mktmp --dry-run)"
-
-if grim -g "$(slurp)" "$tmp"; then
- name="$(rofi -dmenu -p "Name of screenshot: " -l 0)"
- screen_shot_path="$HOME/media/pictures/screenshots/$name.png"
- while [ -f "$screen_shot_path" ]; do
- notify-send "Warning" 'Screenshot name already in use!'
- name="$(rofi -dmenu -p "New name of screenshot: " -l 0)"
- screen_shot_path="$HOME/media/pictures/screenshots/$name.png"
- done
-
- mv "$tmp" "$screen_shot_path"
- alacritty -e lf -command ":{{ set sortby atime; set reverse!; }}"
-fi
-
-# vim: ft=sh
diff --git a/hm/soispha/pkgs/scripts/small_functions/screenshot_temporary.sh b/hm/soispha/pkgs/scripts/small_functions/screenshot_temporary.sh
deleted file mode 100755
index e411340d..00000000
--- a/hm/soispha/pkgs/scripts/small_functions/screenshot_temporary.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#! /usr/bin/env dash
-
-# shellcheck source=/dev/null
-SHELL_LIBRARY_VERSION="2.0.13" . %SHELL_LIBRARY_PATH
-
-grim -g "$(slurp)" | wl-copy
-
-# vim: ft=sh
diff --git a/hm/soispha/pkgs/scripts/small_functions/update-sys.sh b/hm/soispha/pkgs/scripts/small_functions/update-sys.sh
deleted file mode 100755
index 68fb342d..00000000
--- a/hm/soispha/pkgs/scripts/small_functions/update-sys.sh
+++ /dev/null
@@ -1,77 +0,0 @@
-#!/usr/bin/env dash
-
-# shellcheck source=/dev/null
-SHELL_LIBRARY_VERSION="2.0.13" . %SHELL_LIBRARY_PATH
-
-help() {
- cat <<EOF
-This is a NixOS System flake update manager.
-
-Usage:
- $NAME [--branch <branchname>] [--help]
-
-Options:
- --branch | -b BRANCHNAME
- select a branch to update from.
- --mode | -m MODE
- select a mode to update with
- --help | -h
- output this help.
-EOF
- exit "$1"
-}
-default_branch=$(mktmp)
-BRANCH=""
-
-while [ "$#" -gt 0 ]; do
- case "$1" in
- "--help" | "-h")
- help 0
- ;;
- "--branch" | "-b")
- if [ -n "$2" ]; then
- BRANCH="$2"
- else
- error "$1 requires an argument"
- help 1
- fi
- shift 2
- ;;
- "--mode" | "-m")
- if [ -n "$2" ]; then
- MODE="$2"
- else
- error "$1 requires an argument"
- help 1
- fi
- shift 2
- ;;
- *)
- error "the option $1 does not exist!"
- help 1
- ;;
- esac
-done
-
-cd /etc/nixos || die "No /etc/nixos"
-msg "Starting system update..."
-git remote update origin --prune >/dev/null 2>&1
-if ! [ "$BRANCH" = "" ]; then
- git switch "$BRANCH" >/dev/null 2>&1 && msg2 "Switched to branch '$BRANCH'"
-fi
-msg2 "Updating git repository..."
-git pull --rebase
-
-git remote show origin | grep 'HEAD' | cut -d':' -f2 | sed -e 's/^ *//g' -e 's/ *$//g' >"$default_branch" &
-
-msg2 "Updating system..."
-if [ -n "$MODE" ]; then
- nixos-rebuild "$MODE"
-else
- nixos-rebuild switch
-fi
-
-git switch "$(cat "$default_branch")" >/dev/null 2>&1 && msg2 "Switched to branch '$(cat "$default_branch")'"
-msg "Finished Update!"
-
-# vim: ft=sh