feat(skim): Remove skim

This commit is contained in:
punkfairie 2024-10-20 12:20:28 -07:00
parent e1d74c0117
commit 20fd2d7b74
Signed by: punkfairie
GPG key ID: 01823C057725C266
3 changed files with 2 additions and 30 deletions

View file

@ -288,18 +288,6 @@
"url": "https://github.com/d2718nis/rose-pine-dunst/archive/496499eaed38a07ce4f79ec91baaf6e1e4c28bc5.tar.gz",
"hash": "0x7cqbcn7zygab9xbmbarz06wxkj3wxxffwmka33ljhm8gk3x0ay"
},
"skim": {
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "catppuccin",
"repo": "skim"
},
"branch": "main",
"revision": "d39304b5f84721788b19bc40aebcfd7720208d8a",
"url": "https://github.com/catppuccin/skim/archive/d39304b5f84721788b19bc40aebcfd7720208d8a.tar.gz",
"hash": "1b6cd1wfkprrn7imgf1w1f9a6iqy3bql2ansy7l0k44ps1gwrvxq"
},
"spotify-player": {
"type": "Git",
"repository": {
@ -434,4 +422,5 @@
}
},
"version": 3
}
}

View file

@ -20,7 +20,6 @@
./polybar.nix
./rio.nix
./rofi.nix
./skim.nix
./spotify-player.nix
./starship.nix
./swaylock.nix

View file

@ -1,16 +0,0 @@
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.skim.catppuccin;
enable = cfg.enable && config.programs.skim.enable;
palette = (lib.importJSON "${sources.palette}/palette.json").${cfg.flavor}.colors;
in
{
options.programs.skim.catppuccin = lib.ctp.mkCatppuccinOpt { name = "skim"; };
config.programs.skim = lib.mkIf enable {
defaultOptions = [
"--color=fg:${palette.text.hex},bg:${palette.base.hex},matched:${palette.surface0.hex},matched_bg:${palette.flamingo.hex},current:${palette.text.hex},current_bg:${palette.surface1.hex},current_match:${palette.base.hex},current_match_bg:${palette.rosewater.hex},spinner:${palette.green.hex},info:${palette.mauve.hex},prompt:${palette.blue.hex},cursor:${palette.red.hex},selected:${palette.maroon.hex},header:${palette.teal.hex},border:${palette.overlay0.hex}"
];
};
}