Aylur / ags

A customizable and extensible shell
GNU General Public License v3.0
1.74k stars 95 forks source link

Fix inverted circular progress #423

Closed sungyoonc closed 1 week ago

sungyoonc commented 1 month ago

Fixes #428 Fix inverted circular progress' start and end position calculation Fix circular progress' rounded edge for inverted Add rounded edge for background ring

I wanted to make the inverted progress start at the top (0.75), but it didn't work.

Widget.CircularProgress({
    css: "background-color: green; color: white",
    start_at: 0.75,
    end_at: 0.75,
    value: 0.3,
    rounded: true,
    inverted: true,
});