gnomeExtensions: Update for GNOME 43
This commit is contained in:
parent
4f293b20a8
commit
73e71f2ef9
@ -183,5 +183,15 @@
|
|||||||
"volume_scroller@trflynn89.pm.me",
|
"volume_scroller@trflynn89.pm.me",
|
||||||
"volume_scroller@noskoski"
|
"volume_scroller@noskoski"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"43": {
|
||||||
|
"applications-menu": [
|
||||||
|
"apps-menu@gnome-shell-extensions.gcampax.github.com",
|
||||||
|
"Applications_Menu@rmy.pobox.com"
|
||||||
|
],
|
||||||
|
"workspace-indicator": [
|
||||||
|
"workspace-indicator@gnome-shell-extensions.gcampax.github.com",
|
||||||
|
"horizontal-workspace-indicator@tty2.io"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -59,8 +59,10 @@ in rec {
|
|||||||
gnome40Extensions = mapUuidNames (produceExtensionsList "40");
|
gnome40Extensions = mapUuidNames (produceExtensionsList "40");
|
||||||
gnome41Extensions = mapUuidNames (produceExtensionsList "41");
|
gnome41Extensions = mapUuidNames (produceExtensionsList "41");
|
||||||
gnome42Extensions = mapUuidNames (produceExtensionsList "42");
|
gnome42Extensions = mapUuidNames (produceExtensionsList "42");
|
||||||
|
gnome43Extensions = mapUuidNames (produceExtensionsList "43");
|
||||||
|
|
||||||
gnomeExtensions = lib.trivial.pipe (gnome40Extensions // gnome41Extensions // gnome42Extensions) [
|
# Keep the last three versions in here
|
||||||
|
gnomeExtensions = lib.trivial.pipe (gnome41Extensions // gnome42Extensions // gnome43Extensions) [
|
||||||
# Apply some custom patches for automatically packaged extensions
|
# Apply some custom patches for automatically packaged extensions
|
||||||
(callPackage ./extensionOverrides.nix {})
|
(callPackage ./extensionOverrides.nix {})
|
||||||
# Add all manually packaged extensions
|
# Add all manually packaged extensions
|
||||||
|
@ -9,6 +9,15 @@
|
|||||||
"apps-menu@gnome-shell-extensions.gcampax.github.com" = "applications-menu";
|
"apps-menu@gnome-shell-extensions.gcampax.github.com" = "applications-menu";
|
||||||
"Applications_Menu@rmy.pobox.com" = "frippery-applications-menu";
|
"Applications_Menu@rmy.pobox.com" = "frippery-applications-menu";
|
||||||
|
|
||||||
|
"workspace-indicator@gnome-shell-extensions.gcampax.github.com" = "workspace-indicator";
|
||||||
|
"horizontal-workspace-indicator@tty2.io" = "workspace-indicator-2";
|
||||||
|
|
||||||
|
# ############################################################################
|
||||||
|
# These are conflicts for older extensions (i.e. they don't support the latest GNOME version).
|
||||||
|
# Make sure to move them up once they are updated
|
||||||
|
|
||||||
|
# ####### GNOME 42 #######
|
||||||
|
|
||||||
"lockkeys@vaina.lt" = "lock-keys";
|
"lockkeys@vaina.lt" = "lock-keys";
|
||||||
"lockkeys@fawtytoo" = "lock-keys-2";
|
"lockkeys@fawtytoo" = "lock-keys-2";
|
||||||
|
|
||||||
@ -21,13 +30,6 @@
|
|||||||
"wireguard-indicator@gregos.me" = "wireguard-indicator-2";
|
"wireguard-indicator@gregos.me" = "wireguard-indicator-2";
|
||||||
"wireguard-indicator@atareao.es" = "wireguard-indicator";
|
"wireguard-indicator@atareao.es" = "wireguard-indicator";
|
||||||
|
|
||||||
"workspace-indicator@gnome-shell-extensions.gcampax.github.com" = "workspace-indicator";
|
|
||||||
"horizontal-workspace-indicator@tty2.io" = "workspace-indicator-2";
|
|
||||||
|
|
||||||
# ############################################################################
|
|
||||||
# These are conflicts for older extensions (i.e. they don't support the latest GNOME version).
|
|
||||||
# Make sure to move them up once they are updated
|
|
||||||
|
|
||||||
# ####### GNOME 41 #######
|
# ####### GNOME 41 #######
|
||||||
|
|
||||||
"floatingDock@sun.wxg@gmail.com" = "floating-dock-2";
|
"floatingDock@sun.wxg@gmail.com" = "floating-dock-2";
|
||||||
|
File diff suppressed because one or more lines are too long
@ -18,6 +18,7 @@ supported_versions = {
|
|||||||
"40": "40",
|
"40": "40",
|
||||||
"41": "41",
|
"41": "41",
|
||||||
"42": "42",
|
"42": "42",
|
||||||
|
"43": "43",
|
||||||
}
|
}
|
||||||
|
|
||||||
# Some type alias to increase readability of complex compound types
|
# Some type alias to increase readability of complex compound types
|
||||||
|
Loading…
Reference in New Issue
Block a user