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 | -- Standard awesome library
require("awful")
require("awful.autofocus")
require("awful.rules")
-- Widget and layout library
require("wibox")
-- Theme handling library
require("beautiful")
-- Notification library
--require("naughty")
-- Presets
require("presets")
-- Freedesktop-compliant menu
require("freedesktop.menu")
-- Bashets
require("bashets")
--local capi = {dbus = dbus}
-- {{{ Initialization
-- Set correct locale
os.setlocale(os.getenv("LANG"))
-- Set theme for beautiful
presets.set_theme("default7")
--presets.set_theme("wombat")
-- Runner wrapper
local run = presets.runner
-- Default modkey
modkey = "Mod4"
-- Options for bashets
bashets.set_script_path("/dev/shm/bashets/")
bashets.set_temporary_path("/dev/shm/tmp/")
-- A very special setting
bright_color="#202020"
-- }}}
-- {{{ Commands
local commands = {}
commands.mail = "firefox http://gmail.com"
commands.lock = "xscreensaver-command --lock"
commands.fileman = "pcmanfm"
commands.calc = "xcalc"
commands.mute = "mute.sh"
commands.browser = "firefox"
commands.raisevol = "amixer set Master 5%+"
commands.lowervol = "amixer set Master 5%-"
commands.playpause = "mpc toggle"
commands.player = "xterm -e ncmpcpp"
commands.nexttrack = "mpc next"
commands.prevtrack = "mpc prev"
commands.playstop = "mpc stop"
commands.screenshot = "scrot -e 'mv $f ~/screenshots'"
commands.screenwin = "scrot -s -b -e 'mv $f ~/screenshots'"
commands.terminal = "xterm"
commands.editor = "xterm -e vim"
-- }}}
-- {{{ Autostart apps
presets.autorun({
"xcompmgr -c -f -r9 -t -18 -P",
"xscreensaver -nosplash",
"wmname LG3D",
"sh /home/anton/.fehbg",
"clipit -d -n"
})
-- }}}
-- {{{ Variable definitions
-- Table of layouts to cover with awful.layout.inc, order matters.
layouts =
{
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,
awful.layout.suit.spiral,
awful.layout.suit.spiral.dwindle,
awful.layout.suit.max,
awful.layout.suit.max.fullscreen,
awful.layout.suit.magnifier,
awful.layout.suit.floating
}
-- }}}
-- {{{ Tags
-- Define a tag table which hold all screen tags.
tags = {}
for s = 1, screen.count() do
-- Each screen has its own tag table.
tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
end
-- }}}
-- {{{ Menu
-- Create a laucher widget and a main menu
myawesomemenu = {
{ "manual", commands.terminal .. " -e man awesome" },
{ "edit config", commands.editor .. " " .. awful.util.getdir("config") .. "/rc.lua" },
{ "restart", awesome.restart },
{ "quit", awesome.quit }
}
menuitems = {
{ "awesome", myawesomemenu, beautiful.awesome_icon },
{ "matlab", "/opt/matlab2k11/bin/matlab -desktop"},
{ "maple", "/opt/maple/bin/xmaple"},
{ "open terminal", commands.terminal }
}
logoutmenu = {
{ "log out", function() bashets.stop()
awesome.quit() end, "/home/anton/.config/awesome/user/user-offline.png" },
{ "lock", "xscreensaver-command -lock", "/home/anton/.config/awesome/user/user-away.png" },
{ "shutdown", "gksu \"shutdown -h now\"" },
{ "reboot", "gksu \"reboot\"" }
}
menuitems = awful.util.table.join(menuitems, freedesktop.menu.new())
w_mainmenu = awful.menu({ items = menuitems })
w_launcher = awful.widget.launcher({ image = beautiful.awesome_icon, menu = w_mainmenu })
sd_menu = awful.menu({items = logoutmenu})
sd_launcher = awful.widget.launcher({ image = "/home/anton/icn2.png", menu = sd_menu })
-- }}}
-- {{{ Wibox
-- Create a textclock widget
w_textclock = awful.widget.textclock()
-- Create a wibox for each screen and add it
topbar = {}
bottombar = {}
leftbar = {}
w_promptbox = {}
wr_promptbox = {}
w_layoutbox = {}
w_taglist = {}
w_taglist.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, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
)
w_tasklist = {}
w_tasklist.buttons = awful.util.table.join(
awful.button({ }, 1, function (c)
if not c:isvisible() then
awful.tag.viewonly(c:tags()[1])
end
client.focus = c
c:raise()
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))
-- bashets widgets
datew = wibox.widget.textbox()
bashets.register("date.sh", { widget = datew, format = '<span face="Verdana" rise="50" font="8">$1</span><span face="Verdana" rise="55" font="8" weight="bold">:</span><span face="Verdana" rise="50" font="8">$2</span>', update_time = 30, separator = ':'})
mpdw1 = wibox.widget.textbox()
bashets.register("mpd.sh", {widget = mpdw1, format = ' <span color="' .. beautiful.fg_focus .. '" face="Monospace" rise="750">$1</span>', update_time = 1, separator = '|'})
ww = wibox.widget.textbox()
bashets.register("forecast.sh", {widget = ww, format = ' <span face="ConkyWeather" font="10" color="' .. bright_color .. '" weight="bold" rise="-1400">$1</span><span font="5"> </span><span rise="1400">$2</span>', update_time=3600, external = true})
xkbw = wibox.widget.textbox()
bashets.register("xkb.sh", {widget = xkbw, update_time = 1, external = true, format = ' <span face="Verdana" weight="bold" rise="45">$1</span>'})
batw = wibox.widget.imagebox()
bashets.register("batpic.sh", {widget = batw, separator = " "})
sepw = wibox.widget.textbox()
sepw:set_text(" ")
mpdtext = wibox.widget.textbox()
bashets.register("/home/anton/mpdinfo.sh", {widget = mpdtext, separator="==", format="<span color=\"" .. beautiful.fg_focus .. "\">$1</span>"})
caltext = wibox.widget.textbox()
caltext:set_markup("<span color=\"" .. beautiful.fg_focus .. "\"> "..os.date("%B %Y")..", "..os.date("%A")..", "..os.date("%d").."</span>")
for s = 1, screen.count() do
-- Create a promptbox for each screen
w_promptbox[s] = awful.widget.prompt({bg_cursor="#e6e6e5"})
wr_promptbox[s] = wibox.widget.textbox()
-- Create an imagebox widget which will contains an icon indicating which layout we're using.
-- We need one layoutbox per screen.
w_layoutbox[s] = awful.widget.layoutbox(s)
w_layoutbox[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
w_taglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, w_taglist.buttons)
-- Create a tasklist widget
w_tasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, w_tasklist.buttons)
-- Create the wibox
topbar[s] = awful.wibox({ position = "top", screen = s })
topbar[s].opacity = 0.8
bottombar[s] = awful.wibox({ position = "bottom", screen = s, bg = beautiful.bg_focus })
bottombar[s].height = 12
bottombar[s].opacity = 0.8
-- Widgets that are aligned to the left
local left_layout = wibox.layout.fixed.horizontal()
left_layout:add(w_launcher)
left_layout:add(sepw)
left_layout:add(w_taglist[s])
left_layout:add(sepw)
--left_layout:add(w_layoutbox[s])
--left_layout:add(sepw)
left_layout:add(w_promptbox[s])
left_layout:add(wr_promptbox[s])
-- Widgets that are aligned to the right
local right_layout = wibox.layout.fixed.horizontal()
if s == 1 then right_layout:add(wibox.widget.systray()) end
--right_layout:add(w_textclock)
--
right_layout:add(sepw)
right_layout:add(sepw)
right_layout:add(xkbw)
right_layout:add(sepw)
right_layout:add(ww)
right_layout:add(sepw)
right_layout:add(sepw)
right_layout:add(batw)
right_layout:add(sepw)
right_layout:add(datew)
right_layout:add(sepw)
right_layout:add(sd_launcher)
right_layout:add(sepw)
-- 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(w_tasklist[s])
layout:set_right(right_layout)
topbar[s]:set_widget(layout)
local layout_b = wibox.layout.align.horizontal()
local left_layout_b = wibox.layout.fixed.horizontal()
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(mpdw1)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(mpdtext)
layout_b:set_left(left_layout_b)
local right_layout_b = wibox.layout.fixed.horizontal()
right_layout_b:add(caltext)
right_layout_b:add(sepw)
right_layout_b:add(sepw)
layout_b:set_right(right_layout_b)
bottombar[s]:set_widget(layout_b)
end
-- }}}
---- {{{ Ps box
--pstext = wibox.widget.textbox();
--psmargin = wibox.layout.margin(pstext, 10, 0, 0, 0);
----pstext:set_markup("<span font_desc=\"monospace\"> " .. awful.util.pread("ps axk -%cpu,-%mem o pid,comm,%cpu,%mem | head -n 6") .. "</span>")
--pstext:set_markup("TEST WIDGET")
----psbox = wibox({width=240, height=90, bg="#dedede"})
--psbox = wibox({width=240, height=50, bg="#dedede"})
----psbox = wibox({width=240, height=90, bg=beautiful.bg_normal})
--local ps_layout = wibox.layout.fixed.horizontal()
--ps_layout:add(pstext)
--psbox.screen = 1
--psbox.visible = true
--psbox.opacity = 0.6
----psbox:set_widget(psmargin)
--psbox:set_widget(ps_layout)
--psbox:set_bg("linear:0,16:" .. w .. ",16:0,#f7f7f7:1,#d5d5d5")
----psbox:geometry({x=1280 - psbox.width - 3, y= 800 - psbox.height - 23})
--psbox:geometry({x=1280 - psbox.width - 10, y= 800 - psbox.height - 3})
--bashets.register("ps.sh", {widget = pstext, format = "<span font_desc=\"monospace\">$1</span>", update_time = 2, separator = "|"})
--
---- }}}
--- {{{ coverbox-ng
coverbox = wibox({width=26, height=26, bg="#ffffffff"})
coverimg = wibox.widget.imagebox()
coverimg:set_resize(true)
bashets.register("/home/anton/coverart.sh", {widget = coverimg, separator="=="})
local ca1_layout = wibox.layout.fixed.horizontal()
ca1_layout:add(coverimg)
--coverbox.widgets = {coverimg, layout = awful.widget.layout.vertical.top}
coverbox:set_widget(ca1_layout)
coverbox:geometry({x = 10, y = 800 - coverbox.height - 3})
coverbox.screen = 1
coverbox.visible = true
coverbox.opacity = 0.6
coverbox2 = wibox({width=150, height=3, bg="#ffffffff"})
coverbox2:geometry({x = 44, y = 800 - 16})
coverpg = awful.widget.progressbar()
coverpg:set_width(150)
coverpg:set_height(3)
coverpg:set_vertical(false)
coverpg:set_background_color("#606763")
coverpg:set_color('#ffffff')
coverpg:set_max_value(100)
bashets.register("/home/anton/mpdp.sh", {widget = coverpg, separator="=="})
local ca2_layout = wibox.layout.fixed.horizontal()
ca2_layout:add(coverpg)
coverbox2:set_widget(ca2_layout)
coverbox2.screen = 1
coverbox2.visible = true
coverbox2.opacity = 0.6
--- }}}
--bashets.register("org.freedesktop.Hal.Manager", {dbus = true, busname = "system", widget = datew, format="$3"})
-- {{{ Start widget updates
bashets.start()
-- }}}
-- {{{ Mouse bindings
root.buttons(awful.util.table.join(
awful.button({ }, 3, function () w_mainmenu:toggle() end),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
))
-- }}}
-- {{{ Key bindings
globalkeys = awful.util.table.join(
-- User defined
awful.key({}, "XF86AudioMute", run(commands.mute)),
awful.key({}, "XF86AudioRaiseVolume", run(commands.raisevol)),
awful.key({}, "XF86AudioLowerVolume", run(commands.lowervol)),
awful.key({}, "XF86AudioPlay", run(commands.playpause)),
awful.key({}, "XF86AudioMedia", run(commands.player)),
awful.key({}, "XF86AudioStop", run(commands.playstop)),
awful.key({}, "XF86AudioNext", run(commands.nexttrack)),
awful.key({}, "XF86AudioPrev", run(commands.prevtrack)),
awful.key({}, "XF86MyComputer", run(commands.fileman)),
awful.key({}, "XF86Mail", run(commands.mail)),
awful.key({}, "XF86HomePage", run(commands.browser)),
awful.key({}, "XF86Calculator", run(commands.calc)),
awful.key({"Mod1"}, "Print", run(commands.screenwin)),
awful.key({}, "Print", run(commands.screenshot)),
awful.key({}, "XF86Sleep", run(commands.lock)),
awful.key({"Control", "Mod1"}, "l", run(commands.lock)),
-- Default
awful.key({ modkey, }, "Left", awful.tag.viewprev ),
awful.key({ modkey, }, "Right", awful.tag.viewnext ),
awful.key({ modkey, }, "Escape", awful.tag.history.restore),
awful.key({ modkey, }, "j",
function ()
awful.client.focus.byidx( 1)
if client.focus then client.focus:raise() end
end),
awful.key({ modkey, }, "k",
function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end),
awful.key({ modkey, }, "w", function () mymainmenu:show({keygrabber=true}) 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),
-- Standard program
awful.key({ modkey, }, "Return", run(commands.terminal)),
awful.key({ modkey, "Control" }, "r", awesome.restart),
awful.key({ modkey, "Shift" }, "q", function() bashets.stop()
awesome.quit() end),
awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
awful.key({ modkey, "Control" }, "l", 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),
-- Prompt
awful.key({ modkey }, "r", function () w_promptbox[mouse.screen]:run() end),
awful.key({ modkey, "Shift" }, "r", function ()
awful.prompt.run({prompt = "Run as root: "}, wr_promptbox[mouse.screen], function(expr)
awful.util.spawn_with_shell("gksu \"" .. expr .. "\"")
end)
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, }, "q", 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) c.minimized = not c.minimized end),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
end)
)
-- Compute the maximum number of digit we need, limited to 9
keynumber = 0
for s = 1, screen.count() do
keynumber = math.min(9, math.max(#tags[s], keynumber));
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] then
awful.tag.viewonly(tags[screen][i])
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 = true,
keys = clientkeys,
buttons = clientbuttons } },
{ rule = { class = "MPlayer" },
properties = { floating = true } },
{ rule = { class = "pinentry" },
properties = { floating = true } },
{ rule = { class = "Gajim" },
properties = { floating = true } },
{ rule = { class = "Empathy" },
properties = { floating = true } },
{ rule = { class = "Cairo-clock" },
properties = { floating = true } },
{ rule = { class = "XClock" },
properties = { floating = true } },
{ rule = { class = "gimp" },
properties = { floating = true } },
{ rule = { class = "XTerm" },
properties = { opacity = 0.78 } },
}
-- }}}
-- {{{ Signals
-- Signal function 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)
c.size_hints_honor = false
if not 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)
client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
-- }}}
|
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 | -----------------------------------------------------------------------
-- Presets
-- Simply a collection of common reusable snippets and best practices
--
-- @author ahmad200512@yandex.ru
-- @copyright 2009 ahmad200512@yandex.ru
-- @license GPLv2
-- @release for Awesome 3.4
----------------------------------------------------------------------
local awful = require("awful")
local type = type
local io = io
local os = os
local print = print
local beautiful = beautiful
local string = string
module("presets")
-- Things that could change
local theme_path1 = "/usr/share/awesome/themes/"
local theme_path2 = os.getenv("HOME") .. "/.config/awesome/themes/"
function set_theme(theme, path)
if path == nil then
path = theme_path1 .. theme .. "/theme.lua"
fl = io.open(path, "r")
if (fl ~= nil) then
io.close(fl)
else
path = theme_path2 .. theme .. "/theme.lua"
fl = io.open(path, "r")
if (fl ~= nil) then
io.close(fl)
else
return print("E: presets: \"" .. path .. "\" is invalid theme path")
end
end
else
if string.find(path, '/$') == nil then
path = path .. "/"
end
path = path .. theme .. "/theme.lua"
fl = io.open(path, "r")
if (fl ~= nil) then
io.close(fl)
else
return print("E: presets: \"" .. path .. "\" is invalid theme path")
end
end
if beautiful ~= nil then
beautiful.init(path)
else
print("W: presets: setting theme with unloaded beautiful")
end
end
function run(app)
awful.util.spawn_with_shell(app)
end
function run_once(app)
appname = string.gmatch(app, "(%w+)")()
awful.util.spawn_with_shell("pgrep -u $USER -x " .. appname .. " || " .. app .. "")
end
function autorun(apps, flag)
if flag == nil or flag == true then
for idx = 1, #apps do
run_once(apps[idx])
end
end
end
function runner(cmd)
return function()
awful.util.spawn_with_shell(cmd)
end
end
|
x
Notes
usable only with awesome-git
awesome theme: http://ompldr.org/vYm5ibQ (include png’s, that’s why not just theme.lua)
wallpaper: http://cathita.deviantart.com/art/Montagne-103233998
gtk theme: http://zhuravlik26.deviantart.com/art/Hemera-gtk2-theme-257246327
bashets.lua:: https://gitorious.org/bashets (usable only with awesome-git, I’ve broken backwards compatibility, sorry)
kevoroid said about 6 years ago
Awesome theme!
edited about 4 years ago