diff --git a/config/awesome/apps.lua b/config/awesome/apps.lua index f3efcb2..4527081 100644 --- a/config/awesome/apps.lua +++ b/config/awesome/apps.lua @@ -37,10 +37,10 @@ apps.lutris = function () helpers.run_or_raise({class = 'Lutris'}, false, "lutris") end apps.youtube = function () - awful.spawn.with_shell("~/scr/Rofi/rofi_mpvtube") + awful.spawn.with_shell("rofi_mpvtube") end apps.networks = function () - awful.spawn.with_shell("~/bin/networks-rofi") + awful.spawn.with_shell("rofi_networks") end apps.passwords = function () helpers.run_or_raise({class = 'KeePassXC'}, true, "keepassxc") diff --git a/config/awesome/elemental/sidebar/lovelace.lua b/config/awesome/elemental/sidebar/lovelace.lua index 94fe706..bfff37e 100644 --- a/config/awesome/elemental/sidebar/lovelace.lua +++ b/config/awesome/elemental/sidebar/lovelace.lua @@ -135,13 +135,6 @@ playerctl_toggle_icon:buttons(gears.table.join( end), awful.button({ }, 3, function () awful.spawn.with_shell("mpvc toggle") - end), - awful.button({ }, 8, function () - sidebar.visible = false - awful.spawn.with_shell("~/scr/Rofi/rofi_mpvtube") - end), - awful.button({ }, 9, function () - awful.spawn.with_shell("~/scr/info/mpv-query.sh") end) )) diff --git a/config/awesome/keys.lua b/config/awesome/keys.lua index fb304a8..cccc4d5 100644 --- a/config/awesome/keys.lua +++ b/config/awesome/keys.lua @@ -541,14 +541,12 @@ keys.globalkeys = gears.table.join( -- Quick edit file awful.key({ superkey, shiftkey }, "e", function() - awful.spawn.with_shell("~/scr/Rofi/rofi_edit") + awful.spawn.with_shell("rofi_edit") end, {description = "quick edit file", group = "launcher"}), + -- Rofi youtube search and playlist selector awful.key({ superkey }, "y", apps.youtube, {description = "youtube search and play", group = "launcher"}), - -- mpvtube song - awful.key({ superkey, shiftkey }, "y", function() awful.spawn.with_shell("~/scr/info/mpv-query.sh") end, - {description = "show mpv media title", group = "launcher"}), -- Spawn file manager awful.key({ superkey, shiftkey }, "f", apps.file_manager, {description = "file manager", group = "launcher"}), diff --git a/config/awesome/noodle/mpd_buttons.lua b/config/awesome/noodle/mpd_buttons.lua index 96f80aa..7bba67e 100644 --- a/config/awesome/noodle/mpd_buttons.lua +++ b/config/awesome/noodle/mpd_buttons.lua @@ -47,13 +47,6 @@ mpd_toggle_icon:buttons(gears.table.join( end), awful.button({ }, 3, function () awful.spawn.with_shell("mpvc toggle") - end), - awful.button({ }, 8, function () - sidebar.visible = false - awful.spawn.with_shell("~/scr/Rofi/rofi_mpdtube") - end), - awful.button({ }, 9, function () - awful.spawn.with_shell("~/scr/info/mpd-query.sh") end) ))