Use sp_bin setting when registering mouse events
This commit is contained in:
parent
3bb3d56c26
commit
d1195d0e26
|
@ -40,6 +40,9 @@ local function worker(user_args)
|
||||||
|
|
||||||
local GET_SPOTIFY_STATUS_CMD = sp_bin .. ' status'
|
local GET_SPOTIFY_STATUS_CMD = sp_bin .. ' status'
|
||||||
local GET_CURRENT_SONG_CMD = sp_bin .. ' current'
|
local GET_CURRENT_SONG_CMD = sp_bin .. ' current'
|
||||||
|
local PLAY_PAUSE_CMD = sp_bin .. ' play'
|
||||||
|
local NEXT_SONG_CMD = sp_bin .. ' next'
|
||||||
|
local PREVIOUS_SONG_CMD = sp_bin .. ' prev'
|
||||||
|
|
||||||
local cur_artist = ''
|
local cur_artist = ''
|
||||||
local cur_title = ''
|
local cur_title = ''
|
||||||
|
@ -135,11 +138,11 @@ local function worker(user_args)
|
||||||
-- - scroll down - play previous song
|
-- - scroll down - play previous song
|
||||||
spotify_widget:connect_signal("button::press", function(_, _, _, button)
|
spotify_widget:connect_signal("button::press", function(_, _, _, button)
|
||||||
if (button == 1) then
|
if (button == 1) then
|
||||||
awful.spawn("sp play", false) -- left click
|
awful.spawn(PLAY_PAUSE_CMD, false) -- left click
|
||||||
elseif (button == 4) then
|
elseif (button == 4) then
|
||||||
awful.spawn("sp next", false) -- scroll up
|
awful.spawn(NEXT_SONG_CMD, false) -- scroll up
|
||||||
elseif (button == 5) then
|
elseif (button == 5) then
|
||||||
awful.spawn("sp prev", false) -- scroll down
|
awful.spawn(PREVIOUS_SONG_CMD, false) -- scroll down
|
||||||
end
|
end
|
||||||
awful.spawn.easy_async(GET_SPOTIFY_STATUS_CMD, function(stdout, stderr, exitreason, exitcode)
|
awful.spawn.easy_async(GET_SPOTIFY_STATUS_CMD, function(stdout, stderr, exitreason, exitcode)
|
||||||
update_widget_icon(spotify_widget, stdout, stderr, exitreason, exitcode)
|
update_widget_icon(spotify_widget, stdout, stderr, exitreason, exitcode)
|
||||||
|
|
Loading…
Reference in New Issue