More cleanup

This commit is contained in:
Evie Litherland-Smith 2023-10-19 12:26:35 +01:00
parent c79b7a4498
commit 85256d42ee
5 changed files with 0 additions and 164 deletions

View file

@ -1,48 +0,0 @@
{ ... }: {
services.dunst = {
enable = true;
settings = {
global = {
follow = "mouse";
origin = "top-right";
progress_bar = true;
progress_bar_height = 10;
progress_bar_frame_width = 1;
progress_bar_min_width = 150;
progress_bar_max_width = 300;
indicate_hidden = "yes";
transparency = 16;
separator_color = "frame";
font = "Fira Mono 10";
ellipsize = "end";
ignore_newline = "no";
stack_duplicates = true;
hide_duplicate_count = false;
show_indicators = true;
icon_position = "left";
corner_radius = 7;
mouse_left_click = "close_current";
mouse_middle_click = "do_action, close_current";
mouse_right_click = "close_all";
};
urgency_low = {
background = "#16161e";
foreground = "#c0caf5";
frame_color = "#c0caf5";
timeout = 5;
};
urgency_normal = {
background = "#1a1b26";
foreground = "#c0caf5";
frame_color = "#c0caf5";
timeout = 5;
};
urgency_critical = {
background = "#292e42";
foreground = "#db4b4b";
frame_color = "#db4b4b";
timeout = 120;
};
};
};
}

View file

@ -1,33 +0,0 @@
{
stdenvNoCC,
fetchFromGitHub,
gtk3,
}:
stdenvNoCC.mkDerivation rec {
pname = "candy-icon-theme";
version = "6a35be5cb133c6be8314807f55da3d795e24fb86";
dontBuild = true;
src = fetchFromGitHub {
owner = "EliverLara";
repo = "candy-icons";
rev = version;
sha256 = "sha256-M58ts/xyVf+ZDidd4MEp/LlU3vk2imEwOnb0/sVJUYo=";
};
nativeBuildInputs = [gtk3];
dontDropIconThemeCache = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons/Sweet-folders
mv * $out/share/icons/Sweet-folders
for theme in $out/share/icons/*; do
gtk-update-icon-cache --force $theme
done
runHook postInstall
'';
}

View file

@ -1,29 +0,0 @@
{ stdenvNoCC, fetchFromGitHub, gtk3, }:
stdenvNoCC.mkDerivation rec {
pname = "delta-icon-theme";
version = "7b5bc269516845518da5095ed8b8cbbc34d68edb";
dontBuild = true;
src = fetchFromGitHub {
owner = "Delta-Icons";
repo = "linux";
rev = version;
sha256 = "sha256-/QraIVlgCT4AH+LU5gMtBmIZo3TBdwyeXRyBUxP8KJA=";
};
nativeBuildInputs = [ gtk3 ];
dontDropIconThemeCache = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
mv Delta $out/share/icons
for theme in $out/share/icons/*; do
gtk-update-icon-cache --force $theme
done
runHook postInstall
'';
}

View file

@ -1,33 +0,0 @@
{
stdenvNoCC,
fetchFromGitHub,
gtk3,
}:
stdenvNoCC.mkDerivation rec {
pname = "sweet-folder-theme";
version = "b2192ff1412472f036fdf9778c6b9dbcb6c044ec";
dontBuild = true;
src = fetchFromGitHub {
owner = "EliverLara";
repo = "Sweet-folders";
rev = version;
sha256 = "sha256-QexfqXH5a1IEhKBRjWSMdrEvThvLRzd4M32Xti1DCGE=";
};
nativeBuildInputs = [gtk3];
dontDropIconThemeCache = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
mv Sweet-Rainbow $out/share/icons
for theme in $out/share/icons/*; do
gtk-update-icon-cache --force $theme
done
runHook postInstall
'';
}

View file

@ -1,21 +0,0 @@
{ pkgs, ... }: {
programs.swaylock = {
enable = true;
package = pkgs.swaylock-effects;
settings = {
screenshots = true;
clock = true;
indicator = true;
indicator-radius = 100;
indicator-thickness = 7;
effect-blur = "7x5";
effect-vignette = "0.5:0.5";
# ring-color = "24273a"; # Catppuccin base
# key-hl-color = "b7bdf8"; # Catppuccin lavender
# line-color = "24273a"; # Catppuccin base
# separator-color = "8bd5ca"; # Catppuccin teal
grace = 2;
fade-in = 0.2;
};
};
}