pipewire stuff

This commit is contained in:
Franzi 2023-01-22 15:58:06 +01:00
parent fd005e4585
commit 0083bc65b7
Signed by: kunsi
GPG key ID: 12E3D2136B818350
6 changed files with 74 additions and 17 deletions

View file

@ -125,14 +125,14 @@ exec xsetroot -solid "#000000"
exec xss-lock -n /home/kunsi/.bin/notify.sh -- /home/kunsi/.bin/screenlock.sh exec xss-lock -n /home/kunsi/.bin/notify.sh -- /home/kunsi/.bin/screenlock.sh
exec xinput disable 'SynPS/2 Synaptics TouchPad' exec xinput disable 'SynPS/2 Synaptics TouchPad'
exec qpwgraph
bindsym XF86Favorites exec /home/kunsi/.bin/screenlock.sh bindsym XF86Favorites exec /home/kunsi/.bin/screenlock.sh
bindsym $mod+Prior exec pactl set-sink-volume @DEFAULT_SINK@ +2%; exec pactl set-sink-mute @DEFAULT_SINK@ 0 bindsym XF86AudioRaiseVolume exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%+; exec wpctl set-mute @DEFAULT_AUDIO_SINK@ 0
bindsym $mod+Next exec pactl set-sink-volume @DEFAULT_SINK@ -2%; exec pactl set-sink-mute @DEFAULT_SINK@ 0 bindsym XF86AudioLowerVolume exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%-; exec wpctl set-mute @DEFAULT_AUDIO_SINK@ 0
bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +2%; exec pactl set-sink-mute @DEFAULT_SINK@ 0 bindsym XF86AudioMute exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -2%; exec pactl set-sink-mute @DEFAULT_SINK@ 0 bindsym XF86AudioMicMute exec wpctl set-mute laptop-internal-microphone toggle
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
bindsym XF86AudioMicMute exec pactl set-source-mute alsa_input.pci-0000_07_00.6.HiFi__hw_acp__source toggle
bindsym XF86MonBrightnessUp exec sudo light -A 5 bindsym XF86MonBrightnessUp exec sudo light -A 5
bindsym XF86MonBrightnessDown exec sudo light -U 5 bindsym XF86MonBrightnessDown exec sudo light -U 5

View file

@ -1,19 +1,24 @@
from i3pystatus import Status from i3pystatus import Status
status = Status( status = Status(
logfile='/tmp/i3pystatus.log', logfile='/dev/stderr',
) )
status.register("pulseaudio", #status.register("pulseaudio",
format="♪I {volume}%", # format="♪I {volume}%",
format_muted="♪I -∞dB", # format_muted="♪I -∞dB",
step="2", # step="2",
sink="alsa_output.pci-0000_07_00.6.HiFi__hw_Generic_1__sink") # sink="alsa_output.pci-0000_07_00.6.HiFi__hw_Generic_1__sink")
status.register("pulseaudio", #status.register("pulseaudio",
format="♪D {volume}%", # format="♪D {volume}%",
format_muted="♪D -∞dB", # format_muted="♪D -∞dB",
step="2", # step="2",
sink="@DEFAULT_SINK@") # sink="@DEFAULT_SINK@")
status.register("shell",
format="♪D {output}",
command="wpctl get-volume @DEFAULT_AUDIO_SINK@ | cut -d: -f2",
interval=1)
status.register("shell", status.register("shell",
format="{output}", format="{output}",
hints = {"markup": "pango"}, hints = {"markup": "pango"},

View file

@ -0,0 +1,13 @@
rule = {
matches = {
{
{ "node.name", "equals", "bluez_output.38_18_4C_BF_65_26.1" },
},
},
apply_properties = {
["node.description"] = "WH-1000XM3 (Franzi)",
["node.nick"] = "bluetooth-WH-1000XM3",
},
}
table.insert(bluez_monitor.rules, rule)

View file

@ -0,0 +1,13 @@
rule = {
matches = {
{
{ "node.name", "equals", "alsa_input.pci-0000_07_00.6.HiFi__hw_Generic_1__source" },
},
},
apply_properties = {
["node.description"] = "Laptop Headphones Microphone",
["node.nick"] = "laptop-headphones-mic",
},
}
table.insert(alsa_monitor.rules, rule)

View file

@ -0,0 +1,13 @@
rule = {
matches = {
{
{ "node.name", "equals", "alsa_input.pci-0000_07_00.6.HiFi__hw_acp__source" },
},
},
apply_properties = {
["node.description"] = "Laptop internal Microphone",
["node.nick"] = "laptop-internal-mic",
},
}
table.insert(alsa_monitor.rules, rule)

View file

@ -0,0 +1,13 @@
rule = {
matches = {
{
{ "node.name", "equals", "alsa_output.pci-0000_07_00.6.HiFi__hw_Generic_1__sink" },
},
},
apply_properties = {
["node.description"] = "Laptop Speakers/Headphones",
["node.nick"] = "laptop-internal-out",
},
}
table.insert(alsa_monitor.rules, rule)