mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-25 09:37:14 +08:00
evil daemon system, dependency list update, README improvements.
Former-commit-id: db310f8e49
Former-commit-id: 4f25f9200c3ac9f9385daca5a68378249ff0329e
Former-commit-id: 69fa3954e5738446a59b409b7e326233e7c3ef55
Former-commit-id: 673176f7857e39f3455f4ccb426eef2789c0e891
72 lines
2 KiB
Lua
72 lines
2 KiB
Lua
local awful = require("awful")
|
|
local gears = require("gears")
|
|
local beautiful = require("beautiful")
|
|
local wibox = require("wibox")
|
|
|
|
-- Get theme variables
|
|
local floating_icon = beautiful.layout_floating
|
|
local tile_icon = beautiful.layout_tile
|
|
local max_icon = beautiful.layout_max
|
|
|
|
local desktop_control = wibox.widget.imagebox()
|
|
|
|
-- Mouse control
|
|
desktop_control:buttons(gears.table.join(
|
|
-- Left click - Cycle through layouts
|
|
awful.button({ }, 1, function ()
|
|
awful.layout.inc(1)
|
|
end),
|
|
-- Right click - Show clients in the current tag with rofi
|
|
awful.button({ }, 3, function ()
|
|
awful.spawn.with_shell("rofi -matching fuzzy -show windowcd")
|
|
end),
|
|
-- Middle click - Close focused client
|
|
awful.button({ }, 2, function ()
|
|
if client.focus ~= nil then
|
|
client.focus:kill()
|
|
end
|
|
end),
|
|
-- Scrolling - Scroll through clients
|
|
awful.button({ }, 4, function ()
|
|
awful.client.focus.byidx(-1)
|
|
end),
|
|
awful.button({ }, 5, function ()
|
|
awful.client.focus.byidx(1)
|
|
end),
|
|
-- Side buttons - Minimize and restore minimized
|
|
awful.button({ }, 8, function ()
|
|
if client.focus ~= nil then
|
|
client.focus.minimized = true
|
|
end
|
|
end),
|
|
awful.button({ }, 9, function ()
|
|
local c = awful.client.restore()
|
|
if c then
|
|
client.focus = c
|
|
c:raise()
|
|
end
|
|
end)
|
|
))
|
|
|
|
local function update_widget()
|
|
local current_layout = awful.layout.get(mouse.screen)
|
|
if current_layout == awful.layout.suit.max then
|
|
desktop_control.image = max_icon
|
|
elseif current_layout == awful.layout.suit.tile then
|
|
desktop_control.image = tile_icon
|
|
elseif current_layout == awful.layout.suit.floating then
|
|
desktop_control.image = floating_icon
|
|
else
|
|
desktop_control.image = tile_icon
|
|
end
|
|
end
|
|
|
|
-- Signals
|
|
awful.tag.attached_connect_signal(s, "property::selected", function ()
|
|
update_widget()
|
|
end)
|
|
awful.tag.attached_connect_signal(s, "property::layout", function ()
|
|
update_widget()
|
|
end)
|
|
|
|
return desktop_control
|