Home

dotnix @147b2f4c12d507c30ea1a0ec0be4d91aaff99075 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / gui / spotify.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs, ... }:
{
  xdg.configFile."spotify-player/theme.toml".text = builtins.readFile (
    pkgs.fetchFromGitHub {
      owner = "catppuccin";
      repo = "spotify-player";
      rev = "002d51b02b3a2ebc0804e4839ee604dbdab4bec3";
      sha256 = "sha256-IUhzVrIBMi/Dn6+HV0m9i38Msg8zzzJlR85JeEVE7EU=";
    }
    + "/src/theme.toml"
  );
  xdg.configFile."spotify-player/app.toml".source =
    (pkgs.formats.toml { }).generate "spotify-player-config"
      {
        client_id = "41af4976ba70474fbd541ee8764a2cda";
        theme = "Catppuccin-mocha";
        enable_notify = false;
        enable_media_control = true;
        device.volume = 100;
      };
  programs.nushell.shellAliases.spt = "spotify_player";
}