satisfy the Autism Beast (by justifying the means with the ends)

horrible /etc/os-release hack that changes the logo (visible in gnome settings, for instance) to an iterator icon. i am so happy about this information
This commit is contained in:
Jill 2024-03-04 13:40:11 +03:00
parent 05165a0e5c
commit ccf5e34878
3 changed files with 23 additions and 2 deletions

View File

@ -16,13 +16,13 @@
# debug
strace ltrace lsof
# apps
vivaldi telegram-desktop onlyoffice-bin mpv qalculate-gtk
vivaldi telegram-desktop onlyoffice-bin mpv qalculate-gtk krita
# compatilibility
wineWowPackages.waylandFull winetricks
# misc
cowsay file which tree gnused yt-dlp prismlauncher
] ++ (with pkgs.my; [
olympus
olympus iterator-icons
]);
# usually you don't need to do this, but this is a workaround for https://github.com/flameshot-org/flameshot/issues/3328
@ -30,6 +30,10 @@
modules = {
security.useDoas = true;
os-release = {
enable = true;
logo = "seven-red-suns";
};
hardware = {
pipewire.enable = true;

View File

@ -0,0 +1,17 @@
{ stdenv, ... }:
stdenv.mkDerivation {
pname = "iterator-icons";
version = "0.0.0";
src = ./.;
dontDropIconThemeCache = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons/hicolor/256x256/apps/
cp -a ./icons/* $out/share/icons/hicolor/256x256/apps/
runHook postInstall
'';
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB