Skip to content

Commit a94d1d4

Browse files
committed
gnomeExtensions/update: sort collision entries
1 parent 582ffa5 commit a94d1d4

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

pkgs/desktops/gnome/extensions/collisions.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,42 @@
33
"Applications_Menu@rmy.pobox.com",
44
"apps-menu@gnome-shell-extensions.gcampax.github.com"
55
],
6-
"persian-calendar": [
7-
"PersianCalendar@oxygenws.com",
8-
"persian-calendar@iamrezamousavi.gmail.com"
6+
"battery-time": [
7+
"batime@martin.zurowietz.de",
8+
"battery-time@eetumos.github.com",
9+
"batterytime@typeof.pw"
910
],
10-
"system-monitor": [
11-
"System_Monitor@bghome.gmail.com",
12-
"system-monitor@gnome-shell-extensions.gcampax.github.com"
11+
"eur-usd": [
12+
"eur-usd-gshell@vezza.github.com",
13+
"usd-mxn-gshell@kinduff.github.com"
14+
],
15+
"fullscreen-to-empty-workspace": [
16+
"fullscreen-to-empty-workspace2@corgijan.dev",
17+
"fullscreen-to-empty-workspace@aiono.dev"
1318
],
1419
"fuzzy-clock": [
1520
"FuzzyClock@fire-man-x",
1621
"FuzzyClock@johngoetz",
1722
"fuzzy-clock@keepawayfromfire.co.uk"
1823
],
19-
"battery-time": [
20-
"batime@martin.zurowietz.de",
21-
"battery-time@eetumos.github.com",
22-
"batterytime@typeof.pw"
24+
"mouse-follows-focus": [
25+
"mouse-follows-focus@crisidev.org",
26+
"mousefollowsfocus@matthes.biz"
2327
],
2428
"nepali-calendar": [
2529
"nepali-calendar-gs-extension@subashghimire.info.np",
2630
"nepali-date@biplab"
2731
],
28-
"mouse-follows-focus": [
29-
"mouse-follows-focus@crisidev.org",
30-
"mousefollowsfocus@matthes.biz"
32+
"persian-calendar": [
33+
"PersianCalendar@oxygenws.com",
34+
"persian-calendar@iamrezamousavi.gmail.com"
3135
],
3236
"power-profile-indicator": [
3337
"power-profile-indicator@laux.wtf",
3438
"power-profile@fthx"
3539
],
36-
"fullscreen-to-empty-workspace": [
37-
"fullscreen-to-empty-workspace2@corgijan.dev",
38-
"fullscreen-to-empty-workspace@aiono.dev"
39-
],
40-
"eur-usd": [
41-
"eur-usd-gshell@vezza.github.com",
42-
"usd-mxn-gshell@kinduff.github.com"
40+
"system-monitor": [
41+
"System_Monitor@bghome.gmail.com",
42+
"system-monitor@gnome-shell-extensions.gcampax.github.com"
4343
]
4444
}

pkgs/desktops/gnome/extensions/update-extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ def find_collisions(
351351
package_name_registry.setdefault(pname, set()).add(uuid)
352352
return {
353353
pname: sorted(uuids)
354-
for pname, uuids in package_name_registry.items()
354+
for pname, uuids in sorted(package_name_registry.items())
355355
if len(uuids) > 1
356356
}
357357

0 commit comments

Comments
 (0)