Regenerated

This commit is contained in:
2026-04-28 13:10:57 +02:00
parent e89e3b322f
commit d6a077b2ea
4 changed files with 440 additions and 381 deletions
+406 -381
View File
File diff suppressed because it is too large Load Diff
+18
View File
@@ -105,6 +105,7 @@ nextcloud-talk-desktop
nix-index nix-index
nix-output-monitor nix-output-monitor
nh nh
numlockx
obsidian obsidian
openssl openssl
pandoc pandoc
@@ -3864,7 +3865,24 @@ jq -c -n \
--arg class "$player" \ --arg class "$player" \
--arg art "$art" \ --arg art "$art" \
'{text: $text, tooltip: $tooltip, class: $class, alt: $art}' '{text: $text, tooltip: $tooltip, class: $class, alt: $art}'
#+END_SRC
** =generated/.config/scripts/numlock-check.sh=
Count keyboards and enable numlock if more then 1, else disable
#+BEGIN_SRC sh :tangle generated/.config/scripts/numlock-check.sh :shebang "#!/usr/bin/env bash" :noweb yes :mkdirp yes :eval never
# Tel toetsenborden met volledige toetsset (geen media-only apparaten)
COUNT=$(libinput list-devices 2>/dev/null \
| grep -A5 "Keyboard" \
| grep -c "kbd")
# Of via xinput / /proc alternatief:
# COUNT=$(cat /proc/bus/input/devices | grep -B5 'KEY=.*[a-f0-9]\{10\}' | grep -c 'Name=')
if [ "$COUNT" -ge 2 ]; then
numlockx on
else
numlockx off
fi
#+END_SRC #+END_SRC
** =generated/.config/scripts/power.sh= ** =generated/.config/scripts/power.sh=
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
# Tel toetsenborden met volledige toetsset (geen media-only apparaten)
COUNT=$(libinput list-devices 2>/dev/null \
| grep -A5 "Keyboard" \
| grep -c "kbd")
# Of via xinput / /proc alternatief:
# COUNT=$(cat /proc/bus/input/devices | grep -B5 'KEY=.*[a-f0-9]\{10\}' | grep -c 'Name=')
if [ "$COUNT" -ge 2 ]; then
numlockx on
else
numlockx off
fi
@@ -35,6 +35,7 @@ nextcloud-talk-desktop
nix-index nix-index
nix-output-monitor nix-output-monitor
nh nh
numlockx
obsidian obsidian
openssl openssl
pandoc pandoc