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 | --[[
Powerarrow Darker Awesome WM config 2.0
github.com/copycat-killer
--]]
-- {{{ 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 drop = require("scratchdrop")
local lain = require("lain")
local menubar = require("menubar")
--FreeDesktop
--local freedesktop = require('freedesktop')
--freedesktop.utils.icon_theme = 'Numix Circle'
xdg_menu = require("archmenu")
-- }}}
-- {{{ Error handling
if awesome.startup_errors then
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors })
end
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
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
--run_once("urxvtd -f -q -o")
--run_once("compton -b")
--run_once("xsetroot -name 'Openzone Black Slim' left_ptr")
--run_once("conky")
--run_once("pcmanfm -d &")
--run_once("xrdb /home/sergio/.Xresources")
--run_once("xsetroot -name 'Openzone Black Slim' left_ptr")
--run_once("/home/sergio/.bin/screen_locker_script.sh")
--run_once("unclutter -root")
-- }}}
-- {{{ Variable definitions
-- localization
os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/Dark-Red/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
--terminal = "urxvtc -e tmux" or "xterm"
terminal = "urxvtc" or "xterm"
--terminal = "urxvtc -e /home/sergio/.bin/tmux_attach.sh" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- user defined
browser = "luakit"
gui_editor = "gvim"
graphics = "gimp"
--iptraf = terminal .. " -g 180x54-20+34 -e sudo iptraf-ng -i all "
musicplr = "urxvtc -g 130x34-320+16 -e ncmpcpp "
local layouts = {
awful.layout.suit.floating,
awful.layout.suit.tile,
awful.layout.suit.tile.bottom,
awful.layout.suit.fair,
awful.layout.suit.magnifier,
awful.layout.suit.max,
--lain.layout.termfair
--lain.layout.centerwork
--lain.layout.uselessfair
}
-- }}}
-- {{{ Tags
tags = {
names = { "1", "2", "3", "4", "5"},
--layout = { layouts[1], layouts[2], layouts[3], layouts[1], layouts[4] }
}
for s = 1, screen.count() do
--tags[s] = awful.tag(tags.names, s, tags.layout)
tags[s] = awful.tag(tags.names, s, layouts[1])
end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
-- }}}
-- {{{ Menu
--mymainmenu = awful.menu.new({ items = require("menugen").build_menu(),
--theme = { height = 16, width = 130 }})
--mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon,
--menu = mymainmenu })
-- applications menu
--freedesktop.utils.terminal = terminal -- default: "xterm"
--menu_items = freedesktop.menu.new()
--myawesomemenu = {
--{ "manual", terminal .. " -e man awesome", freedesktop.utils.lookup_icon({ icon = 'help-about' }) },
--{ "edit config", editor_cmd .. " " .. awful.util.getdir("config") .. "/rc.lua", freedesktop.utils.lookup_icon({ icon = 'preferences-desktop' }) },
--{ "restart", awesome.restart, freedesktop.utils.lookup_icon({ icon = 'system-reboot' }) },
--{ "quit", awesome.quit, freedesktop.utils.lookup_icon({ icon = 'application-exit' }) }
--}
--table.insert(menu_items, { "awesome", myawesomemenu, beautiful.awesome_icon })
--table.insert(menu_items, { "shutdown", function() awful.util.spawn_with_shell("oblogout") end, freedesktop.utils.lookup_icon({icon = 'system-shutdown'}) })
--table.insert(menu_items, { "open terminal", terminal, freedesktop.utils.lookup_icon({icon = 'utilities-terminal'}) })
--mymainmenu = awful.menu({ items = menu_items })
mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
{ "Applications", xdgmenu },
{ "open terminal", terminal }
}
})
mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, menu = mymainmenu })
-- end freedesktop
-- }}}
-- {{{ Wibox
markup = lain.util.markup
separators = lain.util.separators
-- 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 })
-- MPD
mpdicon = wibox.widget.imagebox(beautiful.widget_music)
--mpdicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell(musicplr) end)))
mpdwidget = lain.widgets.mpd({
cover_size=150,
music_dir="/home/sergio/.config/mpd/music/",
default_art="/home/sergio/Música/default_cover.gif",
settings = function()
if mpd_now.state == "play" then
artist = " " .. mpd_now.artist .. " - "
title = mpd_now.title .. " "
mpdicon:set_image(beautiful.widget_music_on)
elseif mpd_now.state == "pause" then
artist = " mpd "
title = "paused "
else
artist = ""
title = ""
mpdicon:set_image(beautiful.widget_music)
end
mpd_notification_preset = {
title = "Now playing",
timeout = 10,
text = string.format("%s - %s\n%s", mpd_now.artist,
mpd_now.album, mpd_now.title)
}
widget:set_markup(markup("#FFFFFF", artist) .. title)
end
})
-- MEM
memicon = wibox.widget.imagebox(beautiful.widget_mem)
memwidget = lain.widgets.mem({
settings = function()
widget:set_text(" " .. mem_now.used .. "MB ")
end
})
-- CPU
cpuicon = wibox.widget.imagebox(beautiful.widget_cpu)
cpuwidget = lain.widgets.cpu({
settings = function()
widget:set_text(" " .. cpu_now.usage .. "% ")
end
})
-- Coretemp
tempicon = wibox.widget.imagebox(beautiful.widget_temp)
tempwidget = lain.widgets.temp({
settings = function()
widget:set_text(" " .. coretemp_now .. "°C ")
end
})
-- Battery
baticon = wibox.widget.imagebox(beautiful.widget_battery)
batwidget = 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
})
-- ALSA volume
volicon = wibox.widget.imagebox(beautiful.widget_vol)
volicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell("urxvtc -e alsamixer") end)))
--volicon:buttons(awful.util.table.join(awful.button({ }, 5, function () awful.util.spawn(string.format("amixer -c %s set %s 1+", volumewidget.card, volumewidget.channel),false) end)))
--volicon:buttons(awful.util.table.join(awful.button({ }, 4, function () awful.util.spawn(string.format("amixer -c %s set %s 1-", volumewidget.card, volumewidget.channel),false) end)))
volumewidget = lain.widgets.alsa({
settings = function()
if volume_now.status == "off" then
volicon:set_image(beautiful.widget_vol_mute)
elseif tonumber(volume_now.level) == 0 then
volicon:set_image(beautiful.widget_vol_no)
elseif tonumber(volume_now.level) <= 50 then
volicon:set_image(beautiful.widget_vol_low)
else
volicon:set_image(beautiful.widget_vol)
end
widget:set_text(" " .. volume_now.level .. "% ")
end
})
-- Net
neticon = wibox.widget.imagebox(beautiful.widget_net)
neticon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell(iptraf) end)))
netwidget = lain.widgets.net({
settings = function()
widget:set_markup(markup("#ffffff", " " .. net_now.received)
.. " " ..
markup("#ffffff", " " .. net_now.sent .. " "))
end
})
-- Separators
spr = wibox.widget.textbox(' ')
arrl = wibox.widget.imagebox()
arrl:set_image(beautiful.arrl)
arrl_dl = separators.arrow_left(beautiful.bg_focus, "alpha")
arrl_ld = separators.arrow_left("alpha", beautiful.bg_focus)
-- Create a wibox for each screen and add it
mywibox = {}
mybottomwibox = {}
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
-- 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({
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()
-- 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)))
-- 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(mylauncher)
left_layout:add(spr)
left_layout:add(mytaglist[s])
left_layout:add(mypromptbox[s])
left_layout:add(spr)
-- Widgets that are aligned to the upper right
local right_layout_toggle = true
local function right_layout_add (...)
local arg = {...}
if right_layout_toggle then
right_layout:add(arrl_ld)
for i, n in pairs(arg) do
right_layout:add(wibox.widget.background(n ,beautiful.bg_focus))
end
else
right_layout:add(arrl_dl)
for i, n in pairs(arg) do
right_layout:add(n)
end
end
right_layout_toggle = not right_layout_toggle
end
right_layout = wibox.layout.fixed.horizontal()
if s == 1 then right_layout:add(wibox.widget.systray()) end
right_layout:add(spr)
--right_layout:add(arrl)
right_layout_add(mpdicon, mpdwidget)
right_layout_add(volicon, volumewidget)
--right_layout_add(mailicon, mailwidget)
right_layout_add(memicon, memwidget)
right_layout_add(cpuicon, cpuwidget)
right_layout_add(tempicon, tempwidget)
--right_layout_add(fsicon, fswidget)
right_layout_add(baticon, batwidget)
right_layout_add(neticon,netwidget)
right_layout_add(mytextclock, spr)
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)
-- Create the bottom wibox
mybottomwibox[s] = awful.wibox({ position = "bottom", screen = s, height = 18 })
--
-- Widgets that are aligned to the bottom left
--bottom_left_layout = wibox.layout.fixed.horizontal()
--bottom_left_layout:add(mylauncher)
-- Widgets that are aligned to the bottom right
--bottom_right_layout = wibox.layout.fixed.horizontal()
-- Now bring it all together (with the tasklist in the middle)
bottom_layout = wibox.layout.align.horizontal()
--bottom_layout:set_left(bottom_left_layout)
bottom_layout:set_middle(mytasklist[s])
--bottom_layout:set_right(bottom_right_layout)
mybottomwibox[s]:set_widget(bottom_layout)
-- Create a borderbox above the bottomwibox
--lain.widgets.borderbox(mybottomwibox[s], s, { position = "top", color = "#0099CC" } )
end
-- }}}
-- {{{ Mouse Bindings
root.buttons(awful.util.table.join(
awful.button({ }, 3, function () mymainmenu:toggle() end),
awful.button({ }, 5, awful.tag.viewnext),
awful.button({ }, 4, awful.tag.viewprev)
))
-- }}}
-- {{{ Key bindings
globalkeys = awful.util.table.join(
--awful.key({ modkey, "Shift" } , "Return" , function () awful.util.spawn('urxvtc -bg "#272727" -depth 24') end),
--awful.key({ altkey } , "Return" , function () awful.util.spawn('urxvtc') end),
awful.key({ modkey, "Shift" } , "e" , function () awful.util.spawn('pcmanfm') end),
--awful.key({ modkey } , "e" , function () awful.util.spawn('urxvtc -bg "#272727" -depth 24 -e ranger') end),
awful.key({ modkey } , "e" , function () awful.util.spawn('urxvtc -e ranger') end),
awful.key({},"XF86Calculator", function () awful.util.spawn('galculator') end),
-- Take a screenshot
-- https://github.com/copycat-killer/dots/blob/master/bin/screenshot
awful.key({ altkey }, "p", function() awful.util.spawn("scrot") end),
-- Tag browsing
awful.key({ modkey }, "Left", awful.tag.viewprev ),
awful.key({ modkey }, "Right", awful.tag.viewnext ),
awful.key({ modkey }, "Escape", awful.tag.history.restore),
-- Non-empty tag browsing
awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end),
awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end),
-- Default client focus
awful.key({ altkey }, "k",
function ()
awful.client.focus.byidx( 1)
if client.focus then client.focus:raise() end
end),
awful.key({ altkey }, "j",
function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end),
-- By direction client focus
awful.key({ modkey }, "j",
function()
awful.client.focus.bydirection("down")
if client.focus then client.focus:raise() end
end),
awful.key({ modkey }, "k",
function()
awful.client.focus.bydirection("up")
if client.focus then client.focus:raise() end
end),
awful.key({ modkey }, "h",
function()
awful.client.focus.bydirection("left")
if client.focus then client.focus:raise() end
end),
awful.key({ modkey }, "l",
function()
awful.client.focus.bydirection("right")
if client.focus then client.focus:raise() end
end),
-- Show Menu
awful.key({ modkey }, "w",
function ()
mymainmenu:show({ keygrabber = true })
end),
-- Show/Hide Wibox
--awful.key({ modkey }, "b", function ()
--mywibox[mouse.screen].visible = not mywibox[mouse.screen].visible
--end),
-- Layout manipulation
awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
awful.key({ modkey, }, "Tab",
function ()
awful.client.focus.history.previous()
if client.focus then
client.focus:raise()
end
end),
awful.key({ altkey, "Shift" }, "l", function () awful.tag.incmwfact( 0.05) end),
awful.key({ altkey, "Shift" }, "h", function () awful.tag.incmwfact(-0.05) end),
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
awful.key({ modkey, "Control" }, "n", awful.client.restore),
-- Standard program
awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
awful.key({ modkey, "Control" }, "r", awesome.restart),
awful.key({ modkey, "Shift" }, "q", awesome.quit),
-- Dropdown terminal
--awful.key({ modkey, }, "z", function () drop("urxvtc") end),
-- Widgets popups
--awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end),
--awful.key({ altkey, }, "h", function () fswidget.show(7) end),
--Volume
awful.key({ }, "XF86AudioRaiseVolume", function ()
--awful.util.spawn("amixer set Master 5%+",false)
awful.util.spawn(string.format("amixer -c %s set %s 1+", volumewidget.card, volumewidget.channel),false)
--awful.util.spawn("amixer set Master 1%+")
volumewidget.update()
end),
awful.key({ }, "XF86AudioLowerVolume", function ()
--awful.util.spawn("amixer set Master 5%-",false)
awful.util.spawn(string.format("amixer -c %s set %s 1-", volumewidget.card, volumewidget.channel),false)
--awful.util.spawn("amixer set Master 1%-")
volumewidget.update()
end),
awful.key({ }, "XF86AudioMute", function ()
--awful.util.spawn("amixer sset Master toggle",false)
awful.util.spawn(string.format("amixer -c %s set %s toggle", volumewidget.card, volumewidget.channel),false)
--awful.util.spawn("amixer set Master toggle")
volumewidget.update()
end),
---- ALSA volume control
--awful.key({ altkey }, "Up",
--function ()
--awful.util.spawn(string.format("amixer -c %s set %s 1+", volumewidget.card, volumewidget.channel))
--volumewidget.update()
--end),
--awful.key({ altkey }, "Down",
--function ()
--awful.util.spawn(string.format("amixer -c %s set %s 1-", volumewidget.card, volumewidget.channel))
--volumewidget.update()
--end),
--awful.key({ altkey }, "m",
--function ()
--awful.util.spawn(string.format("amixer -c %s set %s toggle", volumewidget.card, volumewidget.channel))
----awful.util.spawn(string.format("amixer set %s toggle", volumewidget.channel))
--volumewidget.update()
--end),
--awful.key({ altkey, "Control" }, "m",
--function ()
--awful.util.spawn(string.format("amixer -c %s set %s 100%%", volumewidget.card, volumewidget.channel))
--volumewidget.update()
--end),
--Brillo
awful.key({ }, "XF86MonBrightnessDown", function ()
awful.util.spawn("xbacklight -dec 5",false)
end),
awful.key({ }, "XF86MonBrightnessUp", function ()
awful.util.spawn("xbacklight -inc 5",false)
end),
-- MPD control
awful.key({ }, "XF86AudioNext", function ()
awful.util.spawn_with_shell("mpc next",false)
mpdwidget.update()
end),
awful.key({ }, "XF86AudioPrev", function ()
awful.util.spawn_with_shell("mpc prev",false)
mpdwidget.update()
end),
awful.key({ }, "XF86AudioPlay", function ()
awful.util.spawn_with_shell("mpc toggle",false)
mpdwidget.update()
end),
awful.key({ }, "XF86AudioStop", function ()
awful.util.spawn_with_shell("mpc stop",false)
mpdwidget.update()
end),
--awful.key({ altkey, "Control" }, "Up",
--function ()
--awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle")
--mpdwidget.update()
--end),
--awful.key({ altkey, "Control" }, "Down",
--function ()
--awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop")
--mpdwidget.update()
--end),
--awful.key({ altkey, "Control" }, "Left",
--function ()
--awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev")
--mpdwidget.update()
--end),
--awful.key({ altkey, "Control" }, "Right",
--function ()
--awful.util.spawn_with_shell("mpc next || ncmpc next || pms next")
--mpdwidget.update()
--end),
-- Copy to clipboard
--awful.key({ modkey }, "c", function () os.execute("xsel -p -o | xsel -i -b") end),
-- User programs
awful.key({ modkey }, "q", function () awful.util.spawn(browser) end),
--awful.key({ modkey }, "z", function () awful.util.spawn("thunar") end),
--Screen locker
--awful.key({ modkey, "Shift", "Control" }, "l", function () awful.util.spawn('i3lock -i "/home/sergio/Imágenes/Wallpapers/GIMP/Arch_blue.png" -d -I 5 -e -c 333333') end),
--awful.key({ modkey, "Shift", "Control" }, "l", function () awful.util.spawn('i3lock-wrapper -d -I 5 -e') end),
awful.key({ modkey, }, "p", function () awful.util.spawn('/home/sergio/.bin/lock-screen' ) end),
-- Menubar
awful.key({ modkey }, "a", function() menubar.show() end),
awful.key({ modkey }, "r", function() awful.util.spawn('gmrun',false) end),
-- Prompt
--awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
awful.key({ modkey }, "x",
function ()
awful.prompt.run({ prompt = "Run Lua code: " },
mypromptbox[mouse.screen].widget,
awful.util.eval, nil,
awful.util.getdir("cache") .. "/history_eval")
end)
)
clientkeys = awful.util.table.join(
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
awful.key({ modkey, }, "o", awful.client.movetoscreen ),
awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
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),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
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, 9 do
globalkeys = awful.util.table.join(globalkeys,
-- View tag only.
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),
-- Toggle tag.
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),
-- Move client to tag.
awful.key({ modkey, "Shift" }, "#" .. i + 9,
function ()
if client.focus then
local tag = awful.tag.gettags(client.focus.screen)[i]
if tag then
awful.client.movetotag(tag)
end
end
end),
-- Toggle tag.
awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
function ()
if client.focus then
local tag = awful.tag.gettags(client.focus.screen)[i]
if tag then
awful.client.toggletag(tag)
end
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,
size_hints_honor = false },
callback = awful.client.setslave},
{ rule = { class = "MPlayer" },
properties = { floating = true } },
{ rule = { name = "alsamixer" },
properties = { floating = true } },
{ rule = { name = "Preferencias de Firefox" },
properties = { floating = true } },
{ rule = { class = "Pcmanfm" },
properties = { floating = true } },
{ rule = { class = "pinentry" },
properties = { floating = true } },
{ rule = { class = "gimp" },
properties = { floating = true } },
--{ rule = { class = "Conky" },
--properties = { border_width = 0 } },
--{ rule = { class = "Gnome-system-monitor" },
--callback = awful.titlebar.hide },
{ rule = { class = "Viewnior" },
properties = { floating = true } },
-- Set Firefox to always map on tags number 2 of screen 1.
-- { rule = { class = "Firefox" },
-- properties = { tag = tags[1][2] } },
}
-- }}}
-- {{{ Signals
-- signal function to execute when a new client appears.
local sloppyfocus_last = {c=nil}
client.connect_signal("manage", function (c, startup)
-- 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
-- Skip focusing the client if the mouse wasn't moved.
--if c ~= sloppyfocus_last.c then
client.focus = c
--sloppyfocus_last.c = c
--end
end
end)
if not c.size_hints.user_position and not c.size_hints.program_position then
awful.placement.centered(c)
--awful.placement.no_overlap(c)
awful.placement.no_offscreen(c)
end
local titlebars_enabled = false
if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
-- buttons for the titlebar
local buttons = awful.util.table.join(
awful.button({ }, 1, function()
client.focus = c
c:raise()
awful.mouse.client.move(c)
end),
awful.button({ }, 3, function()
client.focus = c
c:raise()
awful.mouse.client.resize(c)
end)
)
-- widgets that are aligned to the right
local right_layout = wibox.layout.fixed.horizontal()
right_layout:add(awful.titlebar.widget.ontopbutton(c))
right_layout:add(awful.titlebar.widget.maximizedbutton(c))
right_layout:add(awful.titlebar.widget.closebutton(c))
-- widgets that are aligned to the left
local left_layout = wibox.layout.fixed.horizontal()
left_layout:add(awful.titlebar.widget.floatingbutton(c))
left_layout:add(awful.titlebar.widget.stickybutton(c))
-- the title goes in the middle
local middle_layout = wibox.layout.flex.horizontal()
local title = awful.titlebar.widget.titlewidget(c)
title:set_align("center")
middle_layout:add(title)
middle_layout:buttons(buttons)
-- now bring it all together
local layout = wibox.layout.align.horizontal()
layout:set_left(left_layout)
layout:set_right(right_layout)
layout:set_middle(middle_layout)
awful.titlebar(c,{size=18}):set_widget(layout)
end
end)
-- No border for maximized clients
client.connect_signal("focus",
function(c)
if c.maximized_horizontal == true and c.maximized_vertical == true then
c.border_color = beautiful.border_normal
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 always have borders
if awful.client.floating.get(c) or layout == "floating" then
c.border_width = beautiful.border_width
-- No borders with only one visible client
elseif #clients == 1 or layout == "max" then
c.border_width = 0
else
c.border_width = beautiful.border_width
end
end
end
end)
end
-- }}}
|
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 | --[[
Powerarrow Darker Awesome WM config 2.0
github.com/copycat-killer
--]]
theme = {}
themes_dir = os.getenv("HOME") .. "/.config/awesome/themes/Dark-Red"
--theme.wallpaper = themes_dir .. "/wall.png"
theme.wallpaper = themes_dir .. "/wall.jpg"
theme.useless_gap_width = 50
theme.font = "Open Sans 10"
--theme.font = "Tamsyn 16"
--theme.fg_normal = "#DDDDFF"
--theme.fg_focus = "#F0DFAF"
--theme.fg_urgent = "#CC9393"
--theme.bg_normal = "#1A1A1A"
--theme.bg_focus = "#313131"
--theme.bg_urgent = "#1A1A1A"
--theme.border_width = "1"
--theme.border_normal = "#3F3F3F"
--theme.border_focus = "#7F7F7F"
--theme.border_marked = "#CC9393"
--theme.titlebar_bg_focus = "#FFFFFF"
--theme.titlebar_bg_normal = "#FFFFFF"
--theme.taglist_fg_focus = "#D8D782"
--theme.tasklist_bg_focus = "#1A1A1A"
--theme.tasklist_fg_focus = "#D8D782"
--foreground original = "#e0f0f7"
theme.fg_normal = "#ffffff"
theme.fg_focus = "#ffffff"
theme.fg_urgent = "#FFFFFF"
theme.bg_normal = "#272727"
theme.bg_focus = "#ad3737"
theme.bg_urgent = "#ff6b6b"
theme.border_width = "1"
--theme.border_normal = "#2a2e31"
theme.border_normal = "#272727"
theme.border_focus = "#ad3737"
theme.border_marked = "#82a632"
theme.titlebar_bg_focus = "#272727"
theme.titlebar_fg_focus = "#ffffff"
theme.titlebar_bg_normal = "#272727"
--theme.titlebar_fg_normal = "#acbeca"
theme.titlebar_fg_normal = "#dedede"
theme.taglist_fg_focus = "#ffffff"
theme.bg_minimize = "#363a3c"
theme.fg_minimize = "#FFFFFF"
theme.tasklist_bg_focus = "#ad3737"
theme.tasklist_fg_focus = "#ffffff"
theme.textbox_widget_margin_top = 1
theme.notify_fg = theme.fg_normal
theme.notify_bg = theme.bg_normal
theme.notify_border = theme.border_focus
theme.awful_widget_height = 14
theme.awful_widget_margin_top = 2
theme.mouse_finder_color = "#CC9393"
theme.menu_height = "16"
theme.menu_width = "140"
theme.icon_theme = "Numix-Circle"
theme.awesome_icon = themes_dir .. "/icons/awesome_icon.png"
theme.submenu_icon = themes_dir .. "/icons/submenu.png"
theme.taglist_squares_sel = themes_dir .. "/icons/square_sel.png"
theme.taglist_squares_unsel = themes_dir .. "/icons/square_unsel.png"
theme.layout_tile = themes_dir .. "/icons/tile.png"
theme.layout_tilegaps = themes_dir .. "/icons/tilegaps.png"
theme.layout_tileleft = themes_dir .. "/icons/tileleft.png"
theme.layout_uselesstile = themes_dir .. "/icons/tileleft.png"
theme.layout_uselesstilebottom = themes_dir .. "/icons/tilebottom.png"
theme.layout_tilebottom = themes_dir .. "/icons/tilebottom.png"
theme.layout_tiletop = themes_dir .. "/icons/tiletop.png"
theme.layout_uselessfair = themes_dir .. "/icons/fairv.png"
theme.layout_fairv = themes_dir .. "/icons/fairv.png"
theme.layout_fairh = themes_dir .. "/icons/fairh.png"
theme.layout_spiral = themes_dir .. "/icons/spiral.png"
theme.layout_dwindle = themes_dir .. "/icons/dwindle.png"
theme.layout_max = themes_dir .. "/icons/max.png"
theme.layout_fullscreen = themes_dir .. "/icons/fullscreen.png"
theme.layout_magnifier = themes_dir .. "/icons/magnifier.png"
theme.layout_floating = themes_dir .. "/icons/floating.png"
theme.titlebar_close_button_focus = themes_dir .. "/icons/titlebar/close_focus.png"
theme.titlebar_close_button_normal = themes_dir .. "/icons/titlebar/close_normal.png"
theme.titlebar_ontop_button_focus_active = themes_dir .. "/icons/titlebar/ontop_focus_active.png"
theme.titlebar_ontop_button_normal_active = themes_dir .. "/icons/titlebar/ontop_normal_active.png"
theme.titlebar_ontop_button_focus_inactive = themes_dir .. "/icons/titlebar/ontop_focus_inactive.png"
theme.titlebar_ontop_button_normal_inactive = themes_dir .. "/icons/titlebar/ontop_normal_inactive.png"
theme.titlebar_sticky_button_focus_active = themes_dir .. "/icons/titlebar/sticky_focus_active.png"
theme.titlebar_sticky_button_normal_active = themes_dir .. "/icons/titlebar/sticky_normal_active.png"
theme.titlebar_sticky_button_focus_inactive = themes_dir .. "/icons/titlebar/sticky_focus_inactive.png"
theme.titlebar_sticky_button_normal_inactive = themes_dir .. "/icons/titlebar/sticky_normal_inactive.png"
theme.titlebar_floating_button_focus_active = themes_dir .. "/icons/titlebar/floating_focus_active.png"
theme.titlebar_floating_button_normal_active = themes_dir .. "/icons/titlebar/floating_normal_active.png"
theme.titlebar_floating_button_focus_inactive = themes_dir .. "/icons/titlebar/floating_focus_inactive.png"
theme.titlebar_floating_button_normal_inactive = themes_dir .. "/icons/titlebar/floating_normal_inactive.png"
theme.titlebar_maximized_button_focus_active = themes_dir .. "/icons/titlebar/maximized_focus_active.png"
theme.titlebar_maximized_button_normal_active = themes_dir .. "/icons/titlebar/maximized_normal_active.png"
theme.titlebar_maximized_button_focus_inactive = themes_dir .. "/icons/titlebar/maximized_focus_inactive.png"
theme.titlebar_maximized_button_normal_inactive = themes_dir .. "/icons/titlebar/maximized_normal_inactive.png"
theme.arrl = themes_dir .. "/icons/arrl.png"
theme.arrl_dl = themes_dir .. "/icons/arrl_dl.png"
theme.arrl_ld = themes_dir .. "/icons/arrl_ld.png"
theme.widget_ac = themes_dir .. "/icons/ac.png"
theme.widget_battery = themes_dir .. "/icons/battery.png"
theme.widget_battery_low = themes_dir .. "/icons/battery_low.png"
theme.widget_battery_empty = themes_dir .. "/icons/battery_empty.png"
theme.widget_mem = themes_dir .. "/icons/mem.png"
theme.widget_cpu = themes_dir .. "/icons/cpu.png"
theme.widget_temp = themes_dir .. "/icons/temp.png"
theme.widget_net = themes_dir .. "/icons/net.png"
theme.widget_hdd = themes_dir .. "/icons/hdd.png"
theme.widget_music = themes_dir .. "/icons/note.png"
theme.widget_music_on = themes_dir .. "/icons/note_on.png"
theme.widget_vol = themes_dir .. "/icons/vol.png"
theme.widget_vol_low = themes_dir .. "/icons/vol_low.png"
theme.widget_vol_no = themes_dir .. "/icons/vol_no.png"
theme.widget_vol_mute = themes_dir .. "/icons/vol_mute.png"
theme.widget_mail = themes_dir .. "/icons/mail.png"
theme.widget_mail_on = themes_dir .. "/icons/mail_on.png"
theme.tasklist_disable_icon = true
theme.tasklist_floating = "[F] "
theme.tasklist_maximized_horizontal = "["
theme.tasklist_maximized_vertical = "M] "
return theme
|
x
Notes
It’s a modified version of Powerarrow Darker. It’s necessary to use lain (https://github.com/copycat-killer/lain).
Quiraily said about 9 years ago
Hi, what do you use for your spacing between the windows?
Serge2702 said about 9 years ago
In this git repository are tools for Awesome, including new layouts with gaps between windows.
https://github.com/copycat-killer/lain
Jok3r said about 9 years ago
Hello, can you share your dot files please ?
I don’t have the gaps between windows like on your screen with your gonfig i don’t know why
Serge2702 said about 9 years ago
First, in rc.lua, in the variable “local layouts”, you need to add lain.layout.uselessfair. Then, in theme.lua, there is a variable called “theme.useless_gap_width”. This sets the gap between windows. It’s already set as 50 in my config file.
Jok3r said about 9 years ago
Thank you for all,
I have another problem with “xdg_menu = require("archmenu”)“
My Awesome don’t find Archmenu
Serge2702 said about 9 years ago
https://wiki.archlinux.org/index.php/Xdg-menu
snazzybunny said about 8 years ago
I am getting a /usr/share/awesome/lib/lain/widgets/calendar.lua:116 attempt to index a nil value (field ‘font’). Any idea what could be wrong? Thanks.
spectrumKnight said about 8 years ago
Silly Question but what terminal are you using?
Serge2702 said about 8 years ago
I was using rxvt, with the patch that fixed the space between characters.
Alvaroczxp said about 7 years ago
Which terminal color is used?? It matches with this beautiful theme.