Regenerated

This commit is contained in:
2026-04-29 22:35:22 +02:00
parent c7aa148a67
commit 5d98c8f325
16 changed files with 429 additions and 716 deletions
+15 -63
View File
@@ -98,6 +98,7 @@ handbrake
hyperfine
just
jq
libinput
libreoffice
lua
nextcloud-client
@@ -315,8 +316,8 @@ in
{
home-manager.users.${username} = {
home.file = {
".config/shared/colors.css" = {
source = "${flakeRoot}/generated/.config/shared/colors.css";
".config/shared/css/colors.css" = {
source = "${flakeRoot}/generated/.config/shared/css/colors.css";
force = true;
};
".config/quickshell/Colors.qml" = {
@@ -2743,8 +2744,7 @@ These are config files for .config/hypr
#+BEGIN_SRC conf :tangle generated/.config/hypr/behaviour.conf :noweb yes :exports code :wrap nil :mkdirp yes :eval never
# Keyboard and mouse settings
input {
numlock_by_default = true
touchpad {
touchpad {
natural_scroll = true
tap-to-click = true
drag_lock = true
@@ -2914,7 +2914,7 @@ bind = , XF86Calculator, exec, gnome-calculator
#########################
# System stuff
#########################
# bind = $mainMod, U, exec, kitty --class update-term -e bash -lc "~/.config/system/scripts/update.sh; exec bash"
# bind = $mainMod, U, exec, kitty --class update-term -e bash -lc "~/.config/shared/scripts/update.sh; exec bash"
bind = $mainMod, U, exec, qs -c updater
#+END_SRC
@@ -4228,9 +4228,9 @@ jq -c -n \
'{text: $text, tooltip: $tooltip, class: $class, alt: $art}'
#+END_SRC
** =generated/.config/system/scripts/numlock-check.sh=
** =generated/.config/shared/scripts/numlock-check.sh=
Count keyboards and enable numlock if more then 1, else disable
#+BEGIN_SRC sh :tangle generated/.config/system/scripts/numlock-check.sh :shebang "#!/usr/bin/env bash" :noweb yes :mkdirp yes :eval never
#+BEGIN_SRC sh :tangle generated/.config/shared/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" \
@@ -4241,60 +4241,12 @@ COUNT=$(libinput list-devices 2>/dev/null \
if [ "$COUNT" -ge 2 ]; then
numlockx on
echo $COUNT : On
else
numlockx off
fi
#+END_SRC
** =generated/.config/system/scripts/power.sh=
Enables a terminal power menu
#+BEGIN_SRC sh :tangle generated/.config/system/scripts/power.sh :shebang "#!/usr/bin/env bash" :noweb yes :mkdirp yes :eval never
#
# Launch a power menu
#
# Requires fzf and systemd (loginctl, systemctl)
#
# Author: Jesse Mirabel <sejjymvm@gmail.com>
# Date: August 19, 2025
# License: MIT
main() {
local list=(
"󰌾 Lock"
"󰐥 Shutdown"
"󰑙 Reboot"
"󰍃 Logout"
"󰒲 Hibernate"
"󰤄 Suspend"
)
local options=(
"--border=sharp"
"--border-label= Power Menu "
"--cycle"
"--ghost=Search"
"--height=~100%"
"--highlight-line"
"--info=inline-right"
"--pointer="
"--reverse"
)
local selected
selected=$(printf "%s\n" "${list[@]}" | fzf "${options[@]}")
case $selected in
Lock) loginctl lock-session ;;
Shutdown) systemctl poweroff ;;
Reboot) systemctl reboot ;;
Logout) loginctl terminate-session "$XDG_SESSION_ID" ;;
Hibernate) systemctl hibernate ;;
Suspend) systemctl suspend ;;
*) return 1 ;;
esac
}
main
echo $COUNT
echo libinput list-devices
#+END_SRC
** =generated/.config/wofi/scripts/wofi-launcher.sh=
@@ -4308,9 +4260,9 @@ wofi --show drun \
--prompt "Apps ..."
#+END_SRC
** =generated/.config/shared/colors.css=
** =generated/.config/shared/css/colors.css=
A file containing color variables
#+BEGIN_SRC css :tangle generated/.config/shared/colors.css :noweb yes :mkdirp yes :eval never
#+BEGIN_SRC css :tangle generated/.config/shared/css/colors.css :noweb yes :mkdirp yes :eval never
/* Catppuccin Mocha Palette */
@define-color border #96cdd2;
@define-color crust #11111b;
@@ -4820,7 +4772,7 @@ These are config files for waybar
** =generated/.config/swaync/style.css=
These are config files for waybar
#+BEGIN_SRC css :tangle generated/.config/swaync/style.css :noweb yes :mkdirp yes :eval never
@import url("/home/henrov/.config/shared/colors.css");
@import url("/home/henrov/.config/shared/css/colors.css");
* {
all: unset;
@@ -5342,7 +5294,7 @@ These are config files for waybar
** =generated/.config/waybar/style-dark.css=
This file contains all css for waybar
#+BEGIN_SRC css :tangle generated/.config/waybar/style-dark.css :noweb yes :mkdirp yes :eval never
@import url("file:///home/henrov/.config/shared/colors.css");
@import url("file:///home/henrov/.config/shared/css/colors.css");
/* --- Global --- */
* {
@@ -5783,7 +5735,7 @@ prompt = > ...
** =generated/.config/wofi/style.css=
This is the default layout for wofi
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
@import "~/.config/shared/colors.css";
@import "~/.config/shared/css/colors.css";
* {
background-color: transparent;