-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
1,615 additions
and
545 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ fetchFromGitHub | ||
, gitUpdater | ||
, lib | ||
, stdenvNoCC | ||
}: | ||
|
||
stdenvNoCC.mkDerivation { | ||
pname = "sweet-nova"; | ||
version = "unstable-2023-04-02"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "EliverLara"; | ||
repo = "Sweet"; | ||
rev = "8a5d5a7d975567b5ae101b9f9d436fb1db2d9b24"; | ||
hash = "sha256-FVcXBxcS5oFsvAUDcwit7EIfgIQznl8AYYxqQ797ddU="; | ||
}; | ||
|
||
buildPhase = '' | ||
runHook preBuild | ||
cd kde | ||
mkdir -p aurorae/themes | ||
mv aurorae/Sweet-Dark aurorae/themes/Sweet-Dark | ||
mv aurorae/Sweet-Dark-transparent aurorae/themes/Sweet-Dark-transparent | ||
rm aurorae/.shade.svg | ||
mv colorschemes color-schemes | ||
mkdir -p plasma/look-and-feel | ||
mv look-and-feel plasma/look-and-feel/com.github.eliverlara.sweet | ||
mv sddm sddm-Sweet | ||
mkdir -p sddm/themes | ||
mv sddm-Sweet sddm/themes/Sweet | ||
mv cursors icons | ||
runHook postBuild | ||
''; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
install -d $out/share | ||
cp -r Kvantum aurorae color-schemes icons konsole plasma sddm $out/share | ||
runHook postInstall | ||
''; | ||
|
||
passthru.updateScript = gitUpdater { }; | ||
|
||
meta = with lib; { | ||
description = "A dark and colorful, blurry theme for the KDE Plasma desktop"; | ||
homepage = "https://github.com/EliverLara/Sweet"; | ||
license = licenses.gpl3Only; | ||
maintainers = [ maintainers.dr460nf1r3 ]; | ||
platforms = platforms.all; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
pkgs/desktops/gnome/extensions/extensionOverridesPatches/vitals_at_corecoding.com.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git i/sensors.js w/sensors.js | ||
index 5ab7068..00cfa19 100644 | ||
--- i/sensors.js | ||
+++ w/sensors.js | ||
@@ -29,6 +29,9 @@ const Me = imports.misc.extensionUtils.getCurrentExtension(); | ||
const FileModule = Me.imports.helpers.file; | ||
const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']); | ||
const _ = Gettext.gettext; | ||
+ | ||
+imports.gi.GIRepository.Repository.prepend_search_path('@gtop_path@'); | ||
+ | ||
const NM = imports.gi.NM; | ||
|
||
let GTop, hasGTop = true; |
Oops, something went wrong.