summaryrefslogtreecommitdiff
path: root/rc.lua
blob: 359fd59f0abe50cb527b8fb7dd9639aaa1916579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
-- Standard awesome library
local gears = require("gears")
local awful = require("awful")
require("awful.autofocus")
-- Widget and layout library
local wibox = require("wibox")
-- Theme handling library
local beautiful = require("beautiful")
-- Notification library
local naughty = require("naughty")

local bindings   = require("bindings")
local commondefs = require("commondefs")
local pager      = require("pager")
local workspace  = require("workspace")

-- {{{ Error handling
-- Check if awesome encountered an error during startup and fell back to
-- another config (This code will only ever execute for the fallback config)
if awesome.startup_errors then
    naughty.notify({ preset = naughty.config.presets.critical,
                     title = "Oops, there were errors during startup!",
                     text = awesome.startup_errors })
end

-- Handle runtime errors after startup
do
    local in_error = false
    awesome.connect_signal("debug::error", function (err)
        -- Make sure we don't go into an endless error loop
        if in_error then return end
        in_error = true

        naughty.notify({ preset = naughty.config.presets.critical,
                         title = "Oops, an error happened!",
                         text = tostring(err) })
        in_error = false
    end)
end
-- }}}

-- {{{ Variable definitions
-- Themes define colours, icons, font and wallpapers.
beautiful.init(awful.util.getdir("config") .. "/theme.lua")

-- Table of layouts to cover with awful.layout.inc, order matters.
local layouts =
{
    awful.layout.suit.tile,
    awful.layout.suit.tile.bottom,
}
-- }}}

-- Panel

-- clock, shared among all screens
local clock_time = wibox.widget.textclock("<span size=\"18000\">%H:%M</span>", 20)
local clock_date = wibox.widget.textclock("<span size=\"11500\">%a %F</span>", 60)
clock_time:set_align("center")
clock_date:set_align("center")

-- systray
local tray_icon_size = 24
local systray = wibox.widget.systray()

function update_systray_iconsize()
    systray:set_base_size(beautiful.xresources.apply_dpi(tray_icon_size, screen.primary))
end

screen.connect_signal('primary_changed', update_systray_iconsize)
update_systray_iconsize()

-- Create a wibox for each screen and add it
mywibox = {}
mypromptbox = {}

local wsp = workspace.Workspace:new(layouts)

for s in screen do
    local panel_width  = beautiful.xresources.apply_dpi(128, s)

    wsp:view(s, s.index, 1)

    -- Create a promptbox for each screen
    mypromptbox[s] = awful.widget.prompt()

    -- Create an imagebox widget which will contains an icon indicating which layout we're using.
    local layoutbox = awful.widget.layoutbox(s)
    layoutbox:buttons(gears.table.join(
                      awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
                      awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
                      awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
                      awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))

    -- Create a tasklist widget
    local pgr = pager.Pager:new(s)
    pgr:set_desktop(wsp.desktops[s.index])

    wsp.signals:connect_signal("desktop:view",
        function(signals, view_screen, desktop)
            if view_screen == s then
                pgr:set_desktop(wsp.desktops[desktop])
            end
        end)

    -- Widgets that are aligned to the bottom of the tool bar
    local layout_bottom = wibox.layout.fixed.vertical()

    layout_bottom:add(systray)

    layout_bottom:add(layoutbox)
    layout_bottom:add(clock_time)
    layout_bottom:add(clock_date)

    -- Now bring it all together (with the tasklist in the middle)
    local layout = wibox.layout.align.vertical()
    layout:set_top(mypromptbox[s])
    layout:set_middle(pgr.widget)
    layout:set_bottom(layout_bottom)

    -- Create the wibox
    mywibox[s] = awful.wibar({ position = "right", screen = s, width = panel_width })
    mywibox[s]:set_widget(layout)
end


clientbuttons = gears.table.join(
    awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
    awful.button({ commondefs.modkey }, 1, awful.mouse.client.move),
    awful.button({ commondefs.modkey }, 3, awful.mouse.client.resize))

local globalkeys, clientkeys = bindings.create(wsp)

-- Set keys
root.keys(globalkeys)

-- {{{ Rules
-- Rules to apply to new clients (through the "manage" signal).
awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
      properties = { border_width = 3,
                     border_color = "#000000",
                     focus = awful.client.focus.filter,
                     raise = true,
                     keys = clientkeys,
                     buttons = clientbuttons } },
    { rule = { class = "mpv" },
      properties = { floating = true } },
}
-- }}}

-- {{{ Signals
-- Signal function to execute when a new client appears.
client.connect_signal("manage", function (c, startup)
    -- Prevent clients from being unreachable
    awful.placement.no_offscreen(c)

    if startup then
        return
    end

    -- Put windows in a smart way, only if they does not set an initial position.
    if not c.size_hints.user_position and not c.size_hints.program_position then
        awful.placement.no_overlap(c)
    end

    -- put the client where the mouse is
    if c.screen ~= mouse.screen then
        c:move_to_screen(mouse.screen)
    end

    -- put new clients at the end
    awful.client.setslave(c)

    -- give the new client focus
    if c.focusable then
        gears.timer.delayed_call(function(c) c:jump_to(false) end, c)
    end
end)

client.connect_signal("focus", function(c) c.border_color = "#b0e2ff" end)
client.connect_signal("unfocus", function(c) c.border_color = "#000000" end)

-- Enable sloppy focus
client.connect_signal("mouse::enter",
    function(c)
        if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
            and awful.client.focus.filter(c) then
            client.focus = c
        end
    end)

-- }}}