From f46749b320b7d0ade3b03976d17bfd48d40f30ee Mon Sep 17 00:00:00 2001 From: Yannick Date: Tue, 15 Jul 2025 15:29:41 +0200 Subject: [PATCH 1/5] fix fingerprint msg on lockscreen --- .config/hypr/hyprlock.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/hypr/hyprlock.conf b/.config/hypr/hyprlock.conf index a45264e..862d9b6 100644 --- a/.config/hypr/hyprlock.conf +++ b/.config/hypr/hyprlock.conf @@ -81,7 +81,7 @@ label { label { monitor = - text = $FPRINTMESSAGE + text = $FPRINTPROMPT text_align = center color = rgb(CCCCFF) font_size = 15 From a6ea2145f855286b9e26c7215efa1029082fa8b0 Mon Sep 17 00:00:00 2001 From: Yannick Date: Tue, 15 Jul 2025 15:30:40 +0200 Subject: [PATCH 2/5] add keybinds and kdeconnect --- .config/hypr/hyprland.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 4c0b06e..85ed193 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -55,6 +55,7 @@ exec-once = hypridle exec-once = flatpak run io.github.diegopvlk.Dosage --startup exec-once = pactl set-sink-mute @DEFAULT_SINK@ 1 exec-once = gentoo-pipewire-launcher restart +exec-once = kdeconnectd exec-once = dbus-daemon --session --address=unix:path=$XDG_RUNTIME_DIR/bus # Only required on open-rc systems with specific login / session managers exec-once =[workspace 4 silent] youtube-music @@ -228,7 +229,8 @@ bind = $mainMod, W, exec, distrobox enter arch -- youtube-music # bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, N, togglesplit, bind = $mainMod, code:36 , focusurgentorlast # Code 36 => Enter -bind = $mainMod SHIFT, S, exec, $screenshot -m region -o ~/Pictures/hyprshot +bind = $mainMod, S, exec, $screenshot -m region -o ~/Pictures/hyprshot +bind = $mainMod SHIFT, S, exec, $screenshot -m window -o ~/Pictures/hyprshot bind = $mainMod SHIFT, C, exec, hyprpicker -a -f hex bind = $mainMod, code:105, exec, hyprlock bind = , F11, fullscreen, 1 From 7c19fa5ff0234858ede8b8d7dddb7b92f54513b9 Mon Sep 17 00:00:00 2001 From: Yannick Date: Tue, 15 Jul 2025 15:31:29 +0200 Subject: [PATCH 3/5] update btop config version --- .config/btop/btop.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/btop/btop.conf b/.config/btop/btop.conf index 797c70f..b46298b 100644 --- a/.config/btop/btop.conf +++ b/.config/btop/btop.conf @@ -1,4 +1,4 @@ -#? Config file for btop v. 1.4.3 +#? Config file for btop v. 1.4.4 #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. #* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" @@ -150,7 +150,7 @@ background_update = True custom_cpu_name = "" #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". -#* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user". +#* Only disks matching the filter will be shown. Prepend exclude= to only show disks not matching the filter. Examples: disk_filter="/boot /home/user", disks_filter="exclude=/boot /home/user" disks_filter = "" #* Show graphs instead of meters for memory values. From 540eda8a143d97e5043e82d655d313f4aab68d86 Mon Sep 17 00:00:00 2001 From: Yannick Date: Wed, 16 Jul 2025 17:52:05 +0200 Subject: [PATCH 4/5] add tldr alias --- .zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.zshrc b/.zshrc index 27e519d..d995fbe 100644 --- a/.zshrc +++ b/.zshrc @@ -113,9 +113,11 @@ alias dcd="docker compose down" alias dcu='UID="$(id -u)" GID="$(id -g)" docker compose up' alias dcud='UID="$(id -u)" GID="$(id -g)" docker compose up -d' alias dbounce='docker compose down && dcud' +alias tldr='tldr -L en' alias needssh="git remote set-url origin \$(git remote get-url origin | sed -e 's|https://github.com/|git@github.com:|' -e 's|/$||' -e 's|\.git$||')" alias icat="kitten icat --background white" alias marptohtml="npx @marp-team/marp-cli@latest --html --theme-set themes/mytheme.css - template.md -o index.html" +alias output-on-all-devices="" alias fs="sudo rc-service filesync" alias fs-sync='kill -SIGHUP "$(cat /run/filesync.pid)"' alias fs-sync-offline='rclone bisync filesync:/files ~/.offline_filesync --conflict-resolve newer --conflict-loser num --timeout 2s --filter-from ~/.offline_filesync/.important-files.txt 2>&1 | grep conflict | grep home | sed -n "s/.*\x1b\[36m\([^[:cntrl:]]*\)\x1b\[0m.*/\1/p" | while read -r conflict; do notify-send "Conflict at $conflict"; echo "Conflict at $conflict" >> ~/.offline_filesync/.conflict_log.txt; done' From 16e3268524f326a0c6b5d28a7f4222fa6d018033 Mon Sep 17 00:00:00 2001 From: Yannick Date: Wed, 16 Jul 2025 17:52:29 +0200 Subject: [PATCH 5/5] add pactl output alias --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index d995fbe..8d9ff0d 100644 --- a/.zshrc +++ b/.zshrc @@ -117,7 +117,7 @@ alias tldr='tldr -L en' alias needssh="git remote set-url origin \$(git remote get-url origin | sed -e 's|https://github.com/|git@github.com:|' -e 's|/$||' -e 's|\.git$||')" alias icat="kitten icat --background white" alias marptohtml="npx @marp-team/marp-cli@latest --html --theme-set themes/mytheme.css - template.md -o index.html" -alias output-on-all-devices="" +alias output-on-all-devices="pactl load-module module-combine-sink" alias fs="sudo rc-service filesync" alias fs-sync='kill -SIGHUP "$(cat /run/filesync.pid)"' alias fs-sync-offline='rclone bisync filesync:/files ~/.offline_filesync --conflict-resolve newer --conflict-loser num --timeout 2s --filter-from ~/.offline_filesync/.important-files.txt 2>&1 | grep conflict | grep home | sed -n "s/.*\x1b\[36m\([^[:cntrl:]]*\)\x1b\[0m.*/\1/p" | while read -r conflict; do notify-send "Conflict at $conflict"; echo "Conflict at $conflict" >> ~/.offline_filesync/.conflict_log.txt; done'