Compare commits

...

2 commits

Author SHA1 Message Date
9616c5cce7 home: wm: i3: simplify 'htop' rule
All checks were successful
continuous-integration/drone/push Build is passing
Turns out you can chain commands with `,` in a `for_window` statement.

Of course this is inconsistent with `bindsym` which uses `;`...
2022-05-03 10:01:42 +02:00
c54bbbfbec modules: hardware: bluetooth: remove wireplumber
This configuration file completely breaks my sound setup.

Will investigate more at a later time, in the mean time, since this is
basically the default options, I will just remove the configuration
file.

This reverts commit c987206bc5.
2022-05-02 11:18:23 +02:00
2 changed files with 1 additions and 20 deletions

View file

@ -376,11 +376,7 @@ in
# Make htop window bigger
{
criteria = { title = "^htop$"; };
command = "resize set 80 ppt 80 ppt";
}
{
criteria = { title = "^htop$"; };
command = "move position center";
command = "resize set 80 ppt 80 ppt, move position center";
}
];
};

View file

@ -25,21 +25,6 @@ in
package = pkgs.pulseaudioFull;
};
# FIXME: waiting for NixOS module configuration
environment.etc = {
"wireplumber/bluetooth.lua.d/50-bluez-config.lua".text = ''
bluez_monitor.properties = {
["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
-- mSBC provides better audio + microphone
["bluez5.enable-msbc"] = true,
-- SBC XQ provides better audio
["bluez5.enable-sbc-xq"] = true,
-- Hardware volume control
["bluez5.enable-hw-volume"] = true,
}
'';
};
services.pipewire = {
media-session.config.bluez-monitor.rules = [
{