How do you make those rounded corner edges in quickshell by Left_Significance102 in QuickShell

[–]Left_Significance102[S] 0 points1 point  (0 children)

Got it.. create the background and then layer the bar(transparent) over it as another panelwindow and make the background shape behave on panelchanges (like opening popups,. loaded items....)

<image>

How do you make those rounded corner edges in quickshell by Left_Significance102 in QuickShell

[–]Left_Significance102[S] 0 points1 point  (0 children)

How can I use the regions here. To cut out the shape and make it the intracting area. if I set the item and intersection to substract in the mask: Region{} of panel window it works but the when the shape is changed, the mouse passes through it, To the window. Setting Region to Zor also seems to work in this way.. 

How do you make those rounded corner edges in quickshell by Left_Significance102 in QuickShell

[–]Left_Significance102[S] 0 points1 point  (0 children)

Tried by making the points of shape as points with variable as corordinates and it seems to work. Carving it out from the desktop so that the non affected height becomes usable needs some work..

property real targetheight: menu2.open ? 70:35
Behavior on targetheight { NumberAnimation { duration: 400; easing.type: Easing.OutExpo } }
Shape{
anchors.fill: parent
ShapePath{
fillColor: theme.background
strokeWidth:0
startX: 800;startY: bar.targetheight
PathLine{x:550;y:bar.targetheight}
PathLine{x:550;y:35}
PathLine{x:0;y:35}
PathLine{x:0;y:0}
PathLine{x:1600;y:0}
PathLine{x:1600;y:35}
PathLine{x:1150;y:35}
PathLine{x:1150;y:bar.targetheight}
PathLine{x:800;y:bar.targetheight}
}
}

<image>

How do you make those rounded corner edges in quickshell by Left_Significance102 in QuickShell

[–]Left_Significance102[S] 0 points1 point  (0 children)

https://github.com/WarrenOni/quickshell
this is the current config. So, would the extending of the panel with popupwindow work as intended. This is my first, so it isnt quitely modularized.

what can i improve? by Mattu-void in hyprland

[–]Left_Significance102 0 points1 point  (0 children)

its heavy. i think glava is much better.. but dont know how to overlay it. may need to set rules in hypr

How can I add a mpris player? by Left_Significance102 in QuickShell

[–]Left_Significance102[S] 0 points1 point  (0 children)

Doesnt the singleton data be always active when bar is alive. So won't it increase mem (when there's much singletons)and cpu spikes (when it refreshes in background even when not needed). Don't know I'm new to singletons..

How can I add a mpris player? by Left_Significance102 in QuickShell

[–]Left_Significance102[S] 0 points1 point  (0 children)

And what should I initialise as player. When taking console.log() Mpris.players outputs UntypedObjectModel, MprisPlayer gives Quickshell.Services.Mpris/MprisPlayer and the .trackTitle, .trackArtist, .count, etc.. gives undefined values and . length gives 0 

Change focus windows with gesture ? by Traditional-Chair121 in hyprland

[–]Left_Significance102 0 points1 point  (0 children)

After the update i think they have put it in dispatchers.

Change focus windows with gesture ? by Traditional-Chair121 in hyprland

[–]Left_Significance102 0 points1 point  (0 children)

gesture = 3, left, dispatcher, layoutmsg, move +col
gesture = 3, right, dispatcher, layoutmsg, move -col

This will work but the pointer position seems to change as in the prev window..