From cc0b41031a437b1607267ac04d7c510943166778 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 18 Jun 2023 02:52:08 -0400 Subject: [PATCH] Float bluetooth manager --- home-manager/linux/programs/hyprland.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/home-manager/linux/programs/hyprland.nix b/home-manager/linux/programs/hyprland.nix index c0b3e23..06bcb62 100644 --- a/home-manager/linux/programs/hyprland.nix +++ b/home-manager/linux/programs/hyprland.nix @@ -211,11 +211,17 @@ in with lib; { bind = $mainMod, W, exec, ${shortcuts}/bin/shortcuts ~/.config/shortcuts/shortcuts.toml ## Window rules + + # Gamescope - vmware windowrulev2 = float,class:^(.gamescope-wrapped)$,title:VMware Workstation windowrulev2 = noborder,class:^(.gamescope-wrapped)$,title:VMware Workstation windowrulev2 = rounding 0,class:^(.gamescope-wrapped)$,title:VMware Workstation + # Bluetooth manager + windowrulev2 = float,class:^(.blueman-manager-wrapped)$ + windowrulev2 = center,class:^(.blueman-manager-wrapped)$ + ## Scratchpads # Alacritty @@ -363,9 +369,7 @@ in with lib; { onChange = "systemctl --user restart pypr"; }; # Bluetooth applet - systemd.user.services.blueman-applet = { - Install = { WantedBy = [ "hyprland-session.target" ]; }; - }; + services.blueman-applet.enable = true; ######################### ## SwayNotificationCenter (notifications) #########################