summaryrefslogtreecommitdiff
path: root/modules/osd/git@git.in.freya.cat:caelestia-shell (unfollow)
Commit message (Collapse)AuthorFilesLines
5 daysfix workspace indicator offsetFreya Murphy2-16/+8
5 daysmake color rendering better, wth was the orig doingFreya Murphy1-20/+7
5 daysmake colors work betterFreya Murphy1-20/+19
5 dayschange thingsFreya Murphy76-7422/+56
6 daysadd date to clockFreya Murphy1-19/+59
6 daysremove dashboardFreya Murphy6-568/+2
6 daysfix weather round-nessFreya Murphy1-2/+2
6 daysdelete active window popoutFreya Murphy3-134/+0
6 daysupdate commitsFreya Murphy2-10/+10
6 daysremove gamemode toggleFreya Murphy1-8/+0
6 dayssimplify dashboardFreya Murphy6-383/+7
6 daysfix buildFreya Murphy1-7/+7
6 daysadd exec string to default searchFreya Murphy1-2/+2
6 daysfix rebaseFreya Murphy33-5383/+21
6 daysremove lockscreenFreya Murphy19-1052/+0
6 daysremove config saving, make background scale properly, and add quickshell ↵Freya Murphy3-69/+11
desktop file
6 daysrevert 'monitorWorkspaces'Freya Murphy2-15/+3
6 daysupdate commitsFreya Murphy1-4/+4
6 daysrefactor workspace functionality (real per monitor workspaces)Freya Murphy3-197/+37
6 daysremove default pathsFreya Murphy3-5/+5
6 daysfix lock screen input roundingFreya Murphy1-1/+1
6 daysremove more things again lolFreya Murphy28-1864/+5
6 daysremove more things, make lock screen use wallpaper not screenshotFreya Murphy4-24/+8
6 dayslen :3Freya Murphy2-1/+1
6 daysremove more stuffffFreya Murphy32-3663/+9
6 daysonly show active workspaces, fix colorsFreya Murphy1-0/+1
6 dayshardcode single wallpaperFreya Murphy8-321/+14
6 daysremove recordingFreya Murphy9-400/+0
6 daysonly support one color schemeFreya Murphy1-1/+1
6 daysremove themes and configs from launcherFreya Murphy13-876/+14
6 daysclean up lock screenFreya Murphy4-370/+2
6 daysinit forkFreya Murphy1-1/+1
7 daysfix: close other popouts when hover activewindow2 * r + 2 * t1-0/+6
7 daysbar/activewindow: toggle when not show on hover2 * r + 2 * t1-3/+7
7 daysbar/activewindow: allow disable show on hover2 * r + 2 * t5-3/+22
Closes #1209 Closes #1019
7 daysbar/activewindow: format2 * r + 2 * t1-11/+12
7 daysbar/activewindow: fix anim2 * r + 2 * t1-1/+4
7 daysutilities: allow disabling and moving toggles + support for extra row (#1181)Ezekiel Gonzales4-54/+173
* quickToggles: Allow disabling and moving toggles and support for extra row * edit: README * splitIndex logic edit * fix --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
7 daysbar: allow setting custom workspace app icons in shell.json (#1214)Xavier Lhinares4-5/+40
* bar: allow setting custom workspace app icons in shell.json * rename to windowIcons and use regex field for regex Also allow specifying regex flags and exact name * add default config (fix steam icons) --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
7 daysnix: remove outdated app2unit version pin (#1266)nik-bsta2-15/+0
* nix: Remove outadeted app2unit version pin. * fix --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
7 daysbar/activewindow: add compact option (#1201)Ezekiel Gonzales5-20/+73
Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
7 daysbar/osicon: fix blurriness (#1271)Kalagmitan3-40/+40
* osicon: Unblurred sidebar icon + The multiplier on the implicitWidth and implicitHeight caused the distro icon on the sidebar to look blurry. I believe this is because the screen can't render a fraction of a pixel, and so, the qtengine compensates by using anti-aliasing which causes the icon look smudged. + I changed the font size of the icon to a standard integer size (extraLarge) and removed the multipliers. A side-effect of this commit is that the icon looks a bit bigger now, I chose extraLarge instead of just large because the icon looked a bit too small, but I do not know of other people's preference on this. * feat: Adjusted root implictWidth and implicitHeight * fix --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
7 dayscontrolcenter/taskbar: add excludedScreens (#1215)Bora Gülerman3-5/+56
also changed controlcenter/components/ConnectedButtonGroup - Changed row layout to grid layout - Added optional prop: row, which defaults to 1 so it looks same as row layout if not given - added new field to options, which bypasses rootItem bind. This is needed because we can not predict the number of monitors the user has, and can not create a seperate variable for each one
7 daysconfig: don't serialise sizes2 * r + 2 * t1-113/+51
We do not want to serialise sizes cause people aren't meant to change them
7 daysconfig: add option to hide notifications on lockscreen (#1211)八奈見 レイ4-4/+7
7 daysmedia: hide person icon if user pfp is ready (#1213)Xavier Lhinares2-0/+2
7 daysnotifs: support int:value hint (#1254)cordlessblues2-0/+43
* add .vscode/settings.json to gitignore * added support for the Int:value hint * fix * more fix * f * comment --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
7 dayssystemusage: optimized storage aggregation and improved device filtering (#1261)Kalagmitan1-71/+58
* refactor: Optimized storage aggregation + The storage aggregation logic doesn't account more complex storage setups and relied too much on risky string parsing to guess where partitions are. For example, in my case, I had a LUKS-encrypted drive which lives inside a "crypt," because it couldn't match the type (it only matched "disk" and "part"), it did not include my entire drive at all. Also, Linux devices names aren't always predictable (take mapper devices or complex NVMe paths), so if the RegEx doesn't match the name of those devices, the data just dissapears. I decided to go for a JSON approach making the code shorter and safer. Everything should work about the same. * systemusage: More intuitive filtering for storage devices + Removes "useless" drives from being show on the storage dashboard + Prioritizes the root disk to be shown first * refactor: formatted code properly
7 daysfix: missing serialization for hiddenIcons (#1263)Evertiro1-1/+2
Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com>
7 daysworkspaces: window icons limit (#1267)Robin Seger5-2/+49
* workspace window icons display limit * serialization