This commit is contained in:
2026-04-01 01:18:44 -04:00
parent 9971eb2d34
commit c13d082429
4 changed files with 16 additions and 3 deletions

View File

@@ -177,6 +177,7 @@ cat allPackages.txt | yay -S - --needed
- Gateway: `192.168.0.1`
- To inspect: `nmcli connection show`
- To reconfigure: `nmcli connection modify <connection> ipv4.addresses 192.168.0.99/24 ipv4.gateway 192.168.0.1 ipv4.method manual && nmcli connection up <connection>`
- WPS Writer needs `libtiff5` package for PDF export
---

View File

@@ -358,8 +358,8 @@ binds {
// Note: the entire command goes as a single argument in the end.
// Mod+T { spawn "bash" "-c" "notify-send hello && exec alacritty"; }
XF86AudioRaiseVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "6%+"; }
XF86AudioLowerVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "6%-"; }
XF86AudioRaiseVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "5%+" "-l" "1.2"; }
XF86AudioLowerVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "5%-" "-l" "1.2"; }
XF86AudioMute allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SINK@" "toggle"; }
XF86AudioMicMute allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SOURCE@" "toggle"; }
XF86AudioPlay allow-when-locked=true { spawn "playerctl" "play-pause"; }

View File

@@ -42,4 +42,17 @@ monitor.alsa.rules = [
}
}
}
# Prefer analog output on AMD Ryzen HD Audio as default sink
{
matches = [
{
node.name = "~alsa_output.pci.*analog.*"
}
]
actions = {
update-props = {
priority.session = 1500
}
}
}
]

View File

@@ -90,7 +90,6 @@ alias enable-nvidia='export __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAM
alias cal='cal -m'
alias bruh="echo 'bruh' | cowsay"
alias pecha="sleep 20 && echo \"KUCHA\""
alias intellij="exec $HOME/Applications/idea-IU-252.26830.84/bin/idea &"
# --- Aliases: bun ---
alias brd="bun run dev"