diff options
Diffstat (limited to 'roles/home')
| -rw-r--r-- | roles/home/desktop/cmus.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/home/desktop/cmus.nix b/roles/home/desktop/cmus.nix index 26ec2f1..bc1cc3e 100644 --- a/roles/home/desktop/cmus.nix +++ b/roles/home/desktop/cmus.nix @@ -5,6 +5,13 @@ lib.mkIf config.home.roles.desktop.music { cmus ]; + xdg.desktopEntries.cmus = { + name = "cmus"; + genericName = "Music Player"; + exec = "${pkgs.kitty}/bin/kitty ${pkgs.cmus}/bin/cmus"; + categories = [ "Music" "Player" "Audio" "ConsoleOnly" ]; + }; + xdg.configFile."cmus/rc".text = let c = config.theme.colors; in '' set auto_expand_albums_follow=false set pause_on_output_change=true |