Add garuda linux beautyline

This commit is contained in:
Tyler Beckman 2024-11-22 01:41:55 -07:00
parent b4ddf7bf32
commit 954b390497
Signed by: Ty
GPG key ID: 2813440C772555A4
6 changed files with 41 additions and 2 deletions

View file

@ -12,5 +12,6 @@
./modules/gpg.nix
./modules/shell
./modules/vscode.nix
./modules/desktop.nix
];
}

View file

@ -0,0 +1,14 @@
{ ... }:
{
xdg.desktopEntries = {
# Override vesktop for matching icon in beautyline (make it generic discord icon)
vesktop = {
categories = [ "Network" "InstantMessaging" "Chat" ];
exec = "vesktop %U";
genericName = "Internet Messenger";
icon = "discord"; # CHANGED
name = "Vesktop";
type = "Application";
};
};
}

View file

@ -18,6 +18,7 @@
# KDE Themes
vimix-cursors
(pkgs.callPackage ../../packages/beautyline {})
# Programming
nixd # NixD LSP for .nix files

View file

@ -11,8 +11,8 @@
theme = "Vimix-cursors";
size = 24;
};
# Set icon theme TODO Package modern beautyline
iconTheme = "breeze-dark";
# Set icon theme
iconTheme = "beautyline-garuda";
# Set wallpaper to Shell
wallpaper = "${pkgs.kdePackages.plasma-workspace-wallpapers}/share/wallpapers/Shell/contents/images/5120x2880.jpg";
};

View file

@ -0,0 +1,22 @@
# TODO Make this not horrifyingly simple
{ stdenv, fetchgit, ... }:
stdenv.mkDerivation rec {
pname = "beautyline-garuda";
version = "04052024"; # AoE Time
src = fetchgit {
url = "https://gitlab.com/garuda-linux/themes-and-settings/artwork/beautyline";
rev = "e13e5fa8f5aaad8a35fcaeb8a69512d32270a9d0";
sha256 = "vl6ab7JSk66BeveyuNs7g7Pf252F4tMs/xXJcrd7AHU=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons/${pname}
cp -r * $out/share/icons/${pname}/
runHook postInstall
'';
}

1
result Symbolic link
View file

@ -0,0 +1 @@
/nix/store/8r0ifgzrfwls4lv0kimklysq8scjsnmw-beautyline-garuda-04052024