.dotfiles/.config/waybar/modules/custom-mediaplayer.jsonc
2026-01-18 21:08:16 -07:00

26 lines
813 B
Plaintext

{
"custom/mediaplayer": {
"exec": "hyde-shell mediaplayer.py",
"return-type": "json",
"format": "{0}",
"tooltip": true,
"on-click": "playerctl play-pause",
"on-click-middle": "playerctl previous",
"on-scroll-up": "playerctl position 1-",
"on-scroll-down": "playerctl position 1+",
"menu": "on-click-right",
"menu-file": "${HYDE_WAYBAR_MENU_DIR:-$XDG_DATA_HOME/waybar/menus}/mediaplayer.xml",
"menu-actions": {
"play-pause": "playerctl play-pause",
"next": "playerctl next",
"previous": "playerctl previous",
"stop": "playerctl stop",
"shuffle": "playerctl shuffle toggle",
"repeat": "playerctl loop Track",
"loop": "playerctl loop Playlist",
"disable-loop": "playerctl loop None"
},
"restart-interval": 5
}
}