Compare commits

...

5 commits

Author SHA1 Message Date
16e3268524 add pactl output alias 2025-07-16 17:52:29 +02:00
540eda8a14 add tldr alias 2025-07-16 17:52:05 +02:00
7c19fa5ff0 update btop config version 2025-07-15 15:31:56 +02:00
a6ea2145f8 add keybinds and kdeconnect 2025-07-15 15:30:40 +02:00
f46749b320 fix fingerprint msg on lockscreen 2025-07-15 15:29:41 +02:00
4 changed files with 8 additions and 4 deletions

View file

@ -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.

View file

@ -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

View file

@ -81,7 +81,7 @@ label {
label {
monitor =
text = $FPRINTMESSAGE
text = $FPRINTPROMPT
text_align = center
color = rgb(CCCCFF)
font_size = 15

2
.zshrc
View file

@ -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="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'