Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: inconsistent behavious of XF86AudioPlay #9

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion usr/share/regolith/sway/config.d/65_media_keybindings
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ bindsym XF86MonBrightnessUp exec lightctl + $wm.media.brightness.step
bindsym XF86MonBrightnessDown exec lightctl - $wm.media.brightness.step

# Player Controls
bindsym --locked XF86AudioPlay exec playerctl play-pause
# The keycodes 172 and 208 are both bound to XF86AudioPlay but have different meanings
bindcode --locked 172 exec playerctl play-pause
bindcode --locked 208 exec playerctl play
bindsym --locked XF86AudioPause exec playerctl pause
bindsym --locked XF86AudioNext exec playerctl next
bindsym --locked XF86AudioPrev exec playerctl previous

Expand Down