119 lines
3.3 KiB
Lua
119 lines
3.3 KiB
Lua
|
|
-- ▄▄ ▄ ▄ ▄ ▄
|
|
-- ██ ▄ ▄ ▄▄▄ ▄▄▄ ▄▄▄ ▄▄▄▄▄ ▄▄▄ █ █ █ ██ ██
|
|
-- █ █ ▀▄ ▄ ▄▀ █▀ █ █ ▀ █▀ ▀█ █ █ █ █▀ █ ▀ █▀█ █ █ ██ █
|
|
-- █▄▄█ █▄█▄█ █▀▀▀▀ ▀▀▀▄ █ █ █ █ █ █▀▀▀▀ ██ ██▀ █ ▀▀ █
|
|
-- █ █ █ █ ▀█▄▄▀ ▀▄▄▄▀ ▀█▄█▀ █ █ █ ▀█▄▄▀ █ █ █ █
|
|
|
|
-- Banner generated using `toilet -f mono9 AwesomeWM"
|
|
|
|
local gears = require('gears')
|
|
local awful = require('awful')
|
|
local beautiful = require('beautiful')
|
|
|
|
require('awful.autofocus')
|
|
|
|
-- ========================================
|
|
-- Theme
|
|
-- Load the Aesthetics
|
|
-- ========================================
|
|
beautiful.init(require('theme'))
|
|
|
|
-- ========================================
|
|
-- Layouts
|
|
-- Load the Panels
|
|
-- ========================================
|
|
|
|
require('layout')
|
|
|
|
-- ========================================
|
|
-- Modules
|
|
-- Load all the modules
|
|
-- ========================================
|
|
|
|
require('module.notifications')
|
|
require('module.auto-start')
|
|
require('module.decorate-client')
|
|
-- require('module.backdrop')
|
|
require('module.exit-screen')
|
|
require('module.quake-terminal')
|
|
require('module.titlebar')
|
|
require('module.menu')
|
|
require('module.volume-osd')
|
|
require('module.brightness-osd')
|
|
require('module.dynamic-wallpaper')
|
|
require('module.battery-notifier')
|
|
require('module.lockscreen')
|
|
|
|
-- ========================================
|
|
-- Configuration
|
|
-- Load your prefrences
|
|
-- ========================================
|
|
|
|
require('configuration.client')
|
|
require('configuration.root')
|
|
require('configuration.tags')
|
|
root.keys(require('configuration.keys.global'))
|
|
|
|
|
|
-- ========================================
|
|
-- Signals
|
|
-- Signals Listeners and Senders
|
|
-- ========================================
|
|
|
|
screen.connect_signal("request::wallpaper", function(s)
|
|
|
|
-- If wallpaper is a function, call it with the screen
|
|
if beautiful.wallpaper then
|
|
if type(beautiful.wallpaper) == "string" then
|
|
if beautiful.wallpaper:sub(1, #"#") == "#" then
|
|
gears.wallpaper.set(beautiful.wallpaper)
|
|
elseif beautiful.wallpaper:sub(1, #"/") == "/" then
|
|
gears.wallpaper.maximized(beautiful.wallpaper, s)
|
|
end
|
|
else
|
|
beautiful.wallpaper(s)
|
|
end
|
|
end
|
|
|
|
end)
|
|
|
|
-- Signal function to execute when a new client appears.
|
|
client.connect_signal(
|
|
'manage',
|
|
function(c)
|
|
-- Set the windows at the slave,
|
|
-- i.e. put it at the end of others instead of setting it master.
|
|
if not _G.awesome.startup then
|
|
awful.client.setslave(c)
|
|
end
|
|
|
|
if _G.awesome.startup and not c.size_hints.user_position and not c.size_hints.program_position then
|
|
-- Prevent clients from being unreachable after screen count changes.
|
|
awful.placement.no_offscreen(c)
|
|
end
|
|
end
|
|
)
|
|
|
|
-- Enable sloppy focus, so that focus follows mouse.
|
|
client.connect_signal(
|
|
'mouse::enter',
|
|
function(c)
|
|
c:emit_signal('request::activate', 'mouse_enter', {raise = true})
|
|
end
|
|
)
|
|
|
|
client.connect_signal(
|
|
'focus',
|
|
function(c)
|
|
c.border_color = beautiful.border_focus
|
|
end
|
|
)
|
|
|
|
client.connect_signal(
|
|
'unfocus',
|
|
function(c)
|
|
c.border_color = beautiful.border_normal
|
|
end
|
|
)
|