feat(obs-studio): Remove OBS Studio

This commit is contained in:
punkfairie 2024-10-20 13:15:41 -07:00
parent ed50c2cbd7
commit 782ae10718
Signed by: punkfairie
GPG key ID: 01823C057725C266
3 changed files with 0 additions and 29 deletions

View file

@ -216,18 +216,6 @@
"url": "https://github.com/catppuccin/nvim/archive/63685e1562ef53873c9764b483d7ac5c7a608922.tar.gz",
"hash": "1b283i43p1i49mql84s6njfnf4mdf9csknp9hdkjjagwfi509wgm"
},
"obs": {
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "catppuccin",
"repo": "obs"
},
"branch": "main",
"revision": "b17939991545bdd6232e688ec5004b6dfae46f69",
"url": "https://github.com/catppuccin/obs/archive/b17939991545bdd6232e688ec5004b6dfae46f69.tar.gz",
"hash": "15ndpcy8a37997vd14z08arlv3zk5ldlmb7s7i63dz15yxqnaaym"
},
"palette": {
"type": "Git",
"repository": {

View file

@ -24,7 +24,6 @@
./swaylock.nix
./sway.nix
./tmux.nix
./obs-studio.nix
./waybar.nix
./yazi.nix
./zathura.nix

View file

@ -1,16 +0,0 @@
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.obs-studio.catppuccin;
enable = cfg.enable && config.programs.obs-studio.enable;
themeName = "Catppuccin_${lib.ctp.mkUpper cfg.flavor}.ovt";
in
{
options.programs.obs-studio.catppuccin = lib.ctp.mkCatppuccinOpt { name = "obs-studio"; };
config = lib.mkIf enable {
xdg.configFile."obs-studio/themes/Catppuccin.obt".source = "${sources.obs}/themes/Catppuccin.obt";
xdg.configFile."obs-studio/themes/${themeName}".source = "${sources.obs}/themes/${themeName}";
};
}