- added mediamtx to backup
- removed mpris from awesome. switched to playerctl
- changed autostart to discord
- todo edit
- added choices to get reqs all
- added next and prev workspace
- made aur manager a var
- todo change
This commit is contained in:
2025-07-24 20:09:13 -05:00
parent 4808986b08
commit 6c9643ba74
8 changed files with 111 additions and 34 deletions

View File

@@ -127,8 +127,8 @@ globalkeys = gears.table.join(
awesome.restart()
end),
awful.key({ }, "XF86AudioPlay", function () awful.util.spawn(mpris.." -a PlayPause") end),
awful.key({ }, "XF86AudioStop", function () awful.util.spawn(mpris.." -a pause") end),
awful.key({ }, "XF86AudioPlay", function () awful.util.spawn("playerctl play-pause") end),
awful.key({ }, "XF86AudioStop", function () awful.util.spawn("playerctl -a pause") end),
--awful.key({ }, "XF86AudioRaiseVolume", function () awful.util.spawn("amixer -D pulse sset Master 2%+", false) end),
awful.key({ }, "XF86AudioRaiseVolume", function () awful.util.spawn("pactl set-sink-volume @DEFAULT_SINK@ +2%", false) end),
awful.key({ }, "XF86AudioLowerVolume", function () awful.util.spawn("pactl set-sink-volume @DEFAULT_SINK@ -2%", false) end),

View File

@@ -127,8 +127,8 @@ globalkeys = gears.table.join(
awesome.restart()
end),
awful.key({ }, "XF86AudioPlay", function () awful.util.spawn(mpris.." -a PlayPause") end),
awful.key({ }, "XF86AudioStop", function () awful.util.spawn(mpris.." -a pause") end),
awful.key({ }, "XF86AudioPlay", function () awful.util.spawn("playerctl play-pause") end),
awful.key({ }, "XF86AudioStop", function () awful.util.spawn("playerctl -a pause") end),
--awful.key({ }, "XF86AudioRaiseVolume", function () awful.util.spawn("amixer -D pulse sset Master 2%+", false) end),
awful.key({ }, "XF86AudioRaiseVolume", function () awful.util.spawn("pactl set-sink-volume @DEFAULT_SINK@ +2%", false) end),
awful.key({ }, "XF86AudioLowerVolume", function () awful.util.spawn("pactl set-sink-volume @DEFAULT_SINK@ -2%", false) end),

View File

@@ -22,7 +22,6 @@ Us_keys_colemak = require("keys-US-colemak")
require("awful.hotkeys_popup.keys")
local HOMEDIR="/home/iceyrazor/"
mpris=HOMEDIR..".local/bin/system/mpris_player_control"
local show_desktop = false

View File

@@ -347,6 +347,8 @@ bind = $mainMod CTRL SHIFT, j, resizeactive, 0 50
bind = $mainMod, o, focusmonitor, +1
bind = $mainMod SHIFT, o, movewindow, mon:+1
bind = $mainMod, n, workspace, r+1
bind = $mainMod, b, workspace, r-1
# Switch workspaces with mainMod + [0-9]
bind = $mainMod, 1, workspace, r~1
bind = $mainMod, 2, workspace, r~2