mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
6 lines
156 B
Nix
6 lines
156 B
Nix
{ pkgs }:
|
|
pkgs.writeShellScriptBin "search-music-and-launch" ''
|
|
mpc clear
|
|
mpc add $(mpc listall | ${pkgs.fuzzel}/bin/fuzzel --dmenu)
|
|
mpc play
|
|
''
|