change icon theme

This commit is contained in:
2025-08-22 20:58:45 +03:00
parent fde49f0c8f
commit ce55c28689
4 changed files with 44 additions and 5 deletions

View File

@@ -181,6 +181,8 @@
inputs.zen-browser.homeModules.beta
];
gtk.enable = true;
catppuccin = {
enable = true;
flavor = "mocha";
@@ -206,10 +208,10 @@
recursive = true;
};
home.file.".config/gtk-3.0" = {
source = config.lib.file.mkOutOfStoreSymlink "/home/ocbwoy3/config/config/gtk-3.0";
recursive = true;
};
# home.file.".config/gtk-3.0" = {
# source = config.lib.file.mkOutOfStoreSymlink "/home/ocbwoy3/config/config/gtk-3.0";
# recursive = true;
# };
home.file.".config/hypr" = {
source = config.lib.file.mkOutOfStoreSymlink "/home/ocbwoy3/config/config/hypr";

View File

@@ -48,6 +48,7 @@
(writeShellScriptBin "fix-gtk" ''${inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland}/bin/hyprctl dispatch exec "${pkgs.xdg-desktop-portal-gtk}/libexec/xdg-desktop-portal-gtk -r"'')
(callPackage ./apps/wl-shimeji.nix {})
(callPackage ./packages/arashi-icons.nix {})
(writeShellScriptBin "stop-shimejis" ''${inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland}/bin/hyprctl dispatch exec "shimejictl stop"'')
# (writeShellScriptBin "partynoob" ''shimejictl summon PartyNoob'')

View File

@@ -0,0 +1,36 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "arashi-icons";
version = "1.0.0";
src = fetchFromGitHub {
owner = "0hStormy";
repo = "Arashi";
rev = "ee721a94f798b24175f28311d92ebcd0791cbaf4";
sha256 = "sha256-xa/QN8v9vPDus1cQuFBp/x8QQYkiwJsYiWqR+x3/TIA=";
};
nativeBuildInputs = [ ];
buildInputs = [ ];
installPhase = ''
mkdir -p $out/share/icons/arashi/scalable/apps
mkdir -p $out/share/icons/arashi/scalable/places
cp $src/index.theme $out/share/icons/arashi/
cp -r $src/scalable/apps/*.svg $out/share/icons/arashi/scalable/apps/
cp -r $src/scalable/places/*.svg $out/share/icons/arashi/scalable/places/
cp $out/share/icons/arashi/scalable/apps/utilities-terminal.svg $out/share/icons/arashi/scalable/apps/com.mitchellh.ghostty.svg
cp $out/share/icons/arashi/scalable/apps/systemsettings.svg $out/share/icons/arashi/scalable/apps/pavucontrol.svg
cp $out/share/icons/arashi/scalable/apps/dev.vencord.Vesktop.svg $out/share/icons/arashi/scalable/apps/equibop.svg
cp $out/share/icons/arashi/scalable/apps/org.vinegarhq.Sober.svg $out/share/icons/arashi/scalable/apps/tuxstrap.svg
'';
meta = with lib; {
description = "A smooth, modern icon set for Linux";
homepage = "https://github.com/0hStormy/Arashi";
license = licenses.cc-by-sa-40;
maintainers = with maintainers; [ ];
};
}