diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2022-10-16 21:16:31 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2022-10-16 21:16:31 +0300 |
commit | c015df322ec4fba41d75b5418bd460de42697e07 (patch) | |
tree | 20e8184470c2f63b4de62734a2c784d5e22e0920 /dotfiles/.config/sway | |
parent | 70fc9fd33fa7e7d7cfc2fc62c8b2a4c4a17bb204 (diff) | |
download | swayrice-c015df322ec4fba41d75b5418bd460de42697e07.tar.gz swayrice-c015df322ec4fba41d75b5418bd460de42697e07.zip |
Use playerctl/MPRIS for media control
Diffstat (limited to 'dotfiles/.config/sway')
-rw-r--r-- | dotfiles/.config/sway/config | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/dotfiles/.config/sway/config b/dotfiles/.config/sway/config index 93082c3..6c2f5b2 100644 --- a/dotfiles/.config/sway/config +++ b/dotfiles/.config/sway/config @@ -56,10 +56,14 @@ exec_always { exec waybar_launch # Audio exec pipewire-restart +# playerctl daemon for better MPRIS support +exec playerctld daemon # Music daemon exec mpd +# MPRIS support for MPD +exec mpd-mpris # Bluetooth adapter applet -exec_always blueman-applet +exec blueman-applet # Notification handler exec mako # Environment variables for cron scripts @@ -354,11 +358,11 @@ bindsym --to-code { $mod+XF86AudioLowerVolume exec exremote "lmc down 5" $mod+XF86AudioMute exec exremote "lmc mute" - $mod+Ctrl+Shift+F5 exec exremote "mpc seek -10" + $mod+Ctrl+Shift+F5 exec exremote "lmc back 5" $mod+Ctrl+F5 exec exremote "lmc prev" $mod+Ctrl+F6 exec exremote "lmc toggle" $mod+Ctrl+F7 exec exremote "lmc next" - $mod+Ctrl+Shift+F7 exec exremote "mpc seek +10" + $mod+Ctrl+Shift+F7 exec exremote "lmc forward 5" # Remote computer's clipboard $mod+Ctrl+c exec clipremote copy @@ -381,13 +385,13 @@ bindsym --to-code --locked { XF86AudioLowerVolume exec lmc down 5 XF86AudioMute exec lmc mute - $mod+Shift+F5 exec mpc seek -10 + $mod+Shift+F5 exec lmc back 5 $mod+F5 exec lmc prev $mod+F6 exec lmc toggle $mod+F7 exec lmc next - $mod+Shift+F7 exec mpc seek +10 - $mod+F8 exec mpc single - $mod+Shift+F8 exec mpc repeat + $mod+Shift+F7 exec lmc forward 5 + $mod+F8 exec playerctl loop Track + $mod+Shift+F8 exec playerctl loop None } include "~/.config/sway/`uname -n`" |