diff --git a/config/aurora/modules/Bar.qml b/config/aurora/modules/Bar.qml index 88cd289..a14d8ef 100644 --- a/config/aurora/modules/Bar.qml +++ b/config/aurora/modules/Bar.qml @@ -10,11 +10,7 @@ import Quickshell.Hyprland PanelWindow { - property real radius: 20 - - onClosed: { - Hyprland.dispatch("exec hyprctl keyword monitor eDP-1,addreserved,0,100,0,0") - } + property real radius: 10 anchors { top: true @@ -27,7 +23,7 @@ PanelWindow { Component.onCompleted: { //Hyprland.dispatch("exec hyprctl keyword monitor eDP-1,addreserved," + topRect.height + "," + botRect.height + "," + leftRect.width + "," + rightRect.width) - Hyprland.dispatch("exec hyprctl keyword monitor eDP-1,addreserved," + topEx + "," + botEx + "," + leftEx + "," + rightEx) + Hyprland.dispatch("exec hyprctl keyword monitor eDP-1,addreserved," + (midFO.visible ? midFO.y + midFO.height : topEx) + "," + botEx + "," + leftEx + "," + rightEx) } @@ -76,6 +72,7 @@ PanelWindow { onEntered: { midFO.set = !midFO.set midFO.visible = Qt.binding(() => midFO.set) + Hyprland.dispatch("exec hyprctl keyword monitor eDP-1,addreserved," + (midFO.visible ? midFO.y + midFO.height : topEx) + "," + botEx + "," + leftEx + "," + rightEx) } //onEntered: midFO.visible = true } diff --git a/config/aurora/modules/VFlyout.qml b/config/aurora/modules/VFlyout.qml index ea9f0dd..cc6cb3e 100644 --- a/config/aurora/modules/VFlyout.qml +++ b/config/aurora/modules/VFlyout.qml @@ -7,8 +7,8 @@ import Quickshell.Widgets MouseArea { id: root - property real radius: 15 - property real pad: 10 + property real radius: 10 + property real pad: 5 property color color property Item item diff --git a/nix/homeManagerModule.nix b/nix/homeManagerModule.nix index 1fb1d14..f507794 100644 --- a/nix/homeManagerModule.nix +++ b/nix/homeManagerModule.nix @@ -39,6 +39,7 @@ activeConfig = "aurora"; configs = { + default = "${self.packages.${system}.aurora-dots}/share"; aurora = "${self.packages.${system}.aurora-dots}/share"; hybar = "${self.packages.${system}.hybar-dots}/share"; };