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 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 | require 'fixes'
-- Standard awesome library
gears = require("gears")
awful = require("awful")
awful.autofocus = require("awful.autofocus")
awful.rules = require("awful.rules")
-- Widget and layout library
wibox = require("wibox")
-- Theme handling library
beautiful = require("beautiful")
-- Notification library
naughty = require("naughty")
menubar = require("menubar")
keydoc = require("keydoc")
-- Widget library
vicious = require("vicious")
-- Load Debian menu entries
require("debian.menu")
-- Load freedesktop menu
require('freedesktop.utils')
require('freedesktop.menu')
-- utils Library
luadbus = require("lua-dbus")
utilz = require("utilz")
uzful = require("uzful")
require("uzful.restore")
-- keyboard mouse control
if uzful.util.module.exists(package, "rodentbane") then
require("rodentbane")
end
-- audio control
couth = require("couth")
require("couth.lib.alsa")
couth.CONFIG.ALSA_CONTROLS = {
'Master',
'PCM',
}
require("backlight") -- uses couch too
beautiful.init(awful.util.getdir("config") .. "/theme.lua")
myscreensmenu = uzful.menu.xrandr({
-- order
"LVDS1", "HDMI1", "VGA1",
-- names
LVDS1 = "Local",
HDMI1 = "DP++",
VGA1 = "VGA",
}, { icons = theme.randr })
SCREEN = myscreensmenu.const()
rc = { conf = require("conf") }
-- {{{ Variable definitions
-- Themes define colours, icons, and wallpapers
uzful.notifications.debug()
uzful.notifications.patch()
uzful.util.patch.vicious()
menubar.cache_entries = true
menubar.show_categories = true -- Change to false if you want only programs to appear in the menu
menubar.geometry.height = theme.menu_height
uzful.widget.repl.geometry.height = theme.menu_height
-- vicious caching
vicious.cache(vicious.widgets.thermal)
vicious.cache(vicious.widgets.net)
-- This is used later as the default terminal and editor to run.
terminal = "x-terminal-emulator"
editor = os.getenv("EDITOR") or "vim"
editor_cmd = terminal .. " -e " .. editor
freedesktop.utils.terminal = terminal
freedesktop.utils.icon_theme = theme.icon_theme
-- Default modkey.
-- Usually, Mod4 is the key with a logo between Control and Alt.
-- If you do not like this or do not have such a key,
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
-- However, you can use another modifier like Mod1, but it may interact with others.
modkey = "Mod4"
-- Table of layouts to cover with awful.layout.inc, order matters.
awful.layout.layouts = {
awful.layout.suit.floating,
awful.layout.suit.tile,
awful.layout.suit.tile.left,
awful.layout.suit.tile.bottom,
awful.layout.suit.tile.top,
awful.layout.suit.fair,
awful.layout.suit.fair.horizontal,
uzful.layout.suit.strips.rows,
uzful.layout.suit.strips.columns,
awful.layout.suit.spiral,
awful.layout.suit.spiral.dwindle,
awful.layout.suit.max,
awful.layout.suit.max.fullscreen,
awful.layout.suit.magnifier
}
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.centered(beautiful.wallpaper, s, theme.bg_normal)
end
end
-- }}}
-- {{{ Tags
-- Define a tag table which hold all screen tags.
tags = {}
tag_names = {"☼", "✪", "⌥", "✇", "⌤", "⍜", "⌬", "♾", "⌘", "⚗", "Ω", "·"}
for s = 1, screen.count() do
-- Each screen has its own tag table.
tags[s] = awful.tag(tag_names, s, awful.layout.layouts[12])
end
myrestorelist = nil
if rc.conf.restore then
myrestorelist = uzful.restore()
end
-- }}}
-- {{{ Menu
-- Create a laucher widget and a main menu
detailed_graphs = uzful.menu.toggle_widgets()
if not rc.conf.graphs then detailed_graphs.toggle() end
myfreedesktopmenu = freedesktop.menu.new()
mylayoutmenu = uzful.menu.layouts(awful.layout.layouts, { align = "right", width = 60 })
mylayoutmenu:add({ "actions", uzful.menu.tag_info({ theme = { width = 150 } }) })
mysystemmenu = {}
unagi = function () awful.util.spawn_with_shell("unagi") end
lock = function () awful.util.spawn_with_shell("xtrlock") end
screenshot = function () awful.util.spawn("ksnapshot") end
invert_screen = function () awful.util.spawn("xcalib -invert -alter", false) end
table.insert(mysystemmenu, { "invert screen", invert_screen })
table.insert(mysystemmenu, { "screenshot", screenshot })
table.insert(mysystemmenu, { "lock", lock })
if rc.conf.dbus then
table.insert(mysystemmenu, { "suspend", function ()
naughty.notify({ text = "system suspsending ... " })
awful.util.spawn_with_shell("sync && dbus-send --system --print-reply --dest='org.freedesktop.UPower' /org/freedesktop/UPower org.freedesktop.UPower.Suspend & xtrlock")
end })
end
taglist_filter = uzful.util.functionlist({
awful.widget.taglist.filter.noempty,
awful.widget.taglist.filter.all })
if rc.conf.taglist == 'all' then taglist_filter.next() end
myawesomemenu = {
{ "system", mysystemmenu },
{ "second screen", myscreensmenu },
{ "wallpapers", uzful.menu.wallpaper.menu(theme.wallpapers)},
{ "layouts", mylayoutmenu.menu_switch },
uzful.menu.switch.filter({
filter = taglist_filter,
labels = {
"show all tags",
"hide empty tags",
},
}),
uzful.menu.switch.numbered_tag_names(tags, {
numbered = (rc.conf.tags == 'number'),
names = tag_names,
label = { named = "symbol" },
}),
uzful.menu.switch.toggle({
test = detailed_graphs.visible,
toggle = detailed_graphs.toggle,
labels = {
[true] = "disable graphs",
[false] = "enable graphs",
},
}),
{ "console", function () uzful.widget.repl.show(mouse.screen, { prompt = theme.prompt.lua }) end },
{ "manual", terminal .. " -e man awesome" },
{ "edit config", editor_cmd .. " " .. awful.util.getdir("config") .. "/rc.lua" },
{ "keybindings", keydoc.display },
{ "restart", awesome.restart },
{ "quit", awesome.quit },
}
mymainmenu = awful.menu({ max = 100,
{ "awesome", myawesomemenu, beautiful.awesome_icon },
{ "Menu", myfreedesktopmenu, freedesktop.utils.lookup_icon({ icon = 'kde' }) },
{ "Debian", debian.menu.Debian_menu.Debian, freedesktop.utils.lookup_icon({ icon = 'debian-logo' }) },
{ "open terminal", terminal, freedesktop.utils.lookup_icon({ icon = 'terminal' }) },
})
if rc.conf.syslog then
-- luarocks install inotify INOTIFY_INCDIR=/usr/include/x86_64-linux-gnu
mysyslog = uzful.widget.syslog({
screen = SCREEN.LVDS1, lines = 64,
logs = {
syslog = { file = "/var/log/syslog" },
-- xsessionerrors = { file = "/home/dodo/.xsession-errors" },
},
})
end
mylauncher = nil
if rc.conf.launcher then
mylauncher = awful.widget.launcher({
image = beautiful.awesome_icon,
menu = mymainmenu,
})
end
-- }}}
-- {{{ Wibox
-- Create a textclock widget
mytextclock = nil
if rc.conf.clock then
mytextclock = awful.widget.textclock(' %H:%M ')
mytextclock:set_font("sans 5")
end
mycal = nil
if rc.conf.clock and rc.conf.calendar then
mycal = uzful.widget.calendar({ font = 7,
head = '<span color="#666666">$1</span>',
week = '<span color="#999999">$1</span>',
day = '<span color="#BBBBBB">$1</span>',
number = '<span color="#EEEEEE">$1</span>',
current = '<span color="green">$1</span>',
})
mytextclock:buttons(awful.util.table.join(
awful.button({ }, 1, function() mycal:switch_month(-1) end),
awful.button({ }, 2, function() mycal:now() end),
awful.button({ }, 3, function() mycal:switch_month( 1) end),
awful.button({ }, 4, function() mycal:switch_month(-1) end),
awful.button({ }, 5, function() mycal:switch_month( 1) end),
awful.button({ 'Shift' }, 1, function() mycal:switch_year(-1) end),
awful.button({ 'Shift' }, 2, function() mycal:now() end),
awful.button({ 'Shift' }, 3, function() mycal:switch_year( 1) end),
awful.button({ 'Shift' }, 4, function() mycal:switch_year(-1) end),
awful.button({ 'Shift' }, 5, function() mycal:switch_year( 1) end)
))
end
-- Memory Progressbar
mymem = nil
if rc.conf.memory then
mymem = uzful.widget.progressimage({
x = 2, y = 2, width = 5, height = 10,
image = theme.memory, draw_image_first = false })
uzful.widget.set_properties(mymem.progress, {
vertical = true, background_color = "#000000",
border_color = nil, color = "#0173FF" })
--mymem:set_color({ "#001D40", "#535d6c", "#0173FF" })
vicious.register(mymem.progress, vicious.widgets.mem, "$1", 4)
-- Memory Text
mymem.text = wibox.widget.textbox()
mymem.text:set_font(theme.widget_font .. " 12")
vicious.register(mymem.text, vicious.widgets.mem,
'$4mb free, $1%', 60)
end
-- Battery Progressbar
mybattery = nil
if rc.conf.sysfs and rc.conf.battery then
mybattery = uzful.widget.battery({
bat = 'BAT0', ac = 'AC',
x = 3, y = 4, width = 3, height = 7, -- matching theme/battery.png
theme = theme, font = theme.widget_font .. " 12",
})
end
if rc.conf.sysfs and rc.conf.monitor then
-- reuse mybattery.timer here
local bat = mybattery or {}
bat.timer = uzful.util.listen.sysfs({ subsystem = "drm", timer = bat.timer },
function (device, props)
if props.action == "change" and props.devtype == "drm_minor" and screen.count() > 1 then
naughty.notify({
timeout = 0,
hover_timeout = 0.1,
position = "bottom_right",
icon = theme.nomonitor })
end
end).timer
end
myphone = nil
if rc.conf.dbus and rc.conf.phone then
myphone = uzful.widget.battery.phone({
id = '5608e506aeee6824',
x = 3, y = 5, width = 2, height = 5, -- matching theme/phone/battery.png
theme = theme.phone, font = theme.widget_font .. " 12",
})
end
mytemp = nil
if rc.conf.temperature then
-- Temperature Info
mytemp = uzful.widget.temperature({
width = 161, height = 42,
font = "sans 6",
})
table.insert(detailed_graphs.widgets, mytemp.graph)
vicious.register(mytemp.notifications, vicious.widgets.thermal, "$1", 30, "thermal_zone0")
vicious.register(mytemp.graph, vicious.widgets.thermal, "$1", 4, "thermal_zone0")
end
-- net usage graphs
mynetgraphs = nil
if rc.conf.network then
mynetgraphs = uzful.widget.netgraphs({ default = "wlan0",
up_fgcolor = "#D0000399", down_fgcolor = "#95D04399",
up_mgcolor = "#D0000311", down_mgcolor = "#95D04311",
highlight = ' <b>$1</b>', direction = "right",
normal = ' <span color="#666666">$1</span>',
big = { width = 161, height = 42, interval = 1, scale = "kb" },
small = { width = 23, height = theme.menu_height, interval = 1 } })
mynetgraphs.update_active()
mynetgraphs.update_widget = function ()
mynetgraphs.update_active()
myinfobox.net.height = mynetgraphs.big.height
myinfobox.net:update()
if myphone then
myphone.update()
end
end
mynetgraphs.small.layout:buttons(awful.util.table.join(
awful.button({ }, 1, mynetgraphs.toggle),
awful.button({ }, 2, mynetgraphs.update_widget),
awful.button({ }, 3, mynetgraphs.toggle),
awful.button({ }, 4, mynetgraphs.toggle),
awful.button({ }, 5, mynetgraphs.toggle)
))
for _, widget in ipairs(mynetgraphs.big.widgets) do
table.insert(detailed_graphs.widgets, widget)
end
end
-- Network Progressbar
mynet = nil
if rc.conf.dbus and rc.conf.network == 'wicd' then
mynet = uzful.widget.wicd({
x = 1, y = 2, width = 3, height = 9,
theme = theme.wicd, font = theme.widget_font .. " 7",
onupdate = mynetgraphs.update_widget,
onconnect = function (kind)
if kind == "wireless" then
mynetgraphs.switch("wlan0")
elseif kind == "wired" then
mynetgraphs.switch("eth0")
end
end,
})
end
-- CPU graphs
if rc.conf.cpu then
mycpugraphs = uzful.widget.cpugraphs({
fgcolor = "#D0752A", bgcolor = "#000000", direction = "right",
load = { interval = 30, font = theme.widget_font .. " 10",
text = ' <span color="#666666">$1</span>' ..
' <span color="#9A9A9A">$2</span>' ..
' <span color="#DDDDDD">$3</span>' },
big = { width = 161, height = 42, interval = 1, direction = "left" },
small = { width = 42, height = theme.menu_height, interval = 1 } })
table.insert(detailed_graphs.widgets, mycpugraphs.load)
for _, widget in ipairs(mycpugraphs.big.widgets) do
table.insert(detailed_graphs.widgets, widget)
end
end
-- infoboxes funs
myinfobox = { net = {}, cpu = {}, cal = {}, bat = {}, mem = {}, temp = {}, wifi = {} }
myinfobox.phone = { bat = {} }
if mynetgraphs then
myinfobox.net = uzful.widget.infobox({
position = "top", align = "right",
widget = mynetgraphs.big.layout,
height = mynetgraphs.big.height,
width = mynetgraphs.big.width })
end
if mycpugraphs then
myinfobox.cpu = uzful.widget.infobox({
position = "top", align = "right",
widget = mycpugraphs.big.layout,
height = mycpugraphs.big.height,
width = mycpugraphs.big.width })
end
if mytemp then
myinfobox.temp = uzful.widget.infobox({
size = function () return mytemp.graph:fit(-1, -1) end,
position = "top", align = "right",
widget = uzful.layout.build({
widget = mytemp.graph,
reflection = { vertical = true },
layout = wibox.layout.mirror }) })
end
if mycal then
myinfobox.cal = uzful.widget.infobox({
size = function () return mycal.width,mycal.height end,
position = "top", align = "right",
widget = mycal.widget })
end
if mybattery then
myinfobox.bat = uzful.widget.infobox({
size = function () return mybattery.text:fit(-1, -1) end,
position = "top", align = "right",
widget = mybattery.text })
end
if mymem then
myinfobox.mem = uzful.widget.infobox({
size = function () return mymem.text:fit(-1, -1) end,
position = "top", align = "right",
widget = mymem.text })
end
if myphone then
myinfobox.phone.bat = uzful.widget.infobox({
size = function () return myphone.text:fit(-1, -1) end,
position = "top", align = "right",
widget = myphone.text })
end
if mynet then
myinfobox.wifi = uzful.widget.infobox({
size = function () return mynet.text:fit(-1, -1) end,
position = "top", align = "right",
widget = mynet.text })
end
do local _ = utilz.connect_graph_on_mouse_enter -- (widget, box, toggle)
if mynetgraphs then _(mynetgraphs.small.layout, myinfobox.net, detailed_graphs) end
if mycpugraphs then _(mycpugraphs.small.layout, myinfobox.cpu, detailed_graphs) end
if mytemp then _(mytemp.text, myinfobox.temp, detailed_graphs) end
end
do local _ = utilz.connect_update_on_mouse_enter -- (widget, box, updatables...)
if mycal then _(mytextclock, myinfobox.cal, mycal) end
if mymem then _(mymem, myinfobox.mem) end
if mynet then _(mynet.widget, myinfobox.wifi) end
if myphone then _(myphone.widget, myinfobox.phone.bat) end
if mybattery then _(mybattery.widget, myinfobox.bat) end
end
-- Create a wibox for each screen and add it
mywibox = {}
mynotification = {}
mypromptbox = {}
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
c.minimized = false
if not c:isvisible() then
awful.tag.viewonly(c:tags()[1])
end
client.focus = c
c:raise()
end
end),
awful.button({ }, 2, function ()
if instance then
instance:hide()
instance = nil
else
instance = uzful.menu.daemons({theme={width=250}})
end
end),
awful.button({ }, 3, function ()
if instance then
instance:hide()
instance = nil
else
instance = uzful.menu.clients({theme={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
-- Create a promptbox for each screen
mypromptbox[s] = awful.widget.prompt({ prompt = theme.prompt.cmd })
-- Create an imagebox widget which will contains an icon indicating which layout we're using.
-- 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( 1) end),
awful.button({ }, 2, function () mylayoutmenu:toggle() end),
awful.button({ }, 3, function () awful.layout.inc(-1) end),
awful.button({ }, 4, function () awful.layout.inc( 1) end),
awful.button({ }, 5, function () awful.layout.inc(-1) end)))
-- Create a taglist widget
mytaglist[s] = awful.widget.taglist(s, taglist_filter.call, mytaglist.buttons)
-- Create a tasklist widget
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
-- Create a notification manager widget
if rc.conf.notifications then
mynotification[s] = uzful.notifications(s, {
max = screen[s].workarea.height - theme.menu_height,
menu = { theme = { width = 342 } },
text = '<span size="small">$1</span>' })
end
-- Create the wibox
mywibox[s] = awful.wibox({ position = "top", screen = s, height = theme.menu_height })
if myrestorelist and myrestorelist[s] and myrestorelist[s].length > 0 then
myrestorelist[s].widget = uzful.widget.infobox({ screen = s,
size = myrestorelist[s].fit,
position = "top", align = "left",
visible = true, ontop = false,
widget = myrestorelist[s].layout })
myrestorelist[s].layout:connect_signal("widget::updated", function ()
if myrestorelist[s].length == 0 then
myrestorelist[s].widget:hide()
myrestorelist[s].widget.screen = nil
else
myrestorelist[s].widget:update()
end
end)
end
local layout = uzful.layout.build({
layout = wibox.layout.align.horizontal,
left = { layout = wibox.layout.fixed.horizontal,
mylauncher or nil,
mytaglist[s],
mypromptbox[s] },
middle = mytasklist[s],
right = { layout = wibox.layout.fixed.horizontal,
function () return s == SCREEN.LVDS1 and wibox.widget.systray() or nil end,
mynotification[s] and mynotification[s].text or nil,
mynetgraphs and mynetgraphs.small.layout or nil,
mycpugraphs and mycpugraphs.small.layout or nil,
mytemp and mytemp.text or nil,
mytextclock or nil,
mynet and mynet.widget or nil,
myphone and myphone.widget or nil,
mybattery and mybattery.widget or nil,
mymem or nil,
mylayoutbox[s] }
})
mywibox[s]:set_widget(layout)
if mynotification[s] then
mynotification[s].text:buttons(awful.util.table.join(
awful.button({ }, 1, function () mynotification[s]:toggle_menu() end),
awful.button({ }, 3, function () mynotification[s]:toggle() end)
))
end
end
-- }}}
-- {{{ Mouse bindings
root.buttons(awful.util.table.join(
awful.button({ }, 3, function () mymainmenu:toggle() end),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
))
if rc.conf.syslog then
uzful.widget.syslog.get_text(mysyslog):buttons(awful.util.table.join(
awful.button({ }, 3, function () mymainmenu:toggle() end),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
))
end
-- }}}
volume = {
master = {
lower = function (x) couth.notifier:notify( couth.alsa:setVolume('Master',(x or 2)..'dB-')) end,
raise = function (x) couth.notifier:notify( couth.alsa:setVolume('Master',(x or 2)..'dB+')) end,
toggle = function () couth.notifier:notify( couth.alsa:setVolume('Master','toggle')) end,
},
pcm = {
lower = function (x) couth.notifier:notify( couth.alsa:setVolume('PCM',(x or 2)..'dB-')) end,
raise = function (x) couth.notifier:notify( couth.alsa:setVolume('PCM',(x or 2)..'dB+')) end,
toggle = function () couth.notifier:notify( couth.alsa:setVolume('PCM','toggle')) end,
},
}
backlight = {
lighten = function (x) couth.notifier:notify( couth.back:setLight( x or 10)) end,
darken = function (x) couth.notifier:notify( couth.back:setLight((x or 10) * -1)) end,
}
-- {{{ Key bindings
globalkeys = awful.util.table.join(
awful.key({}, "XF86Launch1", lock),
awful.key({}, "XF86ScreenSaver", lock),
awful.key({}, "#149", invert_screen),
keydoc.group("tag management"),
awful.key({ modkey, }, "Left", awful.tag.viewprev , "previous"),
awful.key({ modkey, }, "Right", awful.tag.viewnext , "next"),
awful.key({ modkey, }, "Escape", awful.tag.history.restore, "restore"),
keydoc.group("focus"),
awful.key({ modkey, }, "u", awful.client.urgent.jumpto,"urgent window"),
awful.key({ modkey, }, "Tab",
function ()
awful.client.focus.history.previous()
if client.focus then
client.focus:raise()
end
end, "previously focused window"),
awful.key({ modkey, }, "k",
function ()
awful.client.focus.byidx( 1)
if client.focus then client.focus:raise() end
end, "next window"),
awful.key({ modkey, }, "j",
function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end, "previous window"),
awful.key({ modkey, }, "a", function ()
if instance and instance.wibox.visible then
instance:hide()
instance = nil
else
instance = awful.menu.clients(nil,
{ keygrabber = true, theme = { width = 250 } } )
end
end, "choose from list"),
awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end, "next screen"),
awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end, "previous screen"),
keydoc.group("layout manipulation"),
awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end,"swap with next window"),
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end,"swap with previous window"),
awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end, "increase master width factor"),
awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end, "decrease master width factor"),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end, "increase number of masters"),
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end, "decrease number of masters"),
awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end, "increase number of columns"),
awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end, "decrease number of columns"),
awful.key({ modkey, "Control" }, "r", uzful.layout.reset, "reset layout back to defaults"),
awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end, "next layout"),
awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end, "previous layout"),
keydoc.group("control sound"),
awful.key({ modkey }, "<", volume.master.lower, "lower master"),
awful.key({ modkey, "Shift" }, "<", volume.master.raise, "raise master"),
awful.key({}, "XF86AudioLowerVolume", volume.master.lower),
awful.key({}, "XF86AudioRaiseVolume", volume.master.raise),
awful.key({}, "XF86AudioMute", volume.master.toggle),
awful.key({ "Control", modkey }, "<", volume.pcm.lower, "lower pcm"),
awful.key({ "Control", modkey, "Shift" }, "<", volume.pcm.raise, "raise pcm"),
awful.key({ "Control" }, "XF86AudioLowerVolume", volume.pcm.lower),
awful.key({ "Control" }, "XF86AudioRaiseVolume", volume.pcm.raise),
awful.key({ "Control" }, "XF86AudioMute", volume.pcm.toggle),
awful.key({ "Shift" }, "XF86AudioLowerVolume", function () volume.master.lower(5) end),
awful.key({ "Shift" }, "XF86AudioRaiseVolume", function () volume.master.raise(5) end),
awful.key({ "Control", "Shift" }, "XF86AudioLowerVolume", function () volume.pcm.lower(5) end),
awful.key({ "Control", "Shift" }, "XF86AudioRaiseVolume", function () volume.pcm.raise(5) end),
keydoc.group("misc"),
awful.key({}, "XF86MonBrightnessDown", backlight.darken, "darken backlight" ),
awful.key({}, "XF86MonBrightnessUp", backlight.lighten, "lighten backlight"),
awful.key({ "Shift" }, "XF86MonBrightnessDown", function () backlight.darken( 20) end),
awful.key({ "Shift" }, "XF86MonBrightnessUp", function () backlight.lighten(20) end),
awful.key({ modkey, }, "Print", screenshot,"screenshot"),
awful.key({ modkey, }, "w", function ()
local g = screen[mouse.screen].geometry
mymainmenu:toggle({
coords = {
x = g.x + math.floor(g.width * 0.5) - 8,
y = g.y + math.floor(g.height * 0.5) - 8
},
keygrabber = true })
end, "menu"),
-- Standard program
awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end, "spawn terminal"),
awful.key({ modkey, "Shift", "Control" }, "r", awesome.restart,"restart awesome"),
awful.key({ modkey, "Shift" }, "q", awesome.quit, "quit awesome"),
-- Prompt
awful.key({ modkey, }, "r", function () mypromptbox[mouse.screen]:run() end, "prompt"),
awful.key({ modkey, "Shift" }, "r", function () menubar.show(mouse.screen) end, "menubar"),
awful.key({ modkey, "Shift" }, "x", function () uzful.widget.repl.show(mouse.screen, { prompt = theme.prompt.lua }) end, "repl"),
awful.key({ modkey }, "x",
function ()
awful.prompt.run({ prompt = theme.prompt.lua },
mypromptbox[mouse.screen].widget,
awful.util.eval, nil,
awful.util.getdir("cache") .. "/history_eval")
end, "run lua")
)
clientkeys = awful.util.table.join(
keydoc.group("window specific"),
awful.key({ modkey, "Control", "Shift" }, "space", uzful.widget.titlebar.mirror, "mirror titlebar"),
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end, "fullscreen"),
awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end, "kill"),
awful.key({ modkey, }, "q", function (c) c:kill() end, "kill"),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle , "toggle floating"),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, "get master"),
awful.key({ modkey, }, "o", function(c) awful.client.movetoscreen(c,c.screen-1) end, "move to previous screen"),
awful.key({ modkey, }, "p", function(c) awful.client.movetoscreen(c,c.screen+1) end, "move to next screen"),
awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, "toggle ontop"),
awful.key({ modkey, }, "s", function (c) c.sticky = not c.sticky end, "toggle sticky"),
awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end, "minimize"),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
end, "toggle maximized"),
awful.key({ modkey, }, "g",
function (c)
uzful.groups.create(awful.layout.suit.fair, c)
end)
)
globalkeys = awful.util.table.join(globalkeys,
awful.key({ modkey, "Control" }, "n", function () awful.client.restore() end, "restore minimized"))
-- Compute the maximum number of digit we need
keynumber = 0
for s = 1, screen.count() do
keynumber = math.max(keynumber, #tags[s])
globalkeys = awful.util.table.join(globalkeys,
awful.key({ modkey }, "F" .. s,
function ()
awful.screen.focus(s)
end))
end
-- 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, keynumber do
globalkeys = awful.util.table.join(globalkeys,
awful.key({ modkey }, "#" .. i + 9,
function ()
local screen = mouse.screen
if tags[screen][i].selected then
return awful.tag.history.restore()
end
if tags[screen][i] then
awful.tag.viewonly(tags[screen][i])
end
end),
awful.key({ modkey, "Mod1" }, "#" .. i + 9,
function ()
uzful.client.focus.byabsidx(i)
if client.focus then client.focus:raise() end
end),
awful.key({ modkey, "Control" }, "#" .. i + 9,
function ()
local screen = mouse.screen
if tags[screen][i] then
awful.tag.viewtoggle(tags[screen][i])
end
end),
awful.key({ modkey, "Shift" }, "#" .. i + 9,
function ()
if client.focus and tags[client.focus.screen][i] then
awful.client.movetotag(tags[client.focus.screen][i])
end
end),
awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
function ()
if client.focus and tags[client.focus.screen][i] then
awful.client.toggletag(tags[client.focus.screen][i])
end
end))
end
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))
-- 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,
raise = true,
keys = clientkeys,
buttons = clientbuttons } },
{ rule = { class = "mplayer2" },
properties = { floating = true } },
{ rule = { class = "mpv" },
properties = { floating = true } },
{ rule = { class = "qlua" },
properties = { floating = true } },
{ rule = { class = "Qlua" },
properties = { floating = true } },
{ rule = { class = "vlc" },
properties = { floating = true } },
{ rule = { class = "lastfm" },
properties = { floating = true } },
{ rule = { class = "feh" },
properties = { floating = true } },
{ rule = { class = "pinentry" },
properties = { floating = true } },
{ rule = { class = "gimp" },
properties = { floating = true } },
{ rule = { class = "Hamster-time-tracker" },
properties = { floating = true } },
-- Set Firefox to always map on tags number 1 of screen 1.
{ rule = { class = "Firefox" },
properties = { tag = tags[1][1] } },
}
-- }}}
-- {{{ Signals
-- Signal function to execute when a new client appears.
client.connect_signal("manage", function (c)
c.opacity = 1
local layout = uzful.layout.build({
layout = wibox.layout.align.horizontal,
middle = awful.titlebar.widget.titlewidget(c),
left = { layout = wibox.layout.fixed.horizontal,
awful.titlebar.widget.iconwidget(c) },
right = { layout = wibox.layout.fixed.horizontal,
awful.titlebar.widget.stickybutton(c),
awful.titlebar.widget.ontopbutton(c),
awful.titlebar.widget.maximizedbutton(c),
awful.titlebar.widget.floatingbutton(c),
awful.titlebar.widget.closebutton(c) }
})
local mouse_buttons = awful.util.table.join(
awful.button({ }, 1, function () awful.mouse.client.move(c) end),
awful.button({ }, 3, function () awful.mouse.client.resize(c) end))
layout.first:buttons(mouse_buttons) -- left
layout.second:buttons(mouse_buttons) -- middle
if rc.conf.titlebars == 'ontop' then
uzful.widget.titlebar(c, {
size = theme.menu_height,
}).rotation:set_widget(layout)
elseif rc.conf.titlebars then
-- if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
local rotation = wibox.layout.rotate()
rotation:set_direction({
top = "north",
bottom = "north",
left = "east",
right = "west",
}[rc.conf.titlebars])
rotation:set_widget(layout)
awful.titlebar(c, {
size = theme.menu_height,
position = rc.conf.titlebars,
}):set_widget(rotation)
end
if not awesome.startup then
-- Set the windows at the slave,
-- i.e. put it at the end of others instead of setting it master.
-- awful.client.setslave(c)
-- 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)
awful.placement.no_offscreen(c)
end
end
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)
client.connect_signal("focus", function(c)
c.border_color = beautiful.border_focus
--c.opacity = 1
end)
client.connect_signal("unfocus", function(c)
c.border_color = beautiful.border_normal
--c.opacity = 0.5
end)
require("autostart")
|
x
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 | ---------------------------
-- Default awesome theme --
---------------------------
local awful = require("awful")
local couth = require("couth")
local naughty = require("naughty")
theme = {}
theme.font = "uni 05_53 6"
theme.widget_font = "ProggyTinyTT" -- no font size here
theme.bg_normal = "#00000022"
theme.bg_systray = "#00000022"
theme.bg_focus = "#282828D8"--"#222222" * 85%
theme.bg_urgent = "#ff0000"
theme.bg_minimize = "#11111122"
theme.fg_normal = "#aaaaaa"
theme.fg_focus = "#ffffff"
theme.fg_urgent = "#ffffff"
theme.fg_minimize = "#424242"
theme.border_width = 0
theme.border_normal = "#C50B0B"--"#000000"
theme.border_focus = "#535d6c"
theme.border_marked = "#91231c"
-- default values for notifications
naughty.config.defaults.font = "uni 05_53 6"
naughty.config.defaults.border_width = "0"
naughty.config.defaults.bg = "#00000066"
naughty.config.defaults.opacity = 0.77
local dir = awful.util.getdir("config") .. "/theme/"
-- There are other variable sets
-- overriding the default one when
-- defined, the sets are:
-- [taglist|tasklist]_[bg|fg]_[focus|urgent]
-- titlebar_[bg|fg]_[normal|focus]
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
-- mouse_finder_[color|timeout|animate_timeout|radius|factor]
-- Example:
--theme.taglist_bg_focus = "#ff0000"
-- Display the taglist squares
theme.taglist_squares_sel = dir .. "squaref.png"
theme.taglist_squares_unsel = dir .. "square.png"
theme.tasklist_floating_icon = dir .. "floating.png"
-- icons
theme.dock = dir .. "dock.png"
theme.memory = dir .. "memory.png"
theme.battery = dir .. "battery.png"
theme.nobattery = dir .. "nobattery.png"
theme.nomonitor = dir .. "nomonitor.png"
theme.wicd = {}
theme.wicd.wired = dir .. "wicd/wired.png"
theme.wicd.unknown = dir .. "wicd/unknown.png"
theme.wicd.wireless = dir .. "wicd/wireless.png"
theme.wicd.suspended = dir .. "wicd/suspended.png"
theme.wicd.connecting = dir .. "wicd/connecting.png"
theme.wicd.not_connected = dir .. "wicd/not_connected.png"
theme.phone = {}
theme.phone.battery = dir .. "phone/battery.png"
-- Variables set for theming the menu:
-- menu_[bg|fg]_[normal|focus]
-- menu_[border_color|border_width]
theme.menu_submenu = "> "
theme.menu_height = 14
theme.menu_width = 100
theme.icon_theme = "default.kde4"
-- Variables set for prompt design:
theme.prompt = {
cmd = "» ",
lua = "› ",
}
-- You can add as many variables as
-- you wish and access them by using
-- beautiful.variable in your rc.lua
--theme.bg_widget = "#cc0000"
-- Define the image to load
theme.titlebar_close_button_normal = dir .. "titlebar/close_normal.png"
theme.titlebar_close_button_focus = dir .. "titlebar/close_focus.png"
theme.titlebar_ontop_button_normal_inactive = dir .. "titlebar/ontop_normal_inactive.png"
theme.titlebar_ontop_button_focus_inactive = dir .. "titlebar/ontop_focus_inactive.png"
theme.titlebar_ontop_button_normal_active = dir .. "titlebar/ontop_normal_active.png"
theme.titlebar_ontop_button_focus_active = dir .. "titlebar/ontop_focus_active.png"
theme.titlebar_sticky_button_normal_inactive = dir .. "titlebar/sticky_normal_inactive.png"
theme.titlebar_sticky_button_focus_inactive = dir .. "titlebar/sticky_focus_inactive.png"
theme.titlebar_sticky_button_normal_active = dir .. "titlebar/sticky_normal_active.png"
theme.titlebar_sticky_button_focus_active = dir .. "titlebar/sticky_focus_active.png"
theme.titlebar_floating_button_normal_inactive = dir .. "titlebar/floating_normal_inactive.png"
theme.titlebar_floating_button_focus_inactive = dir .. "titlebar/floating_focus_inactive.png"
theme.titlebar_floating_button_normal_active = dir .. "titlebar/floating_normal_active.png"
theme.titlebar_floating_button_focus_active = dir .. "titlebar/floating_focus_active.png"
theme.titlebar_maximized_button_normal_inactive = dir .. "titlebar/maximized_normal_inactive.png"
theme.titlebar_maximized_button_focus_inactive = dir .. "titlebar/maximized_focus_inactive.png"
theme.titlebar_maximized_button_normal_active = dir .. "titlebar/maximized_normal_active.png"
theme.titlebar_maximized_button_focus_active = dir .. "titlebar/maximized_focus_active.png"
-- You can use your own command to set your wallpaper
theme.wallpapers = {
{ dir .. "icons/awesome16.png", center = true},
{"/home/dodo/Pictures/7003_68fd_black.png", center = true},
{"/home/dodo/Pictures/minimalcluster1900x1080.png", center = true},
{"/home/dodo/Pictures/minimalblueprint1900x1080.png", center = true},
{"/home/dodo/Pictures/blue_print_desktop_1600x1200_tranformed.jpg", maximize=true},
{"/home/dodo/Pictures/161502-strutingcolours.jpg", maximize=true},
{"/home/dodo/Pictures/meh.ro9016.png", center = true},
"/home/dodo/Pictures/into_the_woods_1280x800.jpg",
"/home/dodo/Pictures/planetoid_3_1280x800.png",
"/home/dodo/Pictures/meh.ro7944.png",
"/home/dodo/Pictures/meh.ro2263.png",
"/home/dodo/Pictures/meh.ro3274.jpg",
}
-- default
theme.wallpaper = theme.wallpapers[1][1]
--
-- You can use your own layout icons like this:
theme.layout_rows = dir .. "layouts/rows.png"
theme.layout_fairh = dir .. "layouts/fairh.png"
theme.layout_fairv = dir .. "layouts/fairv.png"
theme.layout_columns = dir .. "layouts/columns.png"
theme.layout_floating = dir .. "layouts/floating.png"
theme.layout_magnifier = dir .. "layouts/magnifier.png"
theme.layout_max = dir .. "layouts/max.png"
theme.layout_fullscreen = dir .. "layouts/fullscreen.png"
theme.layout_tilebottom = dir .. "layouts/tilebottom.png"
theme.layout_tileleft = dir .. "layouts/tileleft.png"
theme.layout_tile = dir .. "layouts/tile.png"
theme.layout_tiletop = dir .. "layouts/tiletop.png"
theme.layout_spiral = dir .. "layouts/spiral.png"
theme.layout_dwindle = dir .. "layouts/dwindle.png"
theme.awesome_icon = dir .. "icons/awesome16.png"
-- You can use your own screen settings icons like this:
theme.randr = {}
theme.randr.leftof = dir .. "screens/left-of.png"
theme.randr.rightof = dir .. "screens/right-of.png"
theme.randr.above = dir .. "screens/above.png"
theme.randr.below = dir .. "screens/below.png"
theme.randr.sameas = dir .. "screens/same-as.png"
theme.randr.off = dir .. "screens/off.png"
couth.CONFIG.NOTIFIER_FONT = "mono 5"
couth.CONFIG.INDICATOR_BARS = {'▏','▎','▍','▌','▋','▊','▉','█'}
couth.CONFIG.INDICATOR_BORDERS = {'',''}
return theme
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
x
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | return {
launcher = true, -- show awesome button for main menu
battery = false, -- show notebook battery
graphs = false, -- show detailed graphs
phone = false, -- show phone battery
sysfs = false, -- listen to sysfs events
cpu = false, -- show cpu stats
clock = false, -- show a clock
memory = false, -- show memory usage
monitor = false, -- show monitor change notifications
calendar = false, -- show calendar when hovering clock
temperature = false, -- show cpu temperature stats
restore = false, -- enable restoring window stats and tag settings
network = false, -- or true -- show network & wire stats from wicd via dbus or show at least network stats if true
notifications = false, -- widget to block notifications and store a history of them
syslog = false, --uzful.util.module.exists('inotify') and uzful.util.module.exists('socket'),
dbus = not not dbus,
tags = 'number', -- or 'number' -- tag name style default
taglist = 'all', -- or 'all' -- talist filter default
titlebars = 'left', -- or 'left' or 'right' or 'top' or 'bottom' or false -- titlebar attachment behavior
}
|
x
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | return {
launcher = false, -- show awesome button for main menu
battery = true, -- show notebook battery
graphs = true, -- show detailed graphs
phone = true, -- show phone battery
sysfs = true, -- listen to sysfs events
cpu = true, -- show cpu stats
clock = true, -- show a clock
memory = true, -- show memory usage
monitor = true, -- show monitor change notifications
calendar = true, -- show calendar when hovering clock
temperature = true, -- show cpu temperature stats
restore = true, -- enable restoring window stats and tag settings
network = 'wicd', -- or true -- show network & wire stats from wicd via dbus or show at least network stats if true
notifications = true, -- widget to block notifications and store a history of them
syslog = uzful.util.module.exists('inotify') and uzful.util.module.exists('socket'),
dbus = not not dbus,
tags = 'symbol', -- or 'number' -- tag name style default
taglist = 'noempty', -- or 'all' -- talist filter default
titlebars = 'ontop', -- or 'left' or 'right' or 'top' or 'bottom' or false -- titlebar attachment behavior
}
|
x
Notes
feature overload running since awesome 3.5
eri said about 11 years ago
I really like that style
thanks a lot!