change icon theme
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
[Settings]
|
||||
gtk-theme-name=catppuccin-frappe-blue-standard
|
||||
gtk-theme-name=catppuccin-mocha-blue-standard
|
||||
gtk-icon-theme-name=Adwaita
|
||||
gtk-font-name=Adwaita Sans 11
|
||||
gtk-cursor-theme-name=catppuccin-mocha-blue-cursors
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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'')
|
||||
|
||||
|
||||
36
hosts/default/packages/arashi-icons.nix
Normal file
36
hosts/default/packages/arashi-icons.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user