-
Notifications
You must be signed in to change notification settings - Fork 3
/
rc.lua
727 lines (658 loc) · 28.4 KB
/
rc.lua
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
--[[
KDEsome awesome WM config
github.com/denydias/kdesome
based on github.com/copycat-killer/awesome-copycats Powerarrow Darker
--]]
-- {{{ Required libraries
local gears = require("gears")
local awful = require("awful")
awful.rules = require("awful.rules")
require("awful.autofocus")
local wibox = require("wibox")
local beautiful = require("beautiful")
local naughty = require("naughty")
local lain = require("lain")
local keydoc = require("keydoc")
local alttab = require("alttab")
-- }}}
-- {{{ Error handling
-- Startup errorsc
if awesome.startup_errors then
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors })
end
-- Runtime errors
do
local in_error = false
awesome.connect_signal("debug::error", function (err)
if in_error then return end
in_error = true
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, an error happened!",
text = err })
in_error = false
end)
end
-- }}}
-- {{{ Autostart applications
-- Only awesome related. Other apps startup are managed by KDE.
function run_once(cmd)
findme = cmd
firstspace = cmd:find(" ")
if firstspace then
findme = cmd:sub(0, firstspace-1)
end
awful.util.spawn_with_shell("pgrep -u $USER -x " .. findme .. " > /dev/null || (" .. cmd .. ")")
end
-- Compositor
run_once("compton -b --detect-rounded-corners --config " .. os.getenv("HOME") .. "/.config/awesome/compton.conf")
-- uncluter
run_once("unclutter")
-- }}}
-- {{{ Variable definitions
-- localization
os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/kdesome/theme.lua")
-- common
home = os.getenv("HOME")
config_dir = home .. "/.config/awesome"
theme_dir = config_dir .. "/themes/kdesome"
modkey = "Mod4"
altkey = "Mod1"
terminal = "terminator" or "xterm"
-- user defined
icons = home .. "/.kde/share/icons"
wallpapers = home .. "/Sync/Dropbox/Photos/Desktop/"
browser = "firefox"
pim = "kontact --geometry 1304x688+30+48"
im = "kopete --geometry 300x748+0+18"
microblog = "choqok --geometry 400x748+964+18"
filemanager = "dolphin"
kdeconf = "systemsettings"
aweconf = "kate --new --name aweconf " .. home .. "/.conkyrc " ..
config_dir .. "/compton.conf " .. theme_dir .. "/theme.lua "
.. config_dir .. "/rc.lua"
menutheme = "sed 's/xdgmenu = {/xdgmenu = { theme = { height = 16, width = 300 },/'"
menugen = "xdg_menu --format awesome | " .. menutheme .. " > " .. config_dir .. "/xdg_menu.lua"
-- }}}
-- {{{ Layouts and Tags
-- Available layouts
local layouts = {
awful.layout.suit.floating,
awful.layout.suit.tile,
awful.layout.suit.tile.bottom,
awful.layout.suit.fair,
awful.layout.suit.fair.horizontal,
}
-- Available tags
tags = {
names = { "1", "2", "3", "4", "5", "6" },
layout = { layouts[1], layouts[1], layouts[1], layouts[1], layouts[1], layouts[1] }
}
-- Set tags and layouts for each attached screen
for s = 1, screen.count() do
tags[s] = awful.tag(tags.names, s, tags.layout)
end
-- awesome_alttab
alttab.settings.preview_box = true
alttab.settings.preview_box_bg = "#1F1F1FAA"
alttab.settings.preview_box_border = "#1F1F1F00"
alttab.settings.preview_box_fps = 30
alttab.settings.preview_box_delay = 100
alttab.settings.client_opacity = false
-- }}}
-- {{{ Random Wallpapers
-- Get the list of files from a directory. Must be all images or folders and non-empty
function scanDir(directory)
local i, fileList, popen = 0, {}, io.popen
for filename in popen([[find "]] ..directory.. [[" -type f]]):lines() do
i = i + 1
fileList[i] = filename
end
return fileList
end
wallpaperList = scanDir(wallpapers)
-- Apply a random wallpaper on startup
for s = 1, screen.count() do
gears.wallpaper.maximized(wallpaperList[math.random(1, #wallpaperList)], s, true)
end
-- Apply a random wallpaper every changeTime seconds
changeTime = 3600
wallpaperTimer = timer { timeout = changeTime }
wallpaperTimer:connect_signal("timeout", function()
for s = 1, screen.count() do
gears.wallpaper.maximized(wallpaperList[math.random(1, #wallpaperList)], s, true)
end
-- stop the timer (we don't need multiple instances running at the same time)
wallpaperTimer:stop()
-- restart the timer
wallpaperTimer.timeout = changeTime
wallpaperTimer:start()
end)
-- initial start when rc.lua is first run
wallpaperTimer:start()
-- }}}
-- {{{ Menu
-- Submenus
require("xdg_menu")
sys_menu = {
{ "Terminal", terminal, icons .. "/kAwOkenWhite/clear/22x22/apps/terminal.png" },
{ "Configurar KDE", kdeconf, icons .. "/kAwOkenWhite/clear/22x22/apps/kdeapp.png" },
{ "Configurar awesome", aweconf, icons .. "/kAwOkenWhite/clear/22x22/apps/window-manager.png" }}
-- Main Menu
mymainmenu = awful.menu.new({ items = {
{ "Firefox", browser, icons .. "/kAwOkenWhite/clear/22x22/apps/firefox.png" },
{ "Kontact", pim, icons .. "/kAwOkenWhite/clear/22x22/apps/kontact.png" },
{ "Kopete", im, icons .. "/kAwOkenWhite/clear/22x22/apps/kopete.png" },
{ "Choqok", microblog, icons .. "/kAwOkenWhite/clear/22x22/apps/choqok.png" },
{ "Dolphin", filemanager, icons .. "/kAwOkenWhite/clear/22x22/apps/file-manager.png" },
{ "Aplicativos", xdgmenu, icons .. "/kAwOkenWhite/clear/22x22/places/folder-script.png" },
{ "Sistema", sys_menu, icons .. "/kAwOkenWhite/clear/22x22/start-here/start-here-slackware1.png" }}})
-- }}}
-- {{{ Wibox
markup = lain.util.markup
-- Textclock
clockicon = wibox.widget.imagebox(beautiful.widget_clock)
mytextclock = awful.widget.textclock(" %a %d %b %H:%M")
-- calendar
lain.widgets.calendar:attach(mytextclock, { font_size = 10 })
-- Battery
baticon = wibox.widget.imagebox(beautiful.widget_battery)
batwidget = wibox.widget.background(lain.widgets.bat({
settings = function()
if bat_now.perc == "N/A" then
widget:set_markup(" AC ")
baticon:set_image(beautiful.widget_ac)
return
elseif tonumber(bat_now.perc) <= 5 then
baticon:set_image(beautiful.widget_battery_empty)
elseif tonumber(bat_now.perc) <= 15 then
baticon:set_image(beautiful.widget_battery_low)
else
baticon:set_image(beautiful.widget_battery)
end
widget:set_markup(" " .. bat_now.perc .. "% ")
end
}), "#313131")
-- File System Notification
fswidget = lain.widgets.fs()
-- {{ Separators
-- Spacer
spr = wibox.widget.textbox(' ')
-- Left pointing arrow
arrl = wibox.widget.imagebox()
arrl:set_image(beautiful.arrl)
-- Left pointing, lighter at left, darker at right arrow
arrl_dl = wibox.widget.imagebox()
arrl_dl:set_image(beautiful.arrl_dl)
-- Left pointing, darker at left, lighter at right arrow
arrl_ld = wibox.widget.imagebox()
arrl_ld:set_image(beautiful.arrl_ld)
-- Right pointing arrow
arrl_r = wibox.widget.imagebox()
arrl_r:set_image(beautiful.arrl_r)
-- }}
-- Create a wibox for each screen and add it
mywibox = {}
mylayoutbox = {}
mytaglist = {}
mytaglist.buttons = awful.util.table.join(
awful.button({ }, 1, awful.tag.viewonly),
awful.button({ modkey }, 1, awful.client.movetotag),
awful.button({ }, 3, awful.tag.viewtoggle),
awful.button({ modkey }, 3, awful.client.toggletag),
awful.button({ }, 4, function(t) awful.tag.viewnext(awful.tag.getscreen(t)) end),
awful.button({ }, 5, function(t) awful.tag.viewprev(awful.tag.getscreen(t)) end))
mytasklist = {}
mytasklist.buttons = awful.util.table.join(
awful.button({ }, 1, function (c)
if c == client.focus then
c.minimized = true
else
-- Without this, the following
-- :isvisible() makes no sense
c.minimized = false
if not c:isvisible() then
awful.tag.viewonly(c:tags()[1])
end
-- This will also un-minimize
-- the client, if needed
client.focus = c
c:raise()
end
end),
awful.button({ }, 3, function ()
if instance then
instance:hide()
instance = nil
else
instance = awful.menu.clients({ width=250 })
end
end),
awful.button({ }, 4, function ()
awful.client.focus.byidx(1)
if client.focus then client.focus:raise() end
end),
awful.button({ }, 5, function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end))
for s = 1, screen.count() do
-- We need one layoutbox per screen.
mylayoutbox[s] = awful.widget.layoutbox(s)
mylayoutbox[s]:buttons(awful.util.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),
awful.button({ }, 6, function () awful.layout.inc(layouts, 1) end)))
-- Create a taglist widget
mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
-- Create a tasklist widget
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
-- Create the wibox
mywibox[s] = awful.wibox({ position = "top", screen = s, height = 18 })
-- Widgets that are aligned to the upper left
local left_layout = wibox.layout.fixed.horizontal()
left_layout:add(spr)
left_layout:add(mytaglist[s])
left_layout:add(arrl_r)
left_layout:add(spr)
-- Widgets that are aligned to the upper right
-- If you are moving widgets from a section with light grey background to dark grey or vice versa,
-- use a replacement icon as appropriate from themes/powerarrow-darker/alticons so your icons match the bg.
local right_layout = wibox.layout.fixed.horizontal()
if s == 1 then
right_layout:add(spr)
right_layout:add(arrl)
right_layout:add(spr)
right_layout:add(wibox.widget.systray())
right_layout:add(spr)
right_layout:add(arrl_ld)
right_layout:add(baticon)
right_layout:add(batwidget)
right_layout:add(arrl_dl)
right_layout:add(mytextclock)
end
right_layout:add(spr)
right_layout:add(arrl_ld)
right_layout:add(mylayoutbox[s])
-- Now bring it all together (with the tasklist in the middle)
local layout = wibox.layout.align.horizontal()
layout:set_left(left_layout)
layout:set_middle(mytasklist[s])
layout:set_right(right_layout)
mywibox[s]:set_widget(layout)
end
-- }}}
-- {{{ Mouse bindings
-- Root window
root.buttons(awful.util.table.join(
awful.button({ }, 3, function () mymainmenu:toggle() end)
)
)
-- Clients
clientbuttons = awful.util.table.join(
awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
awful.button({ modkey }, 1, awful.mouse.client.move),
awful.button({ modkey }, 3, awful.mouse.client.resize)
)
-- }}}
-- {{{ Key bindings
-- {{ Global keys
globalkeys = awful.util.table.join(
-- Assistance
keydoc.group("Assistência"),
awful.key({ modkey }, "F1", keydoc.display, "Esta ajuda*"),
awful.key({ modkey }, "w",
function ()
mymainmenu:show({ keygrabber = true })
end, "Menu principal"),
awful.key({ modkey }, "b", function ()
mywibox[mouse.screen].visible = not mywibox[mouse.screen].visible
end, "Esconde/mostra barra superior*"),
awful.key({ modkey }, "d", function () awful.util.spawn(filemanager) end, "Abre gerenciador de arquivos*"),
awful.key({ modkey, "Ctrl" }, "Return", function () awful.util.spawn(terminal) end, "Abre terminal em janela*"),
awful.key({ modkey }, ",", function () awful.util.spawn(kdeconf) end, "Abre configurações do KDE*"),
awful.key({ modkey, "Control" }, ",", function () awful.util.spawn(aweconf) end, "Abre configurações do awesome*"),
awful.key({ altkey }, "c", function () lain.widgets.calendar:show(7) end, "Mostra calendário*"),
awful.key({ altkey }, "h", function () fswidget.show(7) end, "Mostra uso do disco*"),
awful.key({ modkey, "Control", "Shift" }, "w", function () awful.util.spawn_with_shell(menugen) end, "Gera menu de aplicativos*"),
awful.key({ modkey, "Control" }, "r", awesome.restart, "Reinicia awesome"),
-- Focus management
keydoc.group("Foco"),
awful.key({ altkey }, "j",
function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end, "Foca janela anterior*"),
awful.key({ altkey }, "k",
function ()
awful.client.focus.byidx( 1)
if client.focus then client.focus:raise() end
end, "Foca próxima janela*"),
awful.key({ modkey, }, "Tab",
function ()
awful.client.focus.history.previous()
if client.focus then
client.focus:raise()
end
end, "Alterna para janela focada anteriormente"),
awful.key({ modkey }, "u", awful.client.urgent.jumpto, "Foca próxima janela urgente"),
awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end, "Foca próxima tela"),
-- awesome_alttab
-- Forward
awful.key({ altkey, }, "Tab",
function ()
alttab.switch(1, "Alt_L", "Tab", "ISO_Left_Tab")
end, "Alterna janelas* (shift para inverter)"),
-- Reverse
awful.key({ altkey, "Shift" }, "Tab",
function ()
alttab.switch(-1, "Alt_L", "Tab", "ISO_Left_Tab")
end),
-- Layout management (tile mode)
keydoc.group("Layout (modo encaixe)"),
awful.key({ modkey }, "l", function () awful.tag.incmwfact(0.05) end, "Aumenta largura mestre"),
awful.key({ modkey }, "h", function () awful.tag.incmwfact(-0.05) end, "Diminui largura mestre"),
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(1) end, "Aumenta número de mestres*"),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster(-1) end, "Diminui número de mestres*"),
awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(1) end, "Aumenta número de colunas*"),
awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol(-1) end, "Diminui número de colunas*"),
awful.key({ modkey, "Ctrl" }, "space", function () awful.layout.inc(layouts, 1) end, "Próximo layout*"),
awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end, "Layout anterior"),
awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx(1) end, "Troca com a próxima janela"),
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx(-1) end, "Troca com a janela anterior")
)
-- { Navigation and tag management
-- Bind all key numbers to tags.
-- Be careful: we use keycodes to make it works on any keyboard layout.
-- This should map on the top row of your keyboard, usually 1 to 9.
for i = 1, 9 do
globalkeys = awful.util.table.join(globalkeys,
keydoc.group("Navegação e Tags"),
awful.key({ modkey }, "#" .. i + 9,
function ()
local screen = mouse.screen
local tag = awful.tag.gettags(screen)[i]
if tag then
awful.tag.viewonly(tag)
end
end,
i == 5 and "Mostra apenas tag #" or nil),
awful.key({ modkey, "Control" }, "#" .. i + 9,
function ()
local screen = mouse.screen
local tag = awful.tag.gettags(screen)[i]
if tag then
awful.tag.viewtoggle(tag)
end
end,
i == 5 and "Mostra/esconde tag #" or nil),
awful.key({ modkey, "Shift" }, "#" .. i + 9,
function ()
local tag = awful.tag.gettags(client.focus.screen)[i]
if client.focus and tag then
awful.client.movetotag(tag)
end
end,
i == 5 and "Move janela para tag #" or nil),
awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
function ()
local tag = awful.tag.gettags(client.focus.screen)[i]
if client.focus and tag then
awful.client.toggletag(tag)
end
end,
i == 5 and "Adiciona janela na tag #" or nil))
end
globalkeys = awful.util.table.join(globalkeys,
keydoc.group("Navegação e Tags"),
awful.key({ modkey }, "Left", awful.tag.viewprev, "Tag anterior"),
awful.key({ modkey }, "Right", awful.tag.viewnext, "Próxima tag"),
awful.key({ modkey }, "Escape", awful.tag.history.restore, "Retorna para tag anterior"),
awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end, "Vai para tag anterior ocupada*"),
awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end, "Vai para próxima tag ocupada*")
)
-- }
-- }}
-- {{ Client Keys
clientkeys = awful.util.table.join(
keydoc.group("Janelas"),
awful.key({ modkey }, "n",
function (c)
-- The client currently has the input focus, so it cannot be
-- minimized, since minimized clients can't have the focus.
c.minimized = true
end, "Minimiza"),
awful.key({ modkey }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
end, "Maximiza"),
awful.key({ modkey }, "c",
function (c)
c:geometry({ x = 30,
y = 48,
width = 1304,
height = 688 })
end, "Centraliza* (modo flutuante)"),
awful.key({ modkey }, "f", function (c) c.fullscreen = not c.fullscreen end, "Alterna para tela cheia"),
awful.key({ modkey }, "o", awful.client.movetoscreen, "Move para outra tela"),
awful.key({ modkey }, "s", function (c) c.sticky = not c.sticky end, "Coloca em todas as tags*"),
awful.key({ modkey }, "t", function (c) c.ontop = not c.ontop end, "Sobe janela*"),
awful.key({ modkey }, "x", function (c) c:kill() end, "Mata aplicação*"),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle, "Torna flutuante" ),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, "Coloca no mestre (modo encaixe)"),
awful.key({ modkey }, "i",
function (c)
local result = ""
result = result .. "<b> Nome :</b> " .. c.name .. "\n"
result = result .. "<b> Classe :</b> " .. c.class .. "\n"
result = result .. "<b>Instância :</b> " .. c.instance .. "\n"
if c.role then
result = result .. "<b> Papel :</b> " .. c.role .. "\n"
else
result = result .. "<b> Papel :</b> Não definido\n"
end
result = result .. "<b> Tipo :</b> " .. c.type .. "\n"
result = result .. "<b> PID :</b> " .. c.pid .. "\n"
result = result .. "<b> XID :</b> " .. c.window .. "\n"
result = result .. "<b>Geometria :</b> " .. c:geometry().x .. "," .. c:geometry().y .. "," .. c:geometry().width .. "," .. c:geometry().height
local appicon = ""
if c.icon then
appicon = c.icon
else
appicon = icons .. "/kAwOkenWhite/clear/22x22/actions/info2.png"
end
naughty.notify({
title = "Informações da Janela do Aplicativo",
text = result,
font = "Terminus 10",
icon = appicon,
})
end, "Informações da janela do aplicativo*")
)
-- }}
-- Set keys
root.keys(globalkeys)
-- }}}
-- {{{ Rules
awful.rules.rules = {
-- All clients will match this rule
{ rule = { },
properties = { border_width = beautiful.border_width,
border_color = beautiful.border_normal,
focus = awful.client.focus.filter,
keys = clientkeys,
maximized_vertical = false,
maximized_horizontal = false,
buttons = clientbuttons,
size_hints_honor = false } },
-- Match all new clients, notify name and class (for debug purposes only)
--{ rule = { },
-- properties = { },
-- callback = function(c)
-- naughty.notify({title="New Client Debug", text="Name: ".. c.name.."\nClass: ".. c.class})
-- end },
-- {{ Application rules
-- Firefox: all clients in screen 1, tag 1
{ rule = { class = "Firefox" },
properties = { tag = tags[1][1] } },
-- { Kontact
-- All clients in screen 1, tag 2
{ rule = { class = "Kontact" },
properties = { tag = tags[1][2] } },
-- Set geometry for main client
{ rule = { class = "Kontact",
role = "MainWindow#1" },
properties = { geometry = { x = 30,
y = 48,
width = 1304,
height = 688 } } },
-- Focus mail composer, get focus when opened
{ rule = { class = "Kontact",
role = "kmail-composer#1" },
properties = { switchtotag = true,
focus = true } },
-- }
-- { Kopete
-- All clients in screen 1, tag 3
{ rule = { class = "Kopete" },
properties = { tag = tags[1][3] } },
-- Set geometry for main client (contact list)
{ rule = { class = "Kopete",
role = "MainWindow#1" },
properties = { geometry = { x = 0,
y = 18,
width = 300,
height = 748 } } },
-- Set geometry and prevent focus steal for secondary client (chat window)
{ rule = { class = "Kopete",
role = "MainWindow#2" },
properties = { switchtotag = false,
focus = false,
geometry = { x = 302,
y = 384,
width = 660,
height = 382 } } },
-- }
-- { Choqok
-- All clients in screen 1, tag 3
{ rule = { class = "Choqok" },
properties = { tag = tags[1][3] } },
-- Set geometry for main client
{ rule = { class = "Choqok",
role = "MainWindow#1" },
properties = { geometry = { x = 964,
y = 18,
width = 400,
height = 748 } } },
-- }
-- Conky: as widget in screen 1, tag 6 and set geometry
{ rule = { class = "Conky" },
properties = { tag = tags[1][6],
switchtotag = true,
floating = true,
ontop = false,
skip_taskbar = true,
geometry = { x = 0,
y = 18,
height = 750 } } },
-- { System Config
-- KDE System Settings: all clients in screen 1, tag 6, set geometry and get focus when opened
{ rule = { class = "Systemsettings",
role = "MainWindow#1" },
properties = { tag = tags[1][6],
switchtotag = true,
focus = true,
geometry = { x = 264,
y = 18,
width = 1100,
height = 748 } } },
-- Kate instance for awesome config: all clients in screen 1, tag 6, set geometry and get focus when opened
{ rule = { class = "Kate",
instance = "aweconf",
role = "__KateMainWindow#1" },
properties = { tag = tags[1][6],
switchtotag = true,
focus = true,
geometry = { x = 264,
y = 18,
width = 1100,
height = 748 } } },
-- }
-- Kate regular instances: set geometry
{ rule = { class = "Kate",
instance = "kate",
role = "__KateMainWindow#1" },
properties = { focus = true,
geometry = { y = 18,
width = 683,
height = 748 } } },
-- }}
}
-- }}}
-- {{{ Signals
-- Functions to execute when a new client appears.
client.connect_signal("manage", function (c, startup)
-- enable sloppy focus
c: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)
-- Prevent overlap and off screen
if not startup and not c.size_hints.user_position
and not c.size_hints.program_position then
awful.placement.no_overlap(c)
awful.placement.no_offscreen(c)
end
end)
-- Manage features when a client get the focus
client.connect_signal("focus",
function(c)
-- No border for maximized clients, full screen flash content and special ones
if c.maximized_horizontal == true and c.maximized_vertical == true then
c.border_color = beautiful.border_normal
elseif c.name == "plugin-container" then
local flash_client = c
mt = timer({timeout=0.1})
mt:connect_signal("timeout",function() c.fullscreen = true
mt:stop() end)
mt:start()
-- Unless they are special ones
elseif c.class == "Conky" or c.class == "Kruler" or c.class == "krunner" then
c.border_width = 0
else
c.border_color = beautiful.border_focus
end
end)
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
-- Arrange signal handler
for s = 1, screen.count() do
screen[s]:connect_signal("arrange", function ()
local clients = awful.client.visible(s)
local layout = awful.layout.getname(awful.layout.get(s))
if #clients > 0 then -- Fine grained borders and floaters control
for _, c in pairs(clients) do
-- Floaters almost always have borders
if (awful.client.floating.get(c) or layout == "floating") and (c.class ~= "Conky" and c.class ~= "Kruler" and c.class ~= "krunner") then
c.border_width = beautiful.border_width
-- Unless they are special ones
elseif c.class == "Conky" or c.class == "Kruler" or c.class == "krunner" then
c.border_width = 0
-- No borders with only one visible client
elseif #clients == 1 or layout == "max" then
clients[1].border_width = 0
else
c.border_width = beautiful.border_width
end
end
end
end)
end
-- }}}