dotfiles
1

Configure Feed

Select the types of activity you want to include in your feed.

Add audio device shortcuts for x1c6

Juan Nunez-Iglesias (Jun 26, 2026, 7:59 PM +0200) 166f1caf 5dad2947

+11
+6
bash/bashrc
··· 145 145 146 146 # rename keyd.raiya to keyd if it's present 147 147 command -v keyd &>/dev/null || command -v keyd.rvaiya &>/dev/null && alias keyd='keyd.rvaiya' 148 + 149 + 150 + if [ "$(hostname)" = "sturdy" ]; then 151 + alias audio-tv='pactl set-card-profile alsa_card.pci-0000_00_1f.3 output:hdmi-stereo+input:analog-stereo' 152 + alias audio-speakers='pactl set-card-profile alsa_card.pci-0000_00_1f.3 output:analog-stereo+input:analog-stereo' 153 + fi
+5
fish/config.fish
··· 33 33 starship init fish | source 34 34 35 35 command -q keyd; or command -q keyd.rvaiya; and alias keyd 'keyd.rvaiya' 36 + 37 + if test (hostname) = "sturdy" 38 + alias audio-tv='pactl set-card-profile alsa_card.pci-0000_00_1f.3 output:hdmi-stereo+input:analog-stereo' 39 + alias audio-speakers='pactl set-card-profile alsa_card.pci-0000_00_1f.3 output:analog-stereo+input:analog-stereo' 40 + end