playerctl: shorten playerctl var

main
Zynh Ludwig 2024-07-12 17:44:48 -07:00
parent c5ae0732e4
commit 74054316b1
1 changed files with 4 additions and 4 deletions

View File

@ -43,13 +43,13 @@ in
services.sxhkd =
let
playerctlcmd = "${pkgs.playerctl}/bin/playerctl";
playerctl = "${pkgs.playerctl}/bin/playerctl";
in
{
keybindings = {
"XF86AudioPlay" = "${playerctlcmd} play-pause";
"XF86AudioPrev" = "${playerctlcmd} previous";
"XF86AudioNext" = "${playerctlcmd} next";
"XF86AudioPlay" = "${playerctl} play-pause";
"XF86AudioPrev" = "${playerctl} previous";
"XF86AudioNext" = "${playerctl} next";
};
};
};