Skip to content

Instantly share code, notes, and snippets.

@rawzone
Last active April 18, 2017 18:48
Show Gist options
  • Save rawzone/12861f6c6fed1a11e0c049eb36b2b9d2 to your computer and use it in GitHub Desktop.
Save rawzone/12861f6c6fed1a11e0c049eb36b2b9d2 to your computer and use it in GitHub Desktop.
mpv playit script
# Play in fullscreen (url in clipboard via mpv, requires xclip)
bindsym $mod+m exec --no-startup-id "~/.i3/playit.sh"
bindsym $mod+Shift+m exec --no-startup-id "~/.i3/playit-fullscreen.sh
#!/bin/sh
# Simple mpv -fs the url in the clipboard
#
# Requires xclip to be installed
#
clipboard="$(xclip -o)"
exec mpv -fs "$clipboard"
#!/bin/sh
# Simple mpv -fs the url in the clipboard
#
# Requires xclip to be installed
#
clipboard="$(xclip -o)"
exec mpv "$clipboard"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment