From 3039e12a72cd269c21d4d3d0ce667a2355cb8572 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 24 Mar 2025 07:49:08 +0100
Subject: [PATCH] Reorganize.

---
 testing/home/all/.bashrc                                        | 2 +-
 .../plomlib.file_dot_variants => .plomlib.sh/file_dot_variants} | 0
 testing/home/all/.profile                                       | 2 +-
 testing/home/desktop/.local/bin/borgplom                        | 2 +-
 testing/home/desktop/.local/bin/vol                             | 2 +-
 .../plomlib.audio_dev_is_mute => .plomlib.sh/audio_dev_is_mute} | 0
 .../plomlib.get_passphrase => .plomlib.sh/get_passphrase}       | 0
 testing/home/t490s/.nonpath_bins/status.sh                      | 2 +-
 testing/scripts/setup_secrets.sh                                | 2 +-
 9 files changed, 6 insertions(+), 6 deletions(-)
 rename testing/home/all/{.nonpath_bins/plomlib.file_dot_variants => .plomlib.sh/file_dot_variants} (100%)
 rename testing/home/desktop/{.nonpath_bins/plomlib.audio_dev_is_mute => .plomlib.sh/audio_dev_is_mute} (100%)
 rename testing/home/desktop/{.nonpath_bins/plomlib.get_passphrase => .plomlib.sh/get_passphrase} (100%)

diff --git a/testing/home/all/.bashrc b/testing/home/all/.bashrc
index 115837e..636c408 100644
--- a/testing/home/all/.bashrc
+++ b/testing/home/all/.bashrc
@@ -25,5 +25,5 @@ PS3="${tput_color}select: ${tput_reset}"
 PS4="${tput_color}+ ${tput_reset}"
 
 # include others
-. "${HOME}/.nonpath_bins/plomlib.file_dot_variants"
+. "${HOME}/.plomlib.sh/file_dot_variants"
 file_dot_variants "${HOME}/\.bashrc"
diff --git a/testing/home/all/.nonpath_bins/plomlib.file_dot_variants b/testing/home/all/.plomlib.sh/file_dot_variants
similarity index 100%
rename from testing/home/all/.nonpath_bins/plomlib.file_dot_variants
rename to testing/home/all/.plomlib.sh/file_dot_variants
diff --git a/testing/home/all/.profile b/testing/home/all/.profile
index 02e3771..13fa422 100644
--- a/testing/home/all/.profile
+++ b/testing/home/all/.profile
@@ -16,5 +16,5 @@ PATH_LOCAL_BIN="${HOME}/.local/bin"
 export PATH
 
 # include others
-. "${HOME}/.nonpath_bins/plomlib.file_dot_variants"
+. "${HOME}/.plomlib.sh/file_dot_variants"
 file_dot_variants "${HOME}/\.profile"
diff --git a/testing/home/desktop/.local/bin/borgplom b/testing/home/desktop/.local/bin/borgplom
index d9511b4..477ecf6 100755
--- a/testing/home/desktop/.local/bin/borgplom
+++ b/testing/home/desktop/.local/bin/borgplom
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -e
 
-. "${HOME}/.nonpath_bins/plomlib.get_passphrase"
+. "${HOME}/.plomlib.sh/get_passphrase"
 
 PATH_BORGKEYS="${HOME}/.config/borg/keys"
 NAME_REPO=borg
diff --git a/testing/home/desktop/.local/bin/vol b/testing/home/desktop/.local/bin/vol
index cf49262..bae15e4 100755
--- a/testing/home/desktop/.local/bin/vol
+++ b/testing/home/desktop/.local/bin/vol
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -e
 
-. "${HOME}/.nonpath_bins/plomlib.audio_dev_is_mute"
+. "${HOME}/.plomlib.sh/audio_dev_is_mute"
 
 MAX_LOUDNESS=150
 
diff --git a/testing/home/desktop/.nonpath_bins/plomlib.audio_dev_is_mute b/testing/home/desktop/.plomlib.sh/audio_dev_is_mute
similarity index 100%
rename from testing/home/desktop/.nonpath_bins/plomlib.audio_dev_is_mute
rename to testing/home/desktop/.plomlib.sh/audio_dev_is_mute
diff --git a/testing/home/desktop/.nonpath_bins/plomlib.get_passphrase b/testing/home/desktop/.plomlib.sh/get_passphrase
similarity index 100%
rename from testing/home/desktop/.nonpath_bins/plomlib.get_passphrase
rename to testing/home/desktop/.plomlib.sh/get_passphrase
diff --git a/testing/home/t490s/.nonpath_bins/status.sh b/testing/home/t490s/.nonpath_bins/status.sh
index 9794d2e..379ef4a 100755
--- a/testing/home/t490s/.nonpath_bins/status.sh
+++ b/testing/home/t490s/.nonpath_bins/status.sh
@@ -2,7 +2,7 @@
 # see sway-bar(5) and swaybar-protocol(7)
 set -e
 
-. "${HOME}/.nonpath_bins/plomlib.audio_dev_is_mute"
+. "${HOME}/.plomlib.sh/audio_dev_is_mute"
 
 SYSCLASS_DIR=/sys/class
 
diff --git a/testing/scripts/setup_secrets.sh b/testing/scripts/setup_secrets.sh
index 6135927..224ac7e 100755
--- a/testing/scripts/setup_secrets.sh
+++ b/testing/scripts/setup_secrets.sh
@@ -14,7 +14,7 @@ cd $(dirname "$0")
 # - PATH_USER_HOME
 # - USERNAME
 
-. "${PATH_USER_HOME}/.nonpath_bins/plomlib.get_passphrase"
+. "${PATH_USER_HOME}/.plomlib.sh/get_passphrase"
 
 PATH_REL_SECRETS=to_usb
 export PATH_SECRETS="${PATH_USER_HOME}/${PATH_REL_SECRETS}"
-- 
2.30.2