Add garuda linux beautyline
This commit is contained in:
parent
b4ddf7bf32
commit
954b390497
6 changed files with 41 additions and 2 deletions
|
@ -12,5 +12,6 @@
|
||||||
./modules/gpg.nix
|
./modules/gpg.nix
|
||||||
./modules/shell
|
./modules/shell
|
||||||
./modules/vscode.nix
|
./modules/vscode.nix
|
||||||
|
./modules/desktop.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
14
home-manager/modules/desktop.nix
Normal file
14
home-manager/modules/desktop.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -18,6 +18,7 @@
|
||||||
|
|
||||||
# KDE Themes
|
# KDE Themes
|
||||||
vimix-cursors
|
vimix-cursors
|
||||||
|
(pkgs.callPackage ../../packages/beautyline {})
|
||||||
|
|
||||||
# Programming
|
# Programming
|
||||||
nixd # NixD LSP for .nix files
|
nixd # NixD LSP for .nix files
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
theme = "Vimix-cursors";
|
theme = "Vimix-cursors";
|
||||||
size = 24;
|
size = 24;
|
||||||
};
|
};
|
||||||
# Set icon theme TODO Package modern beautyline
|
# Set icon theme
|
||||||
iconTheme = "breeze-dark";
|
iconTheme = "beautyline-garuda";
|
||||||
# Set wallpaper to Shell
|
# Set wallpaper to Shell
|
||||||
wallpaper = "${pkgs.kdePackages.plasma-workspace-wallpapers}/share/wallpapers/Shell/contents/images/5120x2880.jpg";
|
wallpaper = "${pkgs.kdePackages.plasma-workspace-wallpapers}/share/wallpapers/Shell/contents/images/5120x2880.jpg";
|
||||||
};
|
};
|
||||||
|
|
22
packages/beautyline/default.nix
Normal file
22
packages/beautyline/default.nix
Normal 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
1
result
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/nix/store/8r0ifgzrfwls4lv0kimklysq8scjsnmw-beautyline-garuda-04052024
|
Loading…
Reference in a new issue