diff --git a/.gitignore b/.gitignore index e69de29..8861a41 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,2 @@ +rc.lua +theme-personal.lua diff --git a/.gitmodules b/.gitmodules index 359b3c7..98c4667 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,7 @@ [submodule "lain"] path = lain url = git://github.com/copycat-killer/lain.git + +[submodule "freedesktop"] + path = freedesktop + url = git://github.com/copycat-killer/awesome-freedesktop.git diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..154700a --- /dev/null +++ b/ISSUE_TEMPLATE.md @@ -0,0 +1,25 @@ +# If you have a question + +Take the following steps: + +1. [Google it](https://encrypted.google.com) +2. Search [Awesome doc](https://awesomewm.org/doc) +3. Ask [community](https://awesomewm.org/community) + +and, if you still don't have an answer, you can ask here. + +**Please be warned:** if your question is __unrelated__ to this repository, a reply is only an act of kindness. + +# If you have an issue + +**Please search the [Issues section](https://github.com/copycat-killer/awesome-copycats/issues) first.** + +If you can't find a solution there, then go ahead and provide: + +* output of `awesome -v` and `lua -v` +* expected behavior and actual behavior +* steps to reproduce the problem + +# If you have a new feature or theme request + +Write a detailed description of the desired design, preferably with screenshots or mockups. diff --git a/README.rst b/README.rst index 1fa9eee..0afee13 100644 --- a/README.rst +++ b/README.rst @@ -1,59 +1,65 @@ -=================== Awesome WM Copycats =================== --------------------------- -Themes for Awesome WM 3.5+ --------------------------- +------------------------- +Themes for Awesome WM 4.x +------------------------- :Author: Luke Bonham :Version: git :License: BY-NC-SA_ :Source: https://github.com/copycat-killer/awesome-copycats +Warning +======= + +If you still have to use branch 3.5.x, you can refer to the commit b0ab0d7_, but be aware that it's no longer supported. + Description =========== -A set of themes with the aim of making Awesome_ appearance awesome too! +A set of themes for the Awesome_ window manager. -Notable features -================ +Features +======== -- Autohide widgets (*tell me only when you have to*) -- Autostart applications -- Fast MPD and volume shortcuts (first time you see this trick in Awesome) -- Other shortcuts for copying to the clipboard (goodbye clipboard managers!), toggle wiboxes, widgets popups, screenshots capture, moving and magnifying clients +- Modularity +- Autohide widgets +- Autostart windowless processes +- Fast MPD and volume shortcuts (first time this trick has been used in Awesome) +- Shortcuts for copying to the clipboard (no need for clipboard managers), toggle wiboxes, widgets popups, screenshots capture, moving and magnifying clients - Quake drop-down terminal -- Calendar with current day highlighted and months switch with a click -- Elegant notifications for new mails, current song, volume level, hdd critical state, low battery +- Calendar with current day highlighted and months switch with a click/scroll +- Notifications for new mails, current song, volume level, hdd critical state, low battery - OpenWeatherMap integration - Net carrier status notifier -- Colorful autoupdating icons - Symbolic tag names -- TXT layoutbox -- PNG wibox bar +- DWM-like textual layoutbox +- Cairo wibar - Custom layouts - No borders when there's only one visible client -- Powerful volume bar -- Menubar menu +- Freedesktop.org compliant menu and desktop icons - Vi-like client focus -- Nice client border (colors change along with processes status) - Non-empty tag browsing -- Dynamic useless gaps +- On-the-fly useless gaps resize - Dynamic tagging Gallery ======= -**Multicolor** inspired by tip_ +**Multicolor**, inspired by lucamanni_ .. image:: http://dotshare.it/public/images/uploads/650.png -**Powerarrow Darker** inspired by romockee_ +**Powerarrow**, porting of romockee_'s -.. image:: http://dotshare.it/public/images/uploads/649.png +.. image:: http://dotshare.it/public/images/uploads/1453.png -**Steamburn** copycatted from ok100_ [porting from dwm] +**Powerarrow Dark** + +.. image:: http://dotshare.it/public/images/uploads/649.jpg + +**Steamburn**, porting of ok100_'s dwm .. image:: http://dotshare.it/public/images/uploads/648.png @@ -69,75 +75,95 @@ Gallery .. image:: http://dotshare.it/public/images/uploads/606.png -**Holo** requested by amouly_ +**Holo**, requested by amouly_ -.. image:: http://dotshare.it/public/images/uploads/651.png +.. image:: http://dotshare.it/public/images/uploads/651.jpg -**Copland** inspired by foozer_ +**Copland**, inspired by foozer_ .. image:: http://dotshare.it/public/images/uploads/655.png +**Vertex**, requested by swordfischer_ + +.. image:: http://dotshare.it/public/images/uploads/1432.jpg + Installation ============ -Using git you can have the full master branch: :: +.. code-block:: shell - git clone --recursive https://github.com/copycat-killer/awesome-copycats.git - -then, move the contents of `awesome-copycats` to `~/.config/awesome`. - -Otherwise, download the latest two masters of ``awesome-copycats`` and ``lain`` (1_ and 2_), extract the first one, extract the second one into the first one, and put the contents of the first one into your Awesome directory. + $ git clone --recursive https://github.com/copycat-killer/awesome-copycats.git + $ mv -bv awesome-copycats/* ~/.config/awesome; rm -r awesome-copycats Usage ===== -Switch a theme this way: :: +The modular structure allows to - cd ~/.config/awesome - cp rc.lua.theme rc.lua +* set variables +* define startup processes +* change keybindings and layouts +* set client properties -Alternatively, you can use `switch-theme.sh`_, which will also update to the latest commit. +in ``rc.lua``, and -Then customize your ``rc.lua`` and restart Awesome (``Mod4 + ctrl + r``). +* configure widgets +* define wiboxes and screen settings + +in ``theme.lua``, so that you just need to change ``chosen_theme`` variable in ``rc.lua`` to preserve your preferences *and* switch the theme, instead of having N different ``rc.lua`` full of redundancy. + +Just do the following: + +.. code-block:: shell + + $ cd ~/.config/awesome + $ cp rc.lua.template rc.lua + +Then, set the variable ``chosen_theme`` in ``rc.lua`` to your preferred theme, do your settings, and restart Awesome (``Mod4 + ctrl + r``). + +To customize a theme, head over ``themes/$chosen_theme/theme.lua``. + +Otherwise, if you want to be synced with upstream, modify ``theme_path`` variable in ``rc.lua`` like this: + +.. code-block:: diff + + -local theme_path = string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), chosen_theme) + +local theme_path = string.format("%s/.config/awesome/themes/%s/theme-personal.lua", os.getenv("HOME"), chosen_theme) + +then, copy ``theme.lua`` to ``theme-personal.lua`` and do your customizations there. + +This way, you can safely ``git pull`` anytime. Notes ===== -Only compatible with **stable** versions of Lua and Awesome (git/unstable versions are *not* supported). +Complements are provided by lain_. -Complements are provided by lain_: be sure to meet its dependencies_. - -Fonts are Terminus_ (Multicolor, Powerarrow Darker) and Tamsyn_ (other ones). +Fonts are Terminus_ (Multicolor, Powerarrow Darker), Tamzen_ (Copland), Roboto_ (Holo, Vertex) and Tamsyn_ (other ones). Every theme has a colorscheme_. -Blackburn and Dremora use Icons_: be sure to have bitmaps enabled if running under Debian_ or Ubuntu_. +Blackburn and Dremora use Icons_, Vertex uses FontAwesome_: be sure to have bitmaps enabled if running under Debian or Ubuntu_. -Feel free to email me if you have any request. +Additional software used: :: -Notable forks -============= + unclutter firefox scrot mpd mpc dmenu xsel -Does your fork look very nice? You can send it to me! - -The best ones will be linked here. - - -.. _BY-NC-SA: http://creativecommons.org/licenses/by-nc-sa/4.0/ -.. _Awesome: http://awesome.naquadah.org/ -.. _tip: https://bbs.archlinux.org/profile.php?id=51327 +.. _BY-NC-SA: http://creativecommons.org/licenses/by-nc-sa/4.0 +.. _b0ab0d7: https://github.com/copycat-killer/awesome-copycats/tree/b0ab0d7837987be81b9195a36631df773113d491 +.. _Awesome: http://github.com/awesomeWM/awesome +.. _lucamanni: https://github.com/lucamanni/awesome .. _romockee: https://github.com/romockee/powerarrow .. _ok100: http://ok100.deviantart.com/art/DWM-January-2013-348656846 .. _amouly: https://bbs.archlinux.org/viewtopic.php?pid=1307158#p1307158 -.. _foozer: http://dotshare.it/dots/499/ -.. _1: https://github.com/copycat-killer/awesome-copycats/archive/master.zip -.. _2: https://github.com/copycat-killer/lain/archive/master.zip -.. _`switch-theme.sh`: https://github.com/copycat-killer/awesome-copycats/issues/36 +.. _swordfischer: https://github.com/copycat-killer/awesome-copycats/issues/53 +.. _foozer: http://dotshare.it/dots/499 .. _lain: https://github.com/copycat-killer/lain -.. _dependencies: https://github.com/copycat-killer/lain/wiki -.. _Terminus: http://terminus-font.sourceforge.net/ -.. _Tamsyn: http://www.fial.com/~scott/tamsyn-font/ +.. _Terminus: http://terminus-font.sourceforge.net +.. _Tamzen: https://github.com/sunaku/tamzen-font +.. _Roboto: https://fonts.google.com/specimen/Roboto +.. _Tamsyn: http://www.fial.com/~scott/tamsyn-font .. _colorscheme: https://github.com/copycat-killer/dots/tree/master/.colors .. _Icons: https://github.com/copycat-killer/dots/tree/master/.fonts -.. _Debian: http://weiwu.sdf.org/100921.html .. _Ubuntu: https://wiki.ubuntu.com/Fonts#Enabling_Bitmapped_Fonts +.. _FontAwesome: https://github.com/FortAwesome/Font-Awesome diff --git a/eminent/init.lua b/eminent/init.lua index 0be7adf..f48d580 100644 --- a/eminent/init.lua +++ b/eminent/init.lua @@ -12,9 +12,7 @@ local ipairs = ipairs local awful = require("awful") local table = table -local capi = { - screen = screen, -} +local capi = { screen = screen } -- Eminent: Effortless wmii-style dynamic tagging module("eminent") @@ -30,7 +28,6 @@ local orig = { -- Return tags with stuff on them, mark others hidden function gettags(screen) local tags = {} - for k, t in ipairs(capi.screen[screen]:tags()) do if t.selected or #t:clients() > 0 then awful.tag.setproperty(t, "hide", false) diff --git a/freedesktop b/freedesktop new file mode 160000 index 0000000..f9e7629 --- /dev/null +++ b/freedesktop @@ -0,0 +1 @@ +Subproject commit f9e762962c205711868959f2ec43821761773cbe diff --git a/menugen/init.lua b/menugen/init.lua deleted file mode 100644 index f93d7ab..0000000 --- a/menugen/init.lua +++ /dev/null @@ -1,60 +0,0 @@ ---------------------------------------------------------------------------- --- @author Harvey Mittens --- @copyright 2014 Harvey Mittens --- @email teknocratdefunct@riseup.net --- @release v3.5.5 ---------------------------------------------------------------------------- - -local menu_gen = require("menubar.menu_gen") -local menu_utils = require("menubar.utils") -local pairs = pairs -local ipairs = ipairs -local table = table -local string = string -local next = next - -module("menugen") - --- Built in menubar should be checking local applications directory -menu_gen.all_menu_dirs = { '/usr/share/applications/', '/usr/local/share/applications/', '~/.local/share/applications' } - --- Expecting an wm_name of awesome omits too many applications and tools -menu_utils.wm_name = "" - --- Use MenuBar Parsing Utils to build StartMenu for Awesome --- @return awful.menu compliant menu items tree -function build_menu() - local result = {} - local menulist = menu_gen.generate() - - for k,v in pairs(menu_gen.all_categories) do - table.insert(result, {k, {}, v["icon"] } ) - end - - for k, v in ipairs(menulist) do - for _, cat in ipairs(result) do - if cat[1] == v["category"] then - table.insert( cat[2] , { v["name"], v["cmdline"], v["icon"] } ) - break - end - end - end - - -- Cleanup Things a Bit - for k,v in ipairs(result) do - -- Remove Unused Categories - if not next(v[2]) then - table.remove(result, k) - else - --Sort entries Alphabetically (by Name) - table.sort(v[2], function (a,b) return string.byte(a[1]) < string.byte(b[1]) end) - -- Replace Catagory Name with nice name - v[1] = menu_gen.all_categories[v[1]].name - end - end - - -- Sort Categories Alphabetically Also - table.sort(result, function(a,b) return string.byte(a[1]) < string.byte(b[1]) end) - - return result -end diff --git a/rc.lua.blackburn b/rc.lua.blackburn deleted file mode 100644 index 138e85c..0000000 --- a/rc.lua.blackburn +++ /dev/null @@ -1,688 +0,0 @@ ---[[ - - Blackburn 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") --- }}} - --- {{{ 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") -run_once("unclutter -root") --- }}} - --- {{{ Variable definitions - --- beautiful init -beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/blackburn/theme.lua") - --- common -modkey = "Mod4" -altkey = "Mod1" -terminal = "urxvtc" or "xterm" -editor = os.getenv("EDITOR") or "nano" or "vi" -editor_cmd = terminal .. " -e " .. editor - --- user defined -browser = "dwb" -browser2 = "iron" -gui_editor = "gvim" -graphics = "gimp" - -local layouts = { - awful.layout.suit.floating, - lain.layout.uselesstile, - awful.layout.suit.fair, - lain.layout.uselesstile.left, - lain.layout.uselesstile.top -} --- }}} - --- {{{ Tags -tags = { - names = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" }, - layout = { layouts[1], layouts[3], layouts[2], layouts[1], layouts[5] } -} -for s = 1, screen.count() do - tags[s] = awful.tag(tags.names, s, tags.layout) -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 }}) --- }}} - --- {{{ Wibox -markup = lain.util.markup -gray = "#9E9C9A" - --- Textclock -mytextclock = awful.widget.textclock(" %H:%M ") - --- Calendar -lain.widgets.calendar:attach(mytextclock) - ---[[ Mail IMAP check --- commented because it needs to be set before use -mailwidget = lain.widgets.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup(gray, mail) .. count) - end -}) -]] - --- MPD -mpdwidget = lain.widgets.mpd({ - settings = function() - artist = mpd_now.artist .. " " - title = mpd_now.title .. " " - - if mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - elseif mpd_now.state == "stop" then - artist = "" - title = "" - end - - widget:set_markup(markup(gray, artist) .. title) - end -}) - --- /home fs -fshome = lain.widgets.fs({ - partition = "/home", - settings = function() - fs_header = "" - fs_p = "" - - if fs_now.used >= 90 then - fs_header = " Hdd " - fs_p = fs_now.used - end - - widget:set_markup(markup(gray, fs_header) .. fs_p) - end -}) - --- Battery -batwidget = lain.widgets.bat({ - settings = function() - bat_header = " Bat " - bat_p = bat_now.perc .. " " - - if bat_now.status == "Not present" then - bat_header = "" - bat_p = "" - end - - widget:set_markup(markup(gray, bat_header) .. bat_p) - end -}) - --- ALSA volume -volumewidget = lain.widgets.alsa({ - settings = function() - header = " Vol " - level = volume_now.level - - if volume_now.status == "off" then - level = level .. "M " - else - level = level .. " " - end - - widget:set_markup(markup(gray, header) .. level) - end -}) - -myweather = lain.widgets.weather({ - city_id = 123456, -- placeholder - settings = function() - units = math.floor(weather_now["main"]["temp"]) - widget:set_text(" " .. units .. " ") - end -}) - --- Separators -first = wibox.widget.textbox(' ') -arrl_pre = wibox.widget.imagebox() -arrl_pre:set_image(beautiful.arrl_lr_pre) -arrl_post = wibox.widget.imagebox() -arrl_post:set_image(beautiful.arrl_lr_post) - --- Create a wibox for each screen and add it -mywibox = {} -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({ 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() - -- 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(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 left - local left_layout = wibox.layout.fixed.horizontal() - left_layout:add(first) - left_layout:add(mytaglist[s]) - left_layout:add(arrl_pre) - left_layout:add(mylayoutbox[s]) - left_layout:add(arrl_post) - left_layout:add(mypromptbox[s]) - left_layout:add(first) - - -- 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(first) - right_layout:add(mpdwidget) - --right_layout:add(mailwidget) - right_layout:add(myweather.icon) - right_layout:add(myweather) - right_layout:add(fshome) - right_layout:add(batwidget) - right_layout:add(volumewidget) - right_layout:add(mytextclock) - - -- 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) - - -- Set proper background, instead of beautiful.bg_normal - mywibox[s]:set_bg(beautiful.topbar_path .. math.floor(screen[mouse.screen].workarea.width) .. ".png") -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) -)) --- }}} - --- {{{ Key bindings -globalkeys = awful.util.table.join( - -- Take a screenshot - -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") 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), - - -- On the fly useless gaps change - awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end), - awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) 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(terminal) end), - - -- Widgets popups - awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end), - awful.key({ altkey, }, "h", function () fshome.show(7) end), - awful.key({ altkey, }, "w", function () myweather.show(7) end), - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s 1%%+", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s 1%%-", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", volumewidget.channel)) - volumewidget.update() - end), - - -- MPD control - 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 }, "i", function () awful.util.spawn(browser2) end), - awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey }, "g", function () awful.util.spawn(graphics) 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, - keys = clientkeys, - buttons = clientbuttons, - size_hints_honor = false } }, - { rule = { class = "URxvt" }, - properties = { opacity = 0.99 } }, - - { rule = { class = "MPlayer" }, - properties = { floating = true } }, - - { rule = { class = "Dwb" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Iron" }, - properties = { tag = tags[1][1] } }, - - { rule = { instance = "plugin-container" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Gimp" }, - properties = { tag = tags[1][4] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized_horizontal = true, - maximized_vertical = true } }, -} --- }}} - --- {{{ 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) - - 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.floatingbutton(c)) - right_layout:add(awful.titlebar.widget.maximizedbutton(c)) - right_layout:add(awful.titlebar.widget.stickybutton(c)) - right_layout:add(awful.titlebar.widget.ontopbutton(c)) - right_layout:add(awful.titlebar.widget.closebutton(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_right(right_layout) - layout:set_middle(middle_layout) - - awful.titlebar(c,{size=16}):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 --- }}} diff --git a/rc.lua.copland b/rc.lua.copland deleted file mode 100644 index a06800e..0000000 --- a/rc.lua.copland +++ /dev/null @@ -1,760 +0,0 @@ ---[[ - - Copland Awesome WM config - 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 eminent = require("eminent") --- }}} - --- {{{ 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") -run_once("unclutter -root") --- }}} - --- {{{ Variable definitions - --- beautiful init -beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/copland/theme.lua") - --- common -modkey = "Mod4" -altkey = "Mod1" -terminal = "urxvtc" or "xterm" -editor = os.getenv("EDITOR") or "nano" or "vi" -editor_cmd = terminal .. " -e " .. editor - --- user defined -browser = "dwb" -browser2 = "iron" -gui_editor = "gvim" -graphics = "gimp" - --- lain -lain.layout.termfair.nmaster = 3 -lain.layout.termfair.ncol = 1 -lain.layout.centerfair.nmaster = 3 -lain.layout.centerfair.ncol = 1 - -local layouts = { - awful.layout.suit.floating, - awful.layout.suit.fair, - awful.layout.suit.tile, - lain.layout.uselessfair.horizontal, - lain.layout.uselesstile, - lain.layout.uselessfair, - lain.layout.termfair, - lain.layout.centerfair, - lain.layout.uselesspiral.dwindle -} --- }}} - --- {{{ Tags -tags = { - names = { "start", "2", "3", "4", "5" }, - layout = { layouts[1], layouts[2], layouts[3], layouts[4], layouts[5] } -} -for s = 1, screen.count() do - tags[s] = awful.tag(tags.names, s, tags.layout) -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 }}) --- }}} - --- {{{ Wibox -markup = lain.util.markup -blue = beautiful.fg_focus -red = "#EB8F8F" -green = "#8FEB8F" - --- Textclock -mytextclock = awful.widget.textclock(" %H:%M ") - --- Calendar -lain.widgets.calendar:attach(mytextclock) - ---[[ Mail IMAP check --- commented because it needs to be set before use -mailwidget = lain.widgets.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail = "" - count = "" - - if mailcount > 0 then - mail = " Mail " - count = mailcount .. " " - end - - widget:set_markup(markup(blue, mail) .. count) - end -}) -]] - --- MPD -mpdicon = wibox.widget.imagebox(beautiful.play) -mpdwidget = lain.widgets.mpd({ - settings = function() - if mpd_now.state == "play" then - title = mpd_now.title - artist = " - " .. mpd_now.artist .. markup("#333333", " | ") - mpdicon:set_image(beautiful.play) - elseif mpd_now.state == "pause" then - title = "mpd " - artist = "paused" .. markup("#333333", " | ") - mpdicon:set_image(beautiful.pause) - else - title = "" - artist = "" - mpdicon:set_image() - end - - widget:set_markup(markup(blue, title) .. artist) - end -}) - --- Battery -baticon = wibox.widget.imagebox(beautiful.bat) -batbar = awful.widget.progressbar() -batbar:set_color(beautiful.fg_normal) -batbar:set_width(55) -batbar:set_ticks(true) -batbar:set_ticks_size(6) -batbar:set_background_color(beautiful.bg_normal) -batmargin = wibox.layout.margin(batbar, 2, 7) -batmargin:set_top(6) -batmargin:set_bottom(6) -batupd = lain.widgets.bat({ - settings = function() - if bat_now.perc == "N/A" or bat_now.status == "Not present" then - bat_perc = 100 - baticon:set_image(beautiful.ac) - elseif bat_now.status == "Charging" then - bat_perc = tonumber(bat_now.perc) - baticon:set_image(beautiful.ac) - - if bat_perc >= 98 then - batbar:set_color(green) - elseif bat_perc > 50 then - batbar:set_color(beautiful.fg_normal) - elseif bat_perc > 15 then - batbar:set_color(beautiful.fg_normal) - else - batbar:set_color(red) - end - else - bat_perc = tonumber(bat_now.perc) - - if bat_perc >= 98 then - batbar:set_color(green) - elseif bat_perc > 50 then - batbar:set_color(beautiful.fg_normal) - baticon:set_image(beautiful.bat) - elseif bat_perc > 15 then - batbar:set_color(beautiful.fg_normal) - baticon:set_image(beautiful.bat_low) - else - batbar:set_color(red) - baticon:set_image(beautiful.bat_no) - end - end - batbar:set_value(bat_perc / 100) - end -}) -batwidget = wibox.widget.background(batmargin) -batwidget:set_bgimage(beautiful.widget_bg) - --- /home fs -diskicon = wibox.widget.imagebox(beautiful.disk) -diskbar = awful.widget.progressbar() -diskbar:set_color(beautiful.fg_normal) -diskbar:set_width(55) -diskbar:set_ticks(true) -diskbar:set_ticks_size(6) -diskbar:set_background_color(beautiful.bg_normal) -diskmargin = wibox.layout.margin(diskbar, 2, 7) -diskmargin:set_top(6) -diskmargin:set_bottom(6) -fshomeupd = lain.widgets.fs({ - partition = "/home", - settings = function() - if fs_now.used < 90 then - diskbar:set_color(beautiful.fg_normal) - else - diskbar:set_color("#EB8F8F") - end - diskbar:set_value(fs_now.used / 100) - end -}) -diskwidget = wibox.widget.background(diskmargin) -diskwidget:set_bgimage(beautiful.widget_bg) - --- ALSA volume bar -volicon = wibox.widget.imagebox(beautiful.vol) -volume = lain.widgets.alsabar({width = 55, ticks = true, ticks_size = 6, step = "2%", -settings = function() - if volume_now.status == "off" then - volicon:set_image(beautiful.vol_mute) - elseif volume_now.level == 0 then - volicon:set_image(beautiful.vol_no) - elseif volume_now.level <= 50 then - volicon:set_image(beautiful.vol_low) - else - volicon:set_image(beautiful.vol) - end -end, -colors = -{ - background = beautiful.bg_normal, - mute = red, - unmute = beautiful.fg_normal -}}) -volmargin = wibox.layout.margin(volume.bar, 2, 7) -volmargin:set_top(6) -volmargin:set_bottom(6) -volumewidget = wibox.widget.background(volmargin) -volumewidget:set_bgimage(beautiful.widget_bg) - --- Weather -myweather = lain.widgets.weather({ - city_id = 123456 -- placeholder -}) - --- Separators -spr = wibox.widget.textbox(' ') -small_spr = wibox.widget.textbox(' ') -bar_spr = wibox.widget.textbox(' ' .. markup("#333333", "|") .. ' ') - --- Create a wibox for each screen and add it -mywibox = {} -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({ 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() - -- 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(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 left - local left_layout = wibox.layout.fixed.horizontal() - left_layout:add(small_spr) - left_layout:add(mylayoutbox[s]) - left_layout:add(bar_spr) - left_layout:add(mytaglist[s]) - left_layout:add(spr) - left_layout:add(mypromptbox[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(small_spr) - right_layout:add(mpdicon) - right_layout:add(mpdwidget) - --right_layout:add(mailwidget) - right_layout:add(baticon) - right_layout:add(batwidget) - right_layout:add(bar_spr) - right_layout:add(diskicon) - right_layout:add(diskwidget) - right_layout:add(bar_spr) - right_layout:add(volicon) - right_layout:add(volumewidget) - right_layout:add(bar_spr) - right_layout:add(mytextclock) - - -- Now bring it all together (with the tasklist in the middle) - local layout = wibox.layout.align.horizontal() - layout:set_left(left_layout) - layout:set_middle(mytasklist[s]) - layout:set_right(right_layout) - - mywibox[s]:set_widget(layout) -end --- }}} - --- {{{ Mouse bindings -root.buttons(awful.util.table.join( - awful.button({ }, 3, function () mymainmenu:toggle() end), - awful.button({ }, 4, awful.tag.viewnext), - awful.button({ }, 5, awful.tag.viewprev) -)) --- }}} - --- {{{ Key bindings -globalkeys = awful.util.table.join( - -- Take a screenshot - -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") 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), - - -- On the fly useless gaps change - awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end), - awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) end), - - -- Rename tag - awful.key({ altkey, "Shift" }, "r", function () lain.util.rename_tag(mypromptbox) 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(terminal) end), - - -- Widgets popups - awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end), - awful.key({ altkey, }, "h", function () fshomeupd.show(7) end), - awful.key({ altkey, }, "w", function () myweather.show(7) end), - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s %s+", volume.channel, volume.step)) - volume.update() - end), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s %s-", volume.channel, volume.step)) - volume.update() - end), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", volume.channel)) - volume.update() - end), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", volume.channel)) - volume.update() - end), - - -- MPD control - 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 }, "i", function () awful.util.spawn(browser2) end), - awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey }, "g", function () awful.util.spawn(graphics) 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({ altkey, "Shift" }, "m", lain.util.magnify_client ), - 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, - keys = clientkeys, - buttons = clientbuttons, - size_hints_honor = false } }, - { rule = { class = "URxvt" }, - properties = { opacity = 0.99 } }, - - { rule = { class = "MPlayer" }, - properties = { floating = true } }, - - { rule = { class = "Dwb" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Iron" }, - properties = { tag = tags[1][1] } }, - - { rule = { instance = "plugin-container" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Gimp" }, - properties = { tag = tags[1][3] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized_horizontal = true, - maximized_vertical = true } }, -} --- }}} - --- {{{ 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) - - local titlebars_enabled = true - 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.floatingbutton(c)) - right_layout:add(awful.titlebar.widget.maximizedbutton(c)) - right_layout:add(awful.titlebar.widget.stickybutton(c)) - right_layout:add(awful.titlebar.widget.ontopbutton(c)) - right_layout:add(awful.titlebar.widget.closebutton(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_right(right_layout) - layout:set_middle(middle_layout) - - awful.titlebar(c,{size=16}):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 --- }}} diff --git a/rc.lua.dremora b/rc.lua.dremora deleted file mode 100644 index e0409c1..0000000 --- a/rc.lua.dremora +++ /dev/null @@ -1,678 +0,0 @@ ---[[ - - Dremora 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") --- }}} - --- {{{ 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") -run_once("unclutter -root") --- }}} - --- {{{ Variable definitions - --- beautiful init -beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/dremora/theme.lua") - --- common -modkey = "Mod4" -altkey = "Mod1" -terminal = "urxvtc" or "xterm" -editor = os.getenv("EDITOR") or "nano" or "vi" -editor_cmd = terminal .. " -e " .. editor - --- user defined -browser = "dwb" -browser2 = "iron" -gui_editor = "gvim" -graphics = "gimp" - -local layouts = { - awful.layout.suit.floating, - lain.layout.uselesstile, - awful.layout.suit.fair, - lain.layout.uselesstile.left, - lain.layout.uselesstile.top -} --- }}} - --- {{{ Tags -tags = { - names = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" }, - layout = { layouts[1], layouts[3], layouts[2], layouts[1], layouts[5] } -} -for s = 1, screen.count() do - tags[s] = awful.tag(tags.names, s, tags.layout) -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 }}) --- }}} - --- {{{ Wibox -markup = lain.util.markup -white = beautiful.fg_focus -gray = "#858585" - --- Textclock -mytextclock = awful.widget.textclock(markup(gray, " %a") -.. markup(white, " %d ") .. markup(gray, "%b ") .. markup(white, "%H:%M ")) - --- Calendar -lain.widgets.calendar:attach(mytextclock, { fg = white }) - ---[[ Mail IMAP check --- commented because it needs to be set before use -mailwidget = lain.widgets.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail_notification_preset.fg = white - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup(gray, mail) .. markup(white, count)) - end -}) -]] - --- MPD -mpdwidget = lain.widgets.mpd({ - settings = function() - mpd_notification_preset.fg = white - artist = mpd_now.artist .. " " - title = mpd_now.title .. " " - - if mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - elseif mpd_now.state == "stop" then - artist = "" - title = "" - end - - widget:set_markup(markup(gray, artist) .. markup(white, title)) - end -}) - --- /home fs -fshome = lain.widgets.fs({ - partition = "/home", - settings = function() - fs_notification_preset.fg = white - fs_header = "" - fs_p = "" - - if fs_now.used >= 90 then - fs_header = " Hdd " - fs_p = fs_now.used - end - - widget:set_markup(markup(gray, fs_header) .. markup(white, fs_p)) - end -}) - --- Battery -batwidget = lain.widgets.bat({ - settings = function() - bat_header = " Bat " - bat_p = bat_now.perc .. " " - - if bat_now.status == "Not present" then - bat_header = "" - bat_p = "" - end - - widget:set_markup(markup(gray, bat_header) .. markup(white, bat_p)) - end -}) - --- ALSA volume -volumewidget = lain.widgets.alsa({ - settings = function() - header = " Vol " - vlevel = volume_now.level - - if volume_now.status == "off" then - vlevel = vlevel .. "M " - else - vlevel = vlevel .. " " - end - - widget:set_markup(markup(gray, header) .. markup(white, vlevel)) - end -}) - --- Weather -myweather = lain.widgets.weather({ - city_id = 123456, -- placeholder - settings = function() - w_notification_preset.fg = white - end -}) - --- Separators -first = wibox.widget.textbox(' ') -arrl_pre = wibox.widget.imagebox() -arrl_pre:set_image(beautiful.arrl_lr_pre) -arrl_post = wibox.widget.imagebox() -arrl_post:set_image(beautiful.arrl_lr_post) - --- Create a wibox for each screen and add it -mywibox = {} -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({ 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() - -- 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(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 left - local left_layout = wibox.layout.fixed.horizontal() - left_layout:add(first) - left_layout:add(mytaglist[s]) - left_layout:add(arrl_pre) - left_layout:add(mylayoutbox[s]) - left_layout:add(arrl_post) - left_layout:add(mypromptbox[s]) - left_layout:add(first) - - -- 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(first) - right_layout:add(mpdwidget) - --right_layout:add(mailwidget) - right_layout:add(fshome) - right_layout:add(batwidget) - right_layout:add(volumewidget) - right_layout:add(mytextclock) - - -- Now bring it all together (with the tasklist in the middle) - local layout = wibox.layout.align.horizontal() - layout:set_left(left_layout) - layout:set_middle(mytasklist[s]) - layout:set_right(right_layout) - - mywibox[s]:set_widget(layout) -end --- }}} - --- {{{ Mouse bindings -root.buttons(awful.util.table.join( - awful.button({ }, 3, function () mymainmenu:toggle() end), - awful.button({ }, 4, awful.tag.viewnext), - awful.button({ }, 5, awful.tag.viewprev) -)) --- }}} - --- {{{ Key bindings -globalkeys = awful.util.table.join( - -- Take a screenshot - -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") 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), - - -- On the fly useless gaps change - awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end), - awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) 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(terminal) end), - - -- Widgets popups - awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end), - awful.key({ altkey, }, "h", function () fshome.show(7) end), - awful.key({ altkey, }, "w", function () myweather.show(7) end), - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s 1%%+", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s 1%%-", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", volumewidget.channel)) - volumewidget.update() - end), - - -- MPD control - 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 }, "i", function () awful.util.spawn(browser2) end), - awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey }, "g", function () awful.util.spawn(graphics) 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, - keys = clientkeys, - buttons = clientbuttons, - size_hints_honor = false } }, - { rule = { class = "URxvt" }, - properties = { opacity = 0.99 } }, - - { rule = { class = "MPlayer" }, - properties = { floating = true } }, - - { rule = { class = "Dwb" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Iron" }, - properties = { tag = tags[1][1] } }, - - { rule = { instance = "plugin-container" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Gimp" }, - properties = { tag = tags[1][4] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized_horizontal = true, - maximized_vertical = true } }, -} --- }}} - --- {{{ 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) - - local titlebars_enabled = true - 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) - ) - - -- Title 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) - - local layout = wibox.layout.align.horizontal() - 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 --- }}} diff --git a/rc.lua.holo b/rc.lua.holo deleted file mode 100644 index 534dc89..0000000 --- a/rc.lua.holo +++ /dev/null @@ -1,823 +0,0 @@ ---[[ - - Holo 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") --- }}} - --- {{{ 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") -run_once("unclutter -root") --- }}} - --- {{{ Variable definitions - --- beautiful init -beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/holo/theme.lua") - --- common -modkey = "Mod4" -altkey = "Mod1" -terminal = "urxvtc" or "xterm" -editor = os.getenv("EDITOR") or "nano" or "vi" -editor_cmd = terminal .. " -e " .. editor - --- user defined -browser = "dwb" -browser2 = "iron" -gui_editor = "gvim" -graphics = "gimp" -musicplr = terminal .. " -e ncmpcpp " - -local layouts = { - awful.layout.suit.floating, - lain.layout.uselesstile, - awful.layout.suit.fair, - lain.layout.uselesstile.left, - lain.layout.uselesstile.top -} --- }}} - --- {{{ Tags -tags = { - names = { " WEB ", " TERMINAL ", " FILES ", " OTHER " }, - layout = { layouts[1], layouts[3], layouts[2], layouts[4] } -} -for s = 1, screen.count() do - tags[s] = awful.tag(tags.names, s, tags.layout) -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 }) --- }}} - --- {{{ Wibox -markup = lain.util.markup -blue = "#80CCE6" -space3 = markup.font("Tamsyn 3", " ") -space2 = markup.font("Tamsyn 2", " ") - --- Clock -mytextclock = awful.widget.textclock(markup("#FFFFFF", space3 .. "%H:%M" .. space2)) -clock_icon = wibox.widget.imagebox() -clock_icon:set_image(beautiful.clock) -clockwidget = wibox.widget.background() -clockwidget:set_widget(mytextclock) -clockwidget:set_bgimage(beautiful.widget_bg) - --- Calendar -mytextcalendar = awful.widget.textclock(markup("#FFFFFF", space3 .. "%d %b ")) -calendar_icon = wibox.widget.imagebox() -calendar_icon:set_image(beautiful.calendar) -calendarwidget = wibox.widget.background() -calendarwidget:set_widget(mytextcalendar) -calendarwidget:set_bgimage(beautiful.widget_bg) -lain.widgets.calendar:attach(calendarwidget, { fg = "#FFFFFF", position = "bottom_right" }) - ---[[ Mail IMAP check --- commented because it needs to be set before use -mailwidget = lain.widgets.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail_notification_preset.fg = "#FFFFFF" - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup(blue, mail) .. markup("#FFFFFF", count)) - end -}) -]] - --- MPD -mpd_icon = wibox.widget.imagebox() -mpd_icon:set_image(beautiful.mpd) -prev_icon = wibox.widget.imagebox() -prev_icon:set_image(beautiful.prev) -next_icon = wibox.widget.imagebox() -next_icon:set_image(beautiful.nex) -stop_icon = wibox.widget.imagebox() -stop_icon:set_image(beautiful.stop) -pause_icon = wibox.widget.imagebox() -pause_icon:set_image(beautiful.pause) -play_pause_icon = wibox.widget.imagebox() -play_pause_icon:set_image(beautiful.play) - -mpdwidget = lain.widgets.mpd({ - settings = function () - if mpd_now.state == "play" then - mpd_now.artist = mpd_now.artist:upper():gsub("&.-;", string.lower) - mpd_now.title = mpd_now.title:upper():gsub("&.-;", string.lower) - widget:set_markup(markup.font("Tamsyn 4", " ") - .. markup.font("Tamsyn 8", - mpd_now.artist - .. " - " .. - mpd_now.title - .. markup.font("Tamsyn 10", " "))) - play_pause_icon:set_image(beautiful.pause) - elseif mpd_now.state == "pause" then - widget:set_markup(markup.font("Tamsyn 4", " ") .. - markup.font("Tamsyn 8", "MPD PAUSED") .. - markup.font("Tamsyn 10", " ")) - play_pause_icon:set_image(beautiful.play) - else - widget:set_markup("") - play_pause_icon:set_image(beautiful.play) - end - end -}) - -musicwidget = wibox.widget.background() -musicwidget:set_widget(mpdwidget) -musicwidget:set_bgimage(beautiful.widget_bg) -musicwidget:buttons(awful.util.table.join(awful.button({ }, 1, -function () awful.util.spawn_with_shell(musicplr) end))) -mpd_icon:buttons(awful.util.table.join(awful.button({ }, 1, -function () awful.util.spawn_with_shell(musicplr) end))) -prev_icon:buttons(awful.util.table.join(awful.button({}, 1, -function () - awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") - mpdwidget.update() -end))) -next_icon:buttons(awful.util.table.join(awful.button({}, 1, -function () - awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") - mpdwidget.update() -end))) -stop_icon:buttons(awful.util.table.join(awful.button({}, 1, -function () - play_pause_icon:set_image(beautiful.play) - awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") - mpdwidget.update() -end))) -play_pause_icon:buttons(awful.util.table.join(awful.button({}, 1, -function () - awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") - mpdwidget.update() -end))) - --- Battery -batwidget = lain.widgets.bat({ - settings = function() - bat_header = " Bat " - bat_p = bat_now.perc .. " " - - if bat_now.status == "Not present" then - bat_header = "" - bat_p = "" - end - - widget:set_markup(markup(blue, bat_header) .. bat_p) - end -}) - --- ALSA volume bar -myvolumebar = lain.widgets.alsabar({ - card = "0", - ticks = true, - width = 80, - height = 10, - colors = { - background = "#383838", - unmute = "#80CCE6", - mute = "#FF9F9F" - }, - notifications = { - font = "Tamsyn", - font_size = "12", - bar_size = 32 - } -}) -alsamargin = wibox.layout.margin(myvolumebar.bar, 5, 8, 80) -wibox.layout.margin.set_top(alsamargin, 12) -wibox.layout.margin.set_bottom(alsamargin, 12) -volumewidget = wibox.widget.background() -volumewidget:set_widget(alsamargin) -volumewidget:set_bgimage(beautiful.widget_bg) - --- CPU -cpu_widget = lain.widgets.cpu({ - settings = function() - widget:set_markup(space3 .. "CPU " .. cpu_now.usage - .. "%" .. markup.font("Tamsyn 5", " ")) - end -}) -cpuwidget = wibox.widget.background() -cpuwidget:set_widget(cpu_widget) -cpuwidget:set_bgimage(beautiful.widget_bg) -cpu_icon = wibox.widget.imagebox() -cpu_icon:set_image(beautiful.cpu) - --- Net -netdown_icon = wibox.widget.imagebox() -netdown_icon:set_image(beautiful.net_down) -netup_icon = wibox.widget.imagebox() -netup_icon:set_image(beautiful.net_up) -netwidget = lain.widgets.net({ - settings = function() - widget:set_markup(markup.font("Tamsyn 1", " ") .. net_now.received .. " - " - .. net_now.sent .. space2) - end -}) -networkwidget = wibox.widget.background() -networkwidget:set_widget(netwidget) -networkwidget:set_bgimage(beautiful.widget_bg) - --- Weather -myweather = lain.widgets.weather({ - city_id = 123456 -- placeholder -}) - --- Separators -first = wibox.widget.textbox(' ') -last = wibox.widget.imagebox() -last:set_image(beautiful.last) -spr = wibox.widget.imagebox() -spr:set_image(beautiful.spr) -spr_small = wibox.widget.imagebox() -spr_small:set_image(beautiful.spr_small) -spr_very_small = wibox.widget.imagebox() -spr_very_small:set_image(beautiful.spr_very_small) -spr_right = wibox.widget.imagebox() -spr_right:set_image(beautiful.spr_right) -spr_bottom_right = wibox.widget.imagebox() -spr_bottom_right:set_image(beautiful.spr_bottom_right) -spr_left = wibox.widget.imagebox() -spr_left:set_image(beautiful.spr_left) -bar = wibox.widget.imagebox() -bar:set_image(beautiful.bar) -bottom_bar = wibox.widget.imagebox() -bottom_bar:set_image(beautiful.bottom_bar) - --- 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({ 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() - -- 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(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 = 32 }) - - -- Widgets that are aligned to the upper left - local left_layout = wibox.layout.fixed.horizontal() - left_layout:add(first) - left_layout:add(mytaglist[s]) - left_layout:add(spr_small) - left_layout:add(mylayoutbox[s]) - left_layout:add(mypromptbox[s]) - - -- Widgets that are aligned to the upper right - local right_layout = wibox.layout.fixed.horizontal() - if s == 1 then right_layout:add(wibox.widget.systray()) end - --right_layout:add(mailwidget) - right_layout:add(batwidget) - right_layout:add(spr_right) - right_layout:add(prev_icon) - right_layout:add(next_icon) - right_layout:add(stop_icon) - right_layout:add(play_pause_icon) - right_layout:add(bar) - right_layout:add(mpd_icon) - right_layout:add(musicwidget) - right_layout:add(bar) - right_layout:add(spr_very_small) - right_layout:add(volumewidget) - right_layout:add(spr_left) - - -- Now bring it all together (with the tasklist in the middle) - local layout = wibox.layout.align.horizontal() - layout:set_left(left_layout) - layout:set_right(right_layout) - - mywibox[s]:set_widget(layout) - - -- Create the bottom wibox - mybottomwibox[s] = awful.wibox({ position = "bottom", screen = s, border_width = 0, height = 32 }) - - -- 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() - bottom_right_layout:add(spr_bottom_right) - bottom_right_layout:add(netdown_icon) - bottom_right_layout:add(networkwidget) - bottom_right_layout:add(netup_icon) - bottom_right_layout:add(bottom_bar) - bottom_right_layout:add(cpu_icon) - bottom_right_layout:add(cpuwidget) - bottom_right_layout:add(bottom_bar) - bottom_right_layout:add(calendar_icon) - bottom_right_layout:add(calendarwidget) - bottom_right_layout:add(bottom_bar) - bottom_right_layout:add(clock_icon) - bottom_right_layout:add(clockwidget) - bottom_right_layout:add(last) - - -- 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) - - -- Set proper backgrounds, instead of beautiful.bg_normal - mywibox[s]:set_bg(beautiful.topbar_path .. math.floor((screen[mouse.screen].workarea.width)) .. ".png") - mybottomwibox[s]:set_bg("#242424") - - -- 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({ }, 4, awful.tag.viewnext), - awful.button({ }, 5, awful.tag.viewprev) -)) --- }}} - --- {{{ Key bindings -globalkeys = awful.util.table.join( - -- Take a screenshot - -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") 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 - mybottomwibox[mouse.screen].visible = not mybottomwibox[mouse.screen].visible - end), - - -- On the fly useless gaps change - awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end), - awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) 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(terminal) end), - - -- Widgets popups - awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end), - awful.key({ altkey, }, "w", function () myweather.show(7) end), - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s %s+", myvolumebar.channel, myvolumebar.step)) - myvolumebar.update() - end), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s %s-", myvolumebar.channel, myvolumebar.step)) - myvolumebar.update() - end), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", myvolumebar.channel)) - myvolumebar.update() - end), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", myvolumebar.channel)) - myvolumebar.update() - end), - - -- MPD control - 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 }, "i", function () awful.util.spawn(browser2) end), - awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey }, "g", function () awful.util.spawn(graphics) 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, - keys = clientkeys, - buttons = clientbuttons, - size_hints_honor = false } }, - { rule = { class = "URxvt" }, - properties = { opacity = 0.99 } }, - - { rule = { class = "MPlayer" }, - properties = { floating = true } }, - - { rule = { class = "Dwb" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Iron" }, - properties = { tag = tags[1][1] } }, - - { rule = { instance = "plugin-container" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Gimp" }, - properties = { tag = tags[1][4] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized_horizontal = true, - maximized_vertical = true } }, -} --- }}} - --- {{{ 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) - - 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.floatingbutton(c)) - right_layout:add(awful.titlebar.widget.maximizedbutton(c)) - right_layout:add(awful.titlebar.widget.stickybutton(c)) - right_layout:add(awful.titlebar.widget.ontopbutton(c)) - right_layout:add(awful.titlebar.widget.closebutton(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_right(right_layout) - layout:set_middle(middle_layout) - - awful.titlebar(c,{size=16}):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 --- }}} diff --git a/rc.lua.multicolor b/rc.lua.multicolor deleted file mode 100644 index 7dca928..0000000 --- a/rc.lua.multicolor +++ /dev/null @@ -1,778 +0,0 @@ ---[[ - - Multicolor 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") --- }}} - --- {{{ 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") -run_once("unclutter -root") --- }}} - --- {{{ Variable definitions - --- beautiful init -beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/multicolor/theme.lua") - --- common -modkey = "Mod4" -altkey = "Mod1" -terminal = "urxvtc" or "xterm" -editor = os.getenv("EDITOR") or "nano" or "vi" -editor_cmd = terminal .. " -e " .. editor - --- user defined -browser = "dwb" -browser2 = "iron" -gui_editor = "gvim" -graphics = "gimp" -mail = terminal .. " -e mutt " - -local 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, - awful.layout.suit.spiral, - awful.layout.suit.spiral.dwindle, - awful.layout.suit.max, -} --- }}} - --- {{{ Tags -tags = { - names = { "web", "term", "docs", "media", "files", "other" }, - layout = { layouts[1], layouts[3], layouts[4], layouts[1], layouts[7], layouts[1] } -} -for s = 1, screen.count() do --- Each screen has its own tag table. - tags[s] = awful.tag(tags.names, s, tags.layout) -end --- }}} - --- {{{ Wallpaper -if beautiful.wallpaper then - for s = 1, screen.count() do - gears.wallpaper.maximized(beautiful.wallpaper, s, true) - end -end --- }}} - --- {{{ Freedesktop Menu -mymainmenu = awful.menu.new({ items = require("menugen").build_menu(), - theme = { height = 16, width = 130 }}) --- }}} - --- {{{ Wibox -markup = lain.util.markup - --- Textclock -clockicon = wibox.widget.imagebox(beautiful.widget_clock) ---mytextclock = awful.widget.textclock(markup("#7788af", "%A %d %B ") .. markup("#343639", ">") .. markup("#de5e1e", " %H:%M ")) -mytextclock = lain.widgets.abase({ - timeout = 60, - cmd = "date +'%A %d %B %R'", - settings = function() - local t_output = "" - local o_it = string.gmatch(output, "%S+") - - for i=1,3 do t_output = t_output .. " " .. o_it(i) end - - widget:set_markup(markup("#7788af", t_output) .. markup("#343639", " > ") .. markup("#de5e1e", o_it(1)) .. " ") - end -}) - --- Calendar -lain.widgets.calendar:attach(mytextclock, { font_size = 10 }) - --- Weather -weathericon = wibox.widget.imagebox(beautiful.widget_weather) -myweather = lain.widgets.weather({ - city_id = 123456, -- placeholder - settings = function() - descr = weather_now["weather"][1]["description"]:lower() - units = math.floor(weather_now["main"]["temp"]) - widget:set_markup(markup("#eca4c4", descr .. " @ " .. units .. "°C ")) - end -}) - --- / fs -fsicon = wibox.widget.imagebox(beautiful.widget_fs) -fswidget = lain.widgets.fs({ - settings = function() - widget:set_markup(markup("#80d9d8", fs_now.used .. "% ")) - end -}) - ---[[ Mail IMAP check --- commented because it needs to be set before use -mailicon = wibox.widget.imagebox() -mailicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn(mail) end))) -mailwidget = lain.widgets.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - if mailcount > 0 then - mailicon:set_image(beautiful.widget_mail) - widget:set_markup(markup("#cccccc", mailcount .. " ")) - else - widget:set_text("") - mailicon:set_image(nil) - end - end -}) -]] - --- CPU -cpuicon = wibox.widget.imagebox() -cpuicon:set_image(beautiful.widget_cpu) -cpuwidget = lain.widgets.cpu({ - settings = function() - widget:set_markup(markup("#e33a6e", cpu_now.usage .. "% ")) - end -}) - --- Coretemp -tempicon = wibox.widget.imagebox(beautiful.widget_temp) -tempwidget = lain.widgets.temp({ - settings = function() - widget:set_markup(markup("#f1af5f", coretemp_now .. "°C ")) - end -}) - --- Battery -baticon = wibox.widget.imagebox(beautiful.widget_batt) -batwidget = lain.widgets.bat({ - settings = function() - if bat_now.perc == "N/A" then - perc = "AC " - else - perc = bat_now.perc .. "% " - end - widget:set_text(perc) - end -}) - --- ALSA volume -volicon = wibox.widget.imagebox(beautiful.widget_vol) -volumewidget = lain.widgets.alsa({ - settings = function() - if volume_now.status == "off" then - volume_now.level = volume_now.level .. "M" - end - - widget:set_markup(markup("#7493d2", volume_now.level .. "% ")) - end -}) - --- Net -netdownicon = wibox.widget.imagebox(beautiful.widget_netdown) ---netdownicon.align = "middle" -netdowninfo = wibox.widget.textbox() -netupicon = wibox.widget.imagebox(beautiful.widget_netup) ---netupicon.align = "middle" -netupinfo = lain.widgets.net({ - settings = function() - if iface ~= "network off" and - string.match(myweather._layout.text, "N/A") - then - myweather.update() - end - - widget:set_markup(markup("#e54c62", net_now.sent .. " ")) - netdowninfo:set_markup(markup("#87af5f", net_now.received .. " ")) - end -}) - --- MEM -memicon = wibox.widget.imagebox(beautiful.widget_mem) -memwidget = lain.widgets.mem({ - settings = function() - widget:set_markup(markup("#e0da37", mem_now.used .. "M ")) - end -}) - --- MPD -mpdicon = wibox.widget.imagebox() -mpdwidget = lain.widgets.mpd({ - settings = function() - mpd_notification_preset = { - text = string.format("%s [%s] - %s\n%s", mpd_now.artist, - mpd_now.album, mpd_now.date, mpd_now.title) - } - - if mpd_now.state == "play" then - artist = mpd_now.artist .. " > " - title = mpd_now.title .. " " - mpdicon:set_image(beautiful.widget_note_on) - elseif mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - else - artist = "" - title = "" - mpdicon:set_image(nil) - end - widget:set_markup(markup("#e54c62", artist) .. markup("#b2b2b2", title)) - end -}) - --- Spacer -spacer = wibox.widget.textbox(" ") - --- }}} - --- {{{ Layout - --- 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({ 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 upper wibox - mywibox[s] = awful.wibox({ position = "top", screen = s, height = 20 }) - --border_width = 0, height = 20 }) - - -- Widgets that are aligned to the upper left - local left_layout = wibox.layout.fixed.horizontal() - left_layout:add(mytaglist[s]) - left_layout:add(mypromptbox[s]) - left_layout:add(mpdicon) - left_layout:add(mpdwidget) - - -- Widgets that are aligned to the upper right - local right_layout = wibox.layout.fixed.horizontal() - if s == 1 then right_layout:add(wibox.widget.systray()) end - --right_layout:add(mailicon) - --right_layout:add(mailwidget) - right_layout:add(netdownicon) - right_layout:add(netdowninfo) - right_layout:add(netupicon) - right_layout:add(netupinfo) - right_layout:add(volicon) - right_layout:add(volumewidget) - right_layout:add(memicon) - right_layout:add(memwidget) - right_layout:add(cpuicon) - right_layout:add(cpuwidget) - right_layout:add(fsicon) - right_layout:add(fswidget) - right_layout:add(weathericon) - right_layout:add(myweather) - right_layout:add(tempicon) - right_layout:add(tempwidget) - right_layout:add(baticon) - right_layout:add(batwidget) - right_layout:add(clockicon) - right_layout:add(mytextclock) - - -- 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, border_width = 0, height = 20 }) - --mybottomwibox[s].visible = false - - -- Widgets that are aligned to the bottom left - bottom_left_layout = wibox.layout.fixed.horizontal() - - -- Widgets that are aligned to the bottom right - bottom_right_layout = wibox.layout.fixed.horizontal() - bottom_right_layout:add(mylayoutbox[s]) - - -- 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) -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) -)) --- }}} - --- {{{ Key bindings -globalkeys = awful.util.table.join( - -- Take a screenshot - -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") 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 - mybottomwibox[mouse.screen].visible = not mybottomwibox[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(terminal) end), - - -- Widgets popups - awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end), - awful.key({ altkey, }, "h", function () fswidget.show(7) end), - awful.key({ altkey, }, "w", function () myweather.show(7) end), - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s 1%%+", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s 1%%-", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", volumewidget.channel)) - volumewidget.update() - end), - - -- MPD control - 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 }, "i", function () awful.util.spawn(browser2) end), - awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey }, "g", function () awful.util.spawn(graphics) 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, - keys = clientkeys, - buttons = clientbuttons, - size_hints_honor = false } }, - { rule = { class = "URxvt" }, - properties = { opacity = 0.99 } }, - - { rule = { class = "MPlayer" }, - properties = { floating = true } }, - - { rule = { class = "Dwb" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Iron" }, - properties = { tag = tags[1][1] } }, - - { rule = { instance = "plugin-container" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Gimp" }, - properties = { tag = tags[1][4] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized_horizontal = true, - maximized_vertical = true } }, -} --- }}} - --- {{{ 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) - - 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.floatingbutton(c)) - right_layout:add(awful.titlebar.widget.maximizedbutton(c)) - right_layout:add(awful.titlebar.widget.stickybutton(c)) - right_layout:add(awful.titlebar.widget.ontopbutton(c)) - right_layout:add(awful.titlebar.widget.closebutton(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_right(right_layout) - layout:set_middle(middle_layout) - - awful.titlebar(c,{size=16}):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 - -- No borders with only one humanly visible client - if layout == "max" then - c.border_width = 0 - elseif awful.client.floating.get(c) or layout == "floating" then - c.border_width = beautiful.border_width - elseif #clients == 1 then - clients[1].border_width = 0 - if layout ~= "max" then - awful.client.moveresize(0, 0, 2, 0, clients[1]) - end - else - c.border_width = beautiful.border_width - end - end - end - end) -end --- }}} diff --git a/rc.lua.powerarrow-darker b/rc.lua.powerarrow-darker deleted file mode 100644 index c8358c4..0000000 --- a/rc.lua.powerarrow-darker +++ /dev/null @@ -1,742 +0,0 @@ ---[[ - - 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") --- }}} - --- {{{ 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") -run_once("unclutter -root") --- }}} - --- {{{ Variable definitions - --- beautiful init -beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-darker/theme.lua") - --- common -modkey = "Mod4" -altkey = "Mod1" -terminal = "urxvtc" or "xterm" -editor = os.getenv("EDITOR") or "nano" or "vi" -editor_cmd = terminal .. " -e " .. editor - --- user defined -browser = "dwb" -browser2 = "iron" -gui_editor = "gvim" -graphics = "gimp" -mail = terminal .. " -e mutt " -iptraf = terminal .. " -g 180x54-20+34 -e sudo iptraf-ng -i all " -musicplr = terminal .. " -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.fair.horizontal, -} --- }}} - --- {{{ 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) -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 }}) --- }}} - --- {{{ 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") - -mytextclock = lain.widgets.abase({ - timeout = 60, - cmd = "date +'%a %d %b %R'", - settings = function() - widget:set_text(" " .. output) - end -}) - --- calendar -lain.widgets.calendar:attach(mytextclock, { font_size = 10 }) - --- Mail IMAP check -mailicon = wibox.widget.imagebox(beautiful.widget_mail) -mailicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn(mail) end))) ---[[ commented because it needs to be set before use -mailwidget = lain.widgets.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - if mailcount > 0 then - widget:set_text(" " .. mailcount .. " ") - mailicon:set_image(beautiful.widget_mail_on) - else - widget:set_text("") - mailicon:set_image(beautiful.widget_mail) - end - end -}) -]] - --- 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({ - 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 - - widget:set_markup(markup("#EA6F81", 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 -}) - --- / fs -fsicon = wibox.widget.imagebox(beautiful.widget_hdd) -fswidget = lain.widgets.fs({ - settings = function() - widget:set_text(" " .. fs_now.used .. "% ") - 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) -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("#7AC82E", " " .. net_now.received) - .. " " .. - markup("#46A8C3", " " .. 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 = {} -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({ 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(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) - -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) -)) --- }}} - --- {{{ Key bindings -globalkeys = awful.util.table.join( - -- Take a screenshot - -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") 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(terminal) end), - - -- Widgets popups - awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end), - awful.key({ altkey, }, "h", function () fswidget.show(7) end), - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s 1%%+", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s 1%%-", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", volumewidget.channel)) - volumewidget.update() - end), - - -- MPD control - 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 }, "i", function () awful.util.spawn(browser2) end), - awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey }, "g", function () awful.util.spawn(graphics) 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, - keys = clientkeys, - buttons = clientbuttons, - size_hints_honor = false } }, - { rule = { class = "URxvt" }, - properties = { opacity = 0.99 } }, - - { rule = { class = "MPlayer" }, - properties = { floating = true } }, - - { rule = { class = "Dwb" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Iron" }, - properties = { tag = tags[1][1] } }, - - { rule = { instance = "plugin-container" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Gimp" }, - properties = { tag = tags[1][4] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized_horizontal = true, - maximized_vertical = true } }, -} --- }}} - --- {{{ 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) - - 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.floatingbutton(c)) - right_layout:add(awful.titlebar.widget.maximizedbutton(c)) - right_layout:add(awful.titlebar.widget.stickybutton(c)) - right_layout:add(awful.titlebar.widget.ontopbutton(c)) - right_layout:add(awful.titlebar.widget.closebutton(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_right(right_layout) - layout:set_middle(middle_layout) - - awful.titlebar(c,{size=16}):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 --- }}} diff --git a/rc.lua.rainbow b/rc.lua.rainbow deleted file mode 100644 index 10cdbcd..0000000 --- a/rc.lua.rainbow +++ /dev/null @@ -1,687 +0,0 @@ ---[[ - - Rainbow 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") --- }}} - --- {{{ 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") -run_once("unclutter -root") --- }}} - --- {{{ Variable definitions - --- beautiful init -beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/rainbow/theme.lua") - --- common -modkey = "Mod4" -altkey = "Mod1" -terminal = "urxvtc" or "xterm" -editor = os.getenv("EDITOR") or "nano" or "vi" -editor_cmd = terminal .. " -e " .. editor - --- user defined -browser = "dwb" -browser2 = "iron" -gui_editor = "gvim" -graphics = "gimp" - --- lain -lain.layout.termfair.nmaster = 3 -lain.layout.termfair.ncol = 1 - -local layouts = { - awful.layout.suit.floating, - awful.layout.suit.fair, - awful.layout.suit.tile, - lain.layout.uselessfair.horizontal, - lain.layout.uselesstile, - lain.layout.uselessfair, - lain.layout.termfair, - lain.layout.uselesspiral.dwindle -} --- }}} - --- {{{ Tags -tags = { - names = { "www", "dev", "docs", "media" }, - layout = { layouts[1], layouts[2], layouts[3], layouts[4] } -} -for s = 1, screen.count() do - tags[s] = awful.tag(tags.names, s, tags.layout) -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 }}) --- }}} - --- {{{ Wibox -markup = lain.util.markup -white = beautiful.fg_focus -gray = beautiful.fg_normal - --- Textclock -mytextclock = awful.widget.textclock(markup.font("Tamsyn 3", " ") .. - markup(white, " %H:%M ")) - --- Calendar -lain.widgets.calendar:attach(mytextclock, { fg = beautiful.fg_focus }) - ---[[ Mail IMAP check --- commented because it needs to be set before use -mailwidget = lain.widgets.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail_notification_preset.fg = white - - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup(gray, mail) .. markup(white, count)) - end -}) -]] - --- MPD -mpdwidget = lain.widgets.mpd({ - settings = function() - mpd_notification_preset.fg = white - - artist = mpd_now.artist .. " " - title = mpd_now.title .. " " - - if mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - elseif mpd_now.state == "stop" then - artist = "" - title = "" - end - - widget:set_markup(markup(gray, artist) .. markup(white, title)) - end -}) - --- /home fs -fshome = lain.widgets.fs({ - partition = "/home", - settings = function() - fs_notification_preset.fg = white - - hdd = "" - p = "" - - if fs_now.used >= 90 then - hdd = " Hdd " - p = fs_now.used .. " " - end - - widget:set_markup(markup(gray, hdd) .. markup(white, p)) - end -}) - --- ALSA volume bar -volume = lain.widgets.alsabar({ card = "0", ticks = true }) -volmargin = wibox.layout.margin(volume.bar, 5, 8, 80) -volmargin:set_top(7) -volmargin:set_bottom(7) -volumewidget = wibox.widget.background(volmargin) -volumewidget:set_bgimage(beautiful.vol_bg) - --- Weather -myweather = lain.widgets.weather({ - city_id = 123456, -- placeholder - settings = function() - w_notification_preset.fg = white - end -}) - --- Separators -spr = wibox.widget.textbox(' ') -small_spr = wibox.widget.textbox(' ') -med_spr = wibox.widget.textbox(' ') - --- Create a wibox for each screen and add it -mywibox = {} -mypromptbox = {} -txtlayoutbox = {} -mytaglist = {} -mytasklist = {} -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.buttons = awful.util.table.join( - awful.button({ }, 1, function (c) - if c == client.focus then - c.minimized = true - else - -- Without this, the following - -- :isvisible() makes no sense - c.minimized = false - if not c:isvisible() then - awful.tag.viewonly(c:tags()[1]) - end - -- This will also un-minimize - -- the client, if needed - client.focus = c - c:raise() - end - end), - awful.button({ }, 3, function () - if instance then - instance:hide() - instance = nil - else - instance = awful.menu.clients({ width=250 }) - end - end), - awful.button({ }, 4, function () - awful.client.focus.byidx(1) - if client.focus then client.focus:raise() end - end), - awful.button({ }, 5, function () - awful.client.focus.byidx(-1) - if client.focus then client.focus:raise() end - end)) - --- Writes a string representation of the current layout in a textbox widget -function updatelayoutbox(layout, s) - local screen = s or 1 - local txt_l = beautiful["layout_txt_" .. awful.layout.getname(awful.layout.get(screen))] or "" - layout:set_text(txt_l) -end - -for s = 1, screen.count() do - -- Create a promptbox for each screen - mypromptbox[s] = awful.widget.prompt() - - -- Create a textbox widget which will contains a short string representing the - -- layout we're using. We need one layoutbox per screen. - txtlayoutbox[s] = wibox.widget.textbox(beautiful["layout_txt_" .. awful.layout.getname(awful.layout.get(s))]) - awful.tag.attached_connect_signal(s, "property::selected", function () - updatelayoutbox(txtlayoutbox[s], s) - end) - awful.tag.attached_connect_signal(s, "property::layout", function () - updatelayoutbox(txtlayoutbox[s], s) - end) - txtlayoutbox[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 left - local left_layout = wibox.layout.fixed.horizontal() - left_layout:add(small_spr) - left_layout:add(mytaglist[s]) - left_layout:add(spr) - left_layout:add(txtlayoutbox[s]) - left_layout:add(spr) - left_layout:add(mypromptbox[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(small_spr) - right_layout:add(mpdwidget) - --right_layout:add(mailwidget) - right_layout:add(fshome) - right_layout:add(med_spr) - right_layout:add(volumewidget) - right_layout:add(mytextclock) - - -- Now bring it all together (with the tasklist in the middle) - local layout = wibox.layout.align.horizontal() - layout:set_left(left_layout) - layout:set_middle(mytasklist[s]) - layout:set_right(right_layout) - - mywibox[s]:set_widget(layout) -end --- }}} - --- {{{ Mouse bindings -root.buttons(awful.util.table.join( - awful.button({ }, 3, function () mymainmenu:toggle() end), - awful.button({ }, 4, awful.tag.viewnext), - awful.button({ }, 5, awful.tag.viewprev) -)) --- }}} - --- {{{ Key bindings -globalkeys = awful.util.table.join( - -- Take a screenshot - -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") 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), - - -- On the fly useless gaps change - awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end), - awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) 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(terminal) end), - - -- Widgets popups - awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end), - awful.key({ altkey, }, "h", function () fshome.show(7) end), - awful.key({ altkey, }, "w", function () myweather.show(7) end), - - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s %s+", volume.channel, volume.step)) - volume.update() - end), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s %s-", volume.channel, volume.step)) - volume.update() - end), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", volume.channel)) - volume.update() - end), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", volume.channel)) - volume.update() - end), - - -- MPD control - 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 }, "i", function () awful.util.spawn(browser2) end), - awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey }, "g", function () awful.util.spawn(graphics) 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, - keys = clientkeys, - buttons = clientbuttons, - size_hints_honor = false } }, - { rule = { class = "URxvt" }, - properties = { opacity = 0.99 } }, - - { rule = { class = "MPlayer" }, - properties = { floating = true } }, - - { rule = { class = "Dwb" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Iron" }, - properties = { tag = tags[1][1] } }, - - { rule = { instance = "plugin-container" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Gimp" }, - properties = { tag = tags[1][4] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized_horizontal = true, - maximized_vertical = true } }, -} --- }}} - --- {{{ 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) - - 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.floatingbutton(c)) - right_layout:add(awful.titlebar.widget.maximizedbutton(c)) - right_layout:add(awful.titlebar.widget.stickybutton(c)) - right_layout:add(awful.titlebar.widget.ontopbutton(c)) - right_layout:add(awful.titlebar.widget.closebutton(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_right(right_layout) - layout:set_middle(middle_layout) - - awful.titlebar(c,{size=16}):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 --- }}} diff --git a/rc.lua.steamburn b/rc.lua.steamburn deleted file mode 100644 index 077a014..0000000 --- a/rc.lua.steamburn +++ /dev/null @@ -1,697 +0,0 @@ ---[[ - - Steamburn Awesome WM config 3.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") --- }}} - --- {{{ 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") -run_once("unclutter -root") --- }}} - --- {{{ Variable definitions - --- beautiful init -beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/steamburn/theme.lua") - --- common -modkey = "Mod4" -altkey = "Mod1" -terminal = "urxvtc" or "xterm" -editor = os.getenv("EDITOR") or "nano" or "vi" -editor_cmd = terminal .. " -e " .. editor - --- user defined -browser = "dwb" -browser2 = "iron" -gui_editor = "gvim" -graphics = "gimp" - --- lain -lain.layout.termfair.nmaster = 3 -lain.layout.termfair.ncol = 1 - -local layouts = { - awful.layout.suit.floating, - lain.layout.uselessfair.horizontal, - lain.layout.uselesstile, - lain.layout.uselessfair, - lain.layout.termfair, - lain.layout.uselesspiral.dwindle -} --- }}} - --- {{{ Tags -tags = { - names = { "web", "term", "docs", "media", "down"}, - layout = { layouts[1], layouts[3], layouts[4], layouts[1], layouts[6] } -} -for s = 1, screen.count() do - tags[s] = awful.tag(tags.names, s, tags.layout) -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 }}) --- }}} - --- {{{ Wibox -markup = lain.util.markup -gray = "#94928F" - --- Textclock -mytextclock = awful.widget.textclock(" %H:%M ") - --- Calendar -lain.widgets.calendar:attach(mytextclock) - --- Mail IMAP check -mailwidget = lain.widgets.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup(gray, mail) .. count) - end -}) - --- MPD -mpdwidget = lain.widgets.mpd({ - settings = function() - artist = mpd_now.artist .. " " - title = mpd_now.title .. " " - - if mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - elseif mpd_now.state == "stop" then - artist = "" - title = "" - end - - widget:set_markup(markup(gray, artist) .. title) - end -}) - --- CPU -cpuwidget = lain.widgets.sysload({ - settings = function() - widget:set_markup(markup(gray, " Cpu ") .. load_1 .. " ") - end -}) - --- MEM -memwidget = lain.widgets.mem({ - settings = function() - widget:set_markup(markup(gray, " Mem ") .. mem_now.used .. " ") - end -}) - --- /home fs -fshomeupd = lain.widgets.fs({ - partition = "/home" -}) - --- Battery -batwidget = lain.widgets.bat({ - settings = function() - bat_perc = bat_now.perc - if bat_perc == "N/A" then bat_perc = "Plug" end - widget:set_markup(markup(gray, " Bat ") .. bat_perc .. " ") - end -}) - --- Net checker -netwidget = lain.widgets.net({ - settings = function() - if net_now.state == "up" then net_state = "On" - else net_state = "Off" end - widget:set_markup(markup(gray, " Net ") .. net_state .. " ") - end -}) - --- ALSA volume -volumewidget = lain.widgets.alsa({ - settings = function() - header = " Vol " - vlevel = volume_now.level - - if volume_now.status == "off" then - vlevel = vlevel .. "M " - else - vlevel = vlevel .. " " - end - - widget:set_markup(markup(gray, header) .. vlevel) - end -}) - --- Weather -myweather = lain.widgets.weather({ - city_id = 123456 -- placeholder -}) - --- Separators -first = wibox.widget.textbox(markup.font("Tamsyn 4", " ")) -spr = wibox.widget.textbox(' ') - --- Create a wibox for each screen and add it -mywibox = {} -mypromptbox = {} -txtlayoutbox = {} -mytaglist = {} -mytasklist = {} -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.buttons = awful.util.table.join( - awful.button({ }, 1, function (c) - if c == client.focus then - c.minimized = true - else - -- Without this, the following - -- :isvisible() makes no sense - c.minimized = false - if not c:isvisible() then - awful.tag.viewonly(c:tags()[1]) - end - -- This will also un-minimize - -- the client, if needed - client.focus = c - c:raise() - end - end), - awful.button({ }, 3, function () - if instance then - instance:hide() - instance = nil - else - instance = awful.menu.clients({ width=250 }) - end - end), - awful.button({ }, 4, function () - awful.client.focus.byidx(1) - if client.focus then client.focus:raise() end - end), - awful.button({ }, 5, function () - awful.client.focus.byidx(-1) - if client.focus then client.focus:raise() end - end)) - --- Writes a string representation of the current layout in a textbox widget -function updatelayoutbox(layout, s) - local screen = s or 1 - local txt_l = beautiful["layout_txt_" .. awful.layout.getname(awful.layout.get(screen))] or "" - layout:set_text(txt_l) -end - -for s = 1, screen.count() do - -- Create a promptbox for each screen - mypromptbox[s] = awful.widget.prompt() - - -- Create a textbox widget which will contains a short string representing the - -- layout we're using. We need one layoutbox per screen. - txtlayoutbox[s] = wibox.widget.textbox(beautiful["layout_txt_" .. awful.layout.getname(awful.layout.get(s))]) - awful.tag.attached_connect_signal(s, "property::selected", function () - updatelayoutbox(txtlayoutbox[s], s) - end) - awful.tag.attached_connect_signal(s, "property::layout", function () - updatelayoutbox(txtlayoutbox[s], s) - end) - txtlayoutbox[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 left - local left_layout = wibox.layout.fixed.horizontal() - left_layout:add(first) - left_layout:add(mytaglist[s]) - left_layout:add(spr) - left_layout:add(txtlayoutbox[s]) - left_layout:add(spr) - left_layout:add(mypromptbox[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(spr) - right_layout:add(mpdwidget) - --right_layout:add(mailwidget) - right_layout:add(cpuwidget) - right_layout:add(memwidget) - right_layout:add(batwidget) - right_layout:add(netwidget) - right_layout:add(volumewidget) - right_layout:add(mytextclock) - - -- Now bring it all together (with the tasklist in the middle) - local layout = wibox.layout.align.horizontal() - layout:set_left(left_layout) - layout:set_middle(mytasklist[s]) - layout:set_right(right_layout) - - mywibox[s]:set_widget(layout) -end --- }}} - --- {{{ Mouse bindings -root.buttons(awful.util.table.join( - awful.button({ }, 3, function () mymainmenu:toggle() end), - awful.button({ }, 4, awful.tag.viewnext), - awful.button({ }, 5, awful.tag.viewprev) -)) --- }}} - --- {{{ Key bindings -globalkeys = awful.util.table.join( - -- Take a screenshot - -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") 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(terminal) end), - - -- Widgets popups - awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end), - awful.key({ altkey, }, "h", function () fshomeupd.show(7) end), - awful.key({ altkey, }, "w", function () myweather.show(7) end), - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s 1%%+", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s 1%%-", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", volumewidget.channel)) - volumewidget.update() - end), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", volumewidget.channel)) - volumewidget.update() - end), - - -- MPD control - 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 }, "i", function () awful.util.spawn(browser2) end), - awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey }, "g", function () awful.util.spawn(graphics) 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, - keys = clientkeys, - buttons = clientbuttons, - size_hints_honor = false } }, - { rule = { class = "URxvt" }, - properties = { opacity = 0.99 } }, - - { rule = { class = "MPlayer" }, - properties = { floating = true } }, - - { rule = { class = "Dwb" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Iron" }, - properties = { tag = tags[1][1] } }, - - { rule = { instance = "plugin-container" }, - properties = { tag = tags[1][1] } }, - - { rule = { class = "Gimp" }, - properties = { tag = tags[1][4] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized_horizontal = true, - maximized_vertical = true } }, -} --- }}} - --- {{{ 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) - - 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.floatingbutton(c)) - right_layout:add(awful.titlebar.widget.maximizedbutton(c)) - right_layout:add(awful.titlebar.widget.stickybutton(c)) - right_layout:add(awful.titlebar.widget.ontopbutton(c)) - right_layout:add(awful.titlebar.widget.closebutton(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_right(right_layout) - layout:set_middle(middle_layout) - - awful.titlebar(c,{size=16}):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 --- }}} diff --git a/rc.lua.template b/rc.lua.template new file mode 100644 index 0000000..4728f35 --- /dev/null +++ b/rc.lua.template @@ -0,0 +1,659 @@ + +--[[ + + Awesome WM configuration template + github.com/copycat-killer + +--]] + +-- {{{ Required libraries +local awesome, client, screen, tag = awesome, client, screen, tag +local ipairs, string, os, table, tostring, tonumber, type = ipairs, string, os, table, tostring, tonumber, type + +local gears = require("gears") +local awful = require("awful") + require("awful.autofocus") +local wibox = require("wibox") +local beautiful = require("beautiful") +local naughty = require("naughty") +local lain = require("lain") +--local menubar = require("menubar") +local freedesktop = require("freedesktop") +local hotkeys_popup = require("awful.hotkeys_popup").widget +-- }}} + +-- {{{ 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 = tostring(err) }) + in_error = false + end) +end +-- }}} + +-- {{{ Autostart windowless processes +local function run_once(cmd_arr) + for _, cmd in ipairs(cmd_arr) do + findme = cmd + firstspace = cmd:find(" ") + if firstspace then + findme = cmd:sub(0, firstspace-1) + end + awful.spawn.with_shell(string.format("pgrep -u $USER -x %s > /dev/null || (%s)", findme, cmd)) + end +end + +run_once({ "urxvtd", "unclutter -root" }) +-- }}} + +-- {{{ Variable definitions +local chosen_theme = "multicolor" +local modkey = "Mod4" +local altkey = "Mod1" +local terminal = "urxvtc" or "xterm" +local editor = os.getenv("EDITOR") or "nano" or "vi" +local gui_editor = "gvim" +local browser = "firefox" + +awful.util.terminal = terminal +awful.util.tagnames = { "1", "2", "3", "4", "5" } +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, + --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.corner.nw, + --awful.layout.suit.corner.ne, + --awful.layout.suit.corner.sw, + --awful.layout.suit.corner.se, + --lain.layout.cascade, + --lain.layout.cascade.tile, + --lain.layout.centerwork, + --lain.layout.centerwork.horizontal, + --lain.layout.termfair, + --lain.layout.termfair.center, +} +awful.util.taglist_buttons = awful.util.table.join( + awful.button({ }, 1, function(t) t:view_only() end), + awful.button({ modkey }, 1, function(t) + if client.focus then + client.focus:move_to_tag(t) + end + end), + awful.button({ }, 3, awful.tag.viewtoggle), + awful.button({ modkey }, 3, function(t) + if client.focus then + client.focus:toggle_tag(t) + end + end), + awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end), + awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end) + ) +awful.util.tasklist_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() and c.first_tag then + c.first_tag:view_only() + end + -- This will also un-minimize + -- the client, if needed + client.focus = c + c:raise() + end + end), + awful.button({ }, 3, function() + local instance = nil + + return function () + if instance and instance.wibox.visible then + instance:hide() + instance = nil + else + instance = awful.menu.clients({ theme = { width = 250 } }) + end + end + end), + awful.button({ }, 4, function () + awful.client.focus.byidx(1) + end), + awful.button({ }, 5, function () + awful.client.focus.byidx(-1) + end)) + +lain.layout.termfair.nmaster = 3 +lain.layout.termfair.ncol = 1 +lain.layout.termfair.center.nmaster = 3 +lain.layout.termfair.center.ncol = 1 +lain.layout.cascade.tile.offset_x = 2 +lain.layout.cascade.tile.offset_y = 32 +lain.layout.cascade.tile.extra_padding = 5 +lain.layout.cascade.tile.nmaster = 5 +lain.layout.cascade.tile.ncol = 2 + +local theme_path = string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), chosen_theme) +beautiful.init(theme_path) +-- }}} + +-- {{{ Menu +local myawesomemenu = { + { "hotkeys", function() return false, hotkeys_popup.show_help end }, + { "manual", terminal .. " -e man awesome" }, + { "edit config", string.format("%s -e %s %s", terminal, editor, awesome.conffile) }, + { "restart", awesome.restart }, + { "quit", function() awesome.quit() end } +} +awful.util.mymainmenu = freedesktop.menu.build({ + icon_size = beautiful.menu_height or 16, + before = { + { "Awesome", myawesomemenu, beautiful.awesome_icon }, + -- other triads can be put here + }, + after = { + { "Open terminal", terminal }, + -- other triads can be put here + } +}) +--menubar.utils.terminal = terminal -- Set the Menubar terminal for applications that require it +-- }}} + +-- {{{ Screen +-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) +screen.connect_signal("property::geometry", function(s) + -- Wallpaper + if beautiful.wallpaper then + local wallpaper = beautiful.wallpaper + -- If wallpaper is a function, call it with the screen + if type(wallpaper) == "function" then + wallpaper = wallpaper(s) + end + gears.wallpaper.maximized(wallpaper, s, true) + end +end) +-- Create a wibox for each screen and add it +awful.screen.connect_for_each_screen(function(s) beautiful.at_screen_connect(s) end) +-- }}} + +-- {{{ Mouse bindings +root.buttons(awful.util.table.join( + awful.button({ }, 3, function () awful.util.mymainmenu:toggle() end), + awful.button({ }, 4, awful.tag.viewnext), + awful.button({ }, 5, awful.tag.viewprev) +)) +-- }}} + +-- {{{ Key bindings +globalkeys = awful.util.table.join( + -- Take a screenshot + -- https://github.com/copycat-killer/dots/blob/master/bin/screenshot + awful.key({ altkey }, "p", function() os.execute("screenshot") end), + + -- Hotkeys + awful.key({ modkey, }, "s", hotkeys_popup.show_help, + {description="show help", group="awesome"}), + -- Tag browsing + awful.key({ modkey, }, "Left", awful.tag.viewprev, + {description = "view previous", group = "tag"}), + awful.key({ modkey, }, "Right", awful.tag.viewnext, + {description = "view next", group = "tag"}), + awful.key({ modkey, }, "Escape", awful.tag.history.restore, + {description = "go back", group = "tag"}), + + -- Non-empty tag browsing + awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end, + {description = "view previous nonempty", group = "tag"}), + awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end, + {description = "view previous nonempty", group = "tag"}), + + -- Default client focus + awful.key({ altkey, }, "j", + function () + awful.client.focus.byidx( 1) + end, + {description = "focus next by index", group = "client"} + ), + awful.key({ altkey, }, "k", + function () + awful.client.focus.byidx(-1) + end, + {description = "focus previous by index", group = "client"} + ), + + -- 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), + awful.key({ modkey, }, "w", function () awful.util.mymainmenu:show() end, + {description = "show main menu", group = "awesome"}), + + -- Layout manipulation + awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end, + {description = "swap with next client by index", group = "client"}), + awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end, + {description = "swap with previous client by index", group = "client"}), + awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end, + {description = "focus the next screen", group = "screen"}), + awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end, + {description = "focus the previous screen", group = "screen"}), + awful.key({ modkey, }, "u", awful.client.urgent.jumpto, + {description = "jump to urgent client", group = "client"}), + awful.key({ modkey, }, "Tab", + function () + awful.client.focus.history.previous() + if client.focus then + client.focus:raise() + end + end, + {description = "go back", group = "client"}), + + -- Show/Hide Wibox + awful.key({ modkey }, "b", function () + for s in screen do + s.mywibox.visible = not s.mywibox.visible + if s.mybottomwibox then + s.mybottomwibox.visible = not s.mybottomwibox.visible + end + end + end), + + -- On the fly useless gaps change + awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end), + awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) end), + + -- Dynamic tagging + awful.key({ modkey, "Shift" }, "n", function () lain.util.add_tag() end), + awful.key({ modkey, "Shift" }, "r", function () lain.util.rename_tag() end), + awful.key({ modkey, "Shift" }, "Left", function () lain.util.move_tag(1) end), -- move to next tag + awful.key({ modkey, "Shift" }, "Right", function () lain.util.move_tag(-1) end), -- move to previous tag + awful.key({ modkey, "Shift" }, "d", function () lain.util.delete_tag() end), + + -- Standard program + awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, + {description = "open a terminal", group = "launcher"}), + awful.key({ modkey, "Control" }, "r", awesome.restart, + {description = "reload awesome", group = "awesome"}), + awful.key({ modkey, "Shift" }, "q", awesome.quit, + {description = "quit awesome", group = "awesome"}), + + awful.key({ altkey, "Shift" }, "l", function () awful.tag.incmwfact( 0.05) end, + {description = "increase master width factor", group = "layout"}), + awful.key({ altkey, "Shift" }, "h", function () awful.tag.incmwfact(-0.05) end, + {description = "decrease master width factor", group = "layout"}), + awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end, + {description = "increase the number of master clients", group = "layout"}), + awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1, nil, true) end, + {description = "decrease the number of master clients", group = "layout"}), + awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1, nil, true) end, + {description = "increase the number of columns", group = "layout"}), + awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1, nil, true) end, + {description = "decrease the number of columns", group = "layout"}), + awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end, + {description = "select next", group = "layout"}), + awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end, + {description = "select previous", group = "layout"}), + + awful.key({ modkey, "Control" }, "n", + function () + local c = awful.client.restore() + -- Focus restored client + if c then + client.focus = c + c:raise() + end + end, + {description = "restore minimized", group = "client"}), + + -- Dropdown application + awful.key({ modkey, }, "z", function () awful.screen.focused().quake:toggle() end), + + -- Widgets popups + awful.key({ altkey, }, "c", function () lain.widget.calendar.show(7) end), + awful.key({ altkey, }, "h", function () if beautiful.fs then beautiful.fs.show(7) end end), + awful.key({ altkey, }, "w", function () if beautiful.weather then beautiful.weather.show(7) end end), + + -- ALSA volume control + awful.key({ altkey }, "Up", + function () + os.execute(string.format("amixer -q set %s 1%%+", beautiful.volume.channel)) + beautiful.volume.update() + end), + awful.key({ altkey }, "Down", + function () + os.execute(string.format("amixer -q set %s 1%%-", beautiful.volume.channel)) + beautiful.volume.update() + end), + awful.key({ altkey }, "m", + function () + os.execute(string.format("amixer -q set %s toggle", beautiful.volume.togglechannel or beautiful.volume.channel)) + beautiful.volume.update() + end), + awful.key({ altkey, "Control" }, "m", + function () + os.execute(string.format("amixer -q set %s 100%%", beautiful.volume.channel)) + beautiful.volume.update() + end), + + awful.key({ altkey, "Control" }, "0", + function () + os.execute(string.format("amixer -q set %s 0%%", beautiful.volume.channel)) + beautiful.volume.update() + end), + + -- MPD control + awful.key({ altkey, "Control" }, "Up", + function () + awful.spawn.with_shell("mpc toggle") + beautiful.mpd.update() + end), + awful.key({ altkey, "Control" }, "Down", + function () + awful.spawn.with_shell("mpc stop") + beautiful.mpd.update() + end), + awful.key({ altkey, "Control" }, "Left", + function () + awful.spawn.with_shell("mpc prev") + beautiful.mpd.update() + end), + awful.key({ altkey, "Control" }, "Right", + function () + awful.spawn.with_shell("mpc next") + beautiful.mpd.update() + end), + awful.key({ altkey }, "0", + function () + local common = { text = "MPD widget ", position = "top_middle", timeout = 2 } + if beautiful.mpd.timer.started then + beautiful.mpd.timer:stop() + common.text = common.text .. lain.util.markup.bold("OFF") + else + beautiful.mpd.timer:start() + common.text = common.text .. lain.util.markup.bold("ON") + end + naughty.notify(common) + end), + + -- Copy primary to clipboard (terminals to gtk) + awful.key({ modkey }, "c", function () awful.spawn("xsel | xsel -i -b") end), + -- Copy clipboard to primary (gtk to terminals) + awful.key({ modkey }, "v", function () awful.spawn("xsel -b | xsel") end), + + -- User programs + awful.key({ modkey }, "e", function () awful.spawn(gui_editor) end), + awful.key({ modkey }, "q", function () awful.spawn(browser) end), + + -- Default + --[[ Menubar + awful.key({ modkey }, "p", function() menubar.show() end, + {description = "show the menubar", group = "launcher"}) + --]] + --[[ dmenu + awful.key({ modkey }, "x", function () + awful.spawn(string.format("dmenu_run -i -fn 'Monospace' -nb '%s' -nf '%s' -sb '%s' -sf '%s'", + beautiful.bg_normal, beautiful.fg_normal, beautiful.bg_focus, beautiful.fg_focus)) + end) + --]] + -- Prompt + awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end, + {description = "run prompt", group = "launcher"}), + + awful.key({ modkey }, "x", + function () + awful.prompt.run { + prompt = "Run Lua code: ", + textbox = awful.screen.focused().mypromptbox.widget, + exe_callback = awful.util.eval, + history_path = awful.util.get_cache_dir() .. "/history_eval" + } + end, + {description = "lua execute prompt", group = "awesome"}) + --]] +) + +clientkeys = awful.util.table.join( + awful.key({ altkey, "Shift" }, "m", lain.util.magnify_client ), + awful.key({ modkey, }, "f", + function (c) + c.fullscreen = not c.fullscreen + c:raise() + end, + {description = "toggle fullscreen", group = "client"}), + awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end, + {description = "close", group = "client"}), + awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle , + {description = "toggle floating", group = "client"}), + awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, + {description = "move to master", group = "client"}), + awful.key({ modkey, }, "o", function (c) c:move_to_screen() end, + {description = "move to screen", group = "client"}), + awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, + {description = "toggle keep on top", group = "client"}), + 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 , + {description = "minimize", group = "client"}), + awful.key({ modkey, }, "m", + function (c) + c.maximized = not c.maximized + c:raise() + end , + {description = "maximize", group = "client"}) +) + +-- 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 = awful.screen.focused() + local tag = screen.tags[i] + if tag then + tag:view_only() + end + end, + {description = "view tag #"..i, group = "tag"}), + -- Toggle tag display. + awful.key({ modkey, "Control" }, "#" .. i + 9, + function () + local screen = awful.screen.focused() + local tag = screen.tags[i] + if tag then + awful.tag.viewtoggle(tag) + end + end, + {description = "toggle tag #" .. i, group = "tag"}), + -- Move client to tag. + awful.key({ modkey, "Shift" }, "#" .. i + 9, + function () + if client.focus then + local tag = client.focus.screen.tags[i] + if tag then + client.focus:move_to_tag(tag) + end + end + end, + {description = "move focused client to tag #"..i, group = "tag"}), + -- Toggle tag on focused client. + awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9, + function () + if client.focus then + local tag = client.focus.screen.tags[i] + if tag then + client.focus:toggle_tag(tag) + end + end + end, + {description = "toggle focused client on tag #" .. i, group = "tag"}) + ) +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 +-- Rules to apply to new clients (through the "manage" signal). +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, + screen = awful.screen.preferred, + placement = awful.placement.no_overlap+awful.placement.no_offscreen, + size_hints_honor = false + } + }, + + -- Titlebars + { rule_any = { type = { "dialog", "normal" } }, + properties = { titlebars_enabled = true } }, + + -- Set Firefox to always map on the first tag on screen 1. + { rule = { class = "Firefox" }, + properties = { screen = 1, tag = screen[1].tags[1] } }, + + { rule = { class = "Gimp", role = "gimp-image-window" }, + properties = { maximized = true } }, +} +-- }}} + +-- {{{ Signals +-- Signal function to execute when a new client appears. +client.connect_signal("manage", function (c) + -- Set the windows at the slave, + -- i.e. put it at the end of others instead of setting it master. + -- if not awesome.startup then awful.client.setslave(c) end + + if awesome.startup and + not c.size_hints.user_position + and not c.size_hints.program_position then + -- Prevent clients from being unreachable after screen count changes. + awful.placement.no_offscreen(c) + end +end) + +-- Add a titlebar if titlebars_enabled is set to true in the rules. +client.connect_signal("request::titlebars", function(c) + -- Custom + if beautiful.titlebar_fun then + beautiful.titlebar_fun(c) + return + end + + -- Default + -- 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) + ) + + awful.titlebar(c, {size = 16}) : setup { + { -- Left + awful.titlebar.widget.iconwidget(c), + buttons = buttons, + layout = wibox.layout.fixed.horizontal + }, + { -- Middle + { -- Title + align = "center", + widget = awful.titlebar.widget.titlewidget(c) + }, + buttons = buttons, + layout = wibox.layout.flex.horizontal + }, + { -- Right + awful.titlebar.widget.floatingbutton (c), + awful.titlebar.widget.maximizedbutton(c), + awful.titlebar.widget.stickybutton (c), + awful.titlebar.widget.ontopbutton (c), + awful.titlebar.widget.closebutton (c), + layout = wibox.layout.fixed.horizontal() + }, + layout = wibox.layout.align.horizontal + } +end) + +-- Enable sloppy focus, so that focus follows mouse. +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) + +-- No border for maximized clients +client.connect_signal("focus", + function(c) + if c.maximized then -- no borders if only 1 client visible + c.border_width = 0 + elseif #awful.screen.focused().clients > 1 then + c.border_width = beautiful.border_width + c.border_color = beautiful.border_focus + end + end) +client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) +-- }}} diff --git a/scratchdrop/init.lua b/scratchdrop/init.lua deleted file mode 100644 index 8bfed7e..0000000 --- a/scratchdrop/init.lua +++ /dev/null @@ -1,133 +0,0 @@ -------------------------------------------------------------------- --- Drop-down applications manager for the awesome window manager -------------------------------------------------------------------- --- Coded by: * Lucas de Vries --- Hacked by: * Adrian C. (anrxc) --- Licensed under the WTFPL version 2 --- * http://sam.zoy.org/wtfpl/COPYING -------------------------------------------------------------------- --- To use this module add: --- local scratchdrop = require("scratchdrop") --- to the top of your rc.lua, and call it from a keybinding: --- scratchdrop(prog, vert, horiz, width, height, sticky, screen) --- --- Parameters: --- prog - Program to run; "urxvt", "gmrun", "thunderbird" --- vert - Vertical; "bottom", "center" or "top" (default) --- horiz - Horizontal; "left", "right" or "center" (default) --- width - Width in absolute pixels, or width percentage --- when <= 1 (1 (100% of the screen) by default) --- height - Height in absolute pixels, or height percentage --- when <= 1 (0.25 (25% of the screen) by default) --- sticky - Visible on all tags, false by default --- screen - Screen (optional), mouse.screen by default -------------------------------------------------------------------- - --- Grab environment -local pairs = pairs -local awful = require("awful") -local setmetatable = setmetatable -local capi = { - mouse = mouse, - client = client, - screen = screen -} - --- Scratchdrop: drop-down applications manager for the awesome window manager -local scratchdrop = {} -- module scratch.drop - -local dropdown = {} - --- Create a new window for the drop-down application when it doesn't --- exist, or toggle between hidden and visible states when it does -function toggle(prog, vert, horiz, width, height, sticky, screen) - vert = vert or "top" - horiz = horiz or "center" - width = width or 1 - height = height or 0.25 - sticky = sticky or false - screen = screen or capi.mouse.screen - - -- Determine signal usage in this version of awesome - local attach_signal = capi.client.connect_signal or capi.client.add_signal - local detach_signal = capi.client.disconnect_signal or capi.client.remove_signal - - if not dropdown[prog] then - dropdown[prog] = {} - - -- Add unmanage signal for scratchdrop programs - attach_signal("unmanage", function (c) - for scr, cl in pairs(dropdown[prog]) do - if cl == c then - dropdown[prog][scr] = nil - end - end - end) - end - - if not dropdown[prog][screen] then - spawnw = function (c) - dropdown[prog][screen] = c - - -- Scratchdrop clients are floaters - awful.client.floating.set(c, true) - - -- Client geometry and placement - local screengeom = capi.screen[screen].workarea - - if width <= 1 then width = screengeom.width * width end - if height <= 1 then height = screengeom.height * height end - - if horiz == "left" then x = screengeom.x - elseif horiz == "right" then x = screengeom.width - width - else x = screengeom.x+(screengeom.width-width)/2 end - - if vert == "bottom" then y = screengeom.height + screengeom.y - height - elseif vert == "center" then y = screengeom.y+(screengeom.height-height)/2 - else y = screengeom.y - screengeom.y end - - -- Client properties - c:geometry({ x = x, y = y + mywibox[mouse.screen].height, width = width - 2, height = height }) - c.ontop = true - c.above = true - c.skip_taskbar = true - if sticky then c.sticky = true end - if c.titlebar then awful.titlebar.remove(c) end - - c:raise() - capi.client.focus = c - detach_signal("manage", spawnw) - end - - -- Add manage signal and spawn the program - attach_signal("manage", spawnw) - awful.util.spawn(prog, false) - else - -- Get a running client - c = dropdown[prog][screen] - - -- Switch the client to the current workspace - if c:isvisible() == false then c.hidden = true - awful.client.movetotag(awful.tag.selected(screen), c) - end - - -- Focus and raise if hidden - if c.hidden then - -- Make sure it is centered - --if vert == "center" then awful.placement.center_vertical(c) end - --if horiz == "center" then awful.placement.center_horizontal(c) end - c.hidden = false - c:raise() - capi.client.focus = c - else -- Hide and detach tags if not - c.hidden = true - local ctags = c:tags() - for i, t in pairs(ctags) do - ctags[i] = nil - end - c:tags(ctags) - end - end -end - -return setmetatable(scratchdrop, { __call = function(_, ...) return toggle(...) end }) diff --git a/switch-theme.sh b/switch-theme.sh deleted file mode 100755 index 5cfb9d7..0000000 --- a/switch-theme.sh +++ /dev/null @@ -1,42 +0,0 @@ -#! /usr/bin/make -f - -# Awesome Copycats switch theme script -# It also updates to latest commit. -# Dependencies: make, git - - -DESTDIR=~/.config/awesome -PROJECT=copycat-killer/awesome-copycats - -# $(swap_dialog) -define swap_dialog - echo ; \ - echo "see https://github.com/$(PROJECT)" ; \ - echo ; $(themes) | cat -n ; echo ; \ - typeset -i num; \ - read -p "Switch to theme: " num ; \ - if [ ! -z $${num} -a $${num} -ge 1 -a -le $${n_themes} ] ; then \ - NEW_THEME=$$($(themes) | head -n$${num} | tail -n1 ) ; \ - mv --backup=numbered rc.lua rc.lua.previous ; \ - cp $${NEW_THEME} rc.lua ; \ - echo "Theme is now $${NEW_THEME}"; \ - else echo " !! Aborted. " ; fi -endef - -# $(themes) -themes=find rc.lua* -not -name rc.lua - -# number of current themes -n_themes=$(themes) | wc -l - -.SILENT : all - -all: $(DESTDIR) - cd $(DESTDIR) && \ - echo -n $(git pull)#"Already up-to-date."; \ - git submodule init ; \ - git submodule update; \ - $(swap_dialog) - -$(DESTDIR): - git clone https://github.com/${PROJECT}.git $@ diff --git a/themes/blackburn/icons/arrl_lr_post.png b/themes/blackburn/icons/arrl_lr_post.png deleted file mode 100644 index 4b93707..0000000 Binary files a/themes/blackburn/icons/arrl_lr_post.png and /dev/null differ diff --git a/themes/blackburn/icons/arrl_lr_pre.png b/themes/blackburn/icons/arrl_lr_pre.png deleted file mode 100644 index 9412659..0000000 Binary files a/themes/blackburn/icons/arrl_lr_pre.png and /dev/null differ diff --git a/themes/blackburn/icons/awesome.png b/themes/blackburn/icons/awesome.png new file mode 100644 index 0000000..8193454 Binary files /dev/null and b/themes/blackburn/icons/awesome.png differ diff --git a/themes/blackburn/icons/floating.png b/themes/blackburn/icons/floating.png index 9394df9..21326f4 100644 Binary files a/themes/blackburn/icons/floating.png and b/themes/blackburn/icons/floating.png differ diff --git a/themes/blackburn/icons/titlebar/close_focus.png b/themes/blackburn/icons/titlebar/close_focus.png new file mode 100644 index 0000000..e835562 Binary files /dev/null and b/themes/blackburn/icons/titlebar/close_focus.png differ diff --git a/themes/blackburn/icons/titlebar/close_normal.png b/themes/blackburn/icons/titlebar/close_normal.png new file mode 100644 index 0000000..54b26f8 Binary files /dev/null and b/themes/blackburn/icons/titlebar/close_normal.png differ diff --git a/themes/blackburn/icons/titlebar/floating_focus_active.png b/themes/blackburn/icons/titlebar/floating_focus_active.png new file mode 100644 index 0000000..7f01323 Binary files /dev/null and b/themes/blackburn/icons/titlebar/floating_focus_active.png differ diff --git a/themes/blackburn/icons/titlebar/floating_focus_inactive.png b/themes/blackburn/icons/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..47f19f6 Binary files /dev/null and b/themes/blackburn/icons/titlebar/floating_focus_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/floating_normal_active.png b/themes/blackburn/icons/titlebar/floating_normal_active.png new file mode 100644 index 0000000..44b8dac Binary files /dev/null and b/themes/blackburn/icons/titlebar/floating_normal_active.png differ diff --git a/themes/blackburn/icons/titlebar/floating_normal_inactive.png b/themes/blackburn/icons/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..98f7f1d Binary files /dev/null and b/themes/blackburn/icons/titlebar/floating_normal_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/maximized_focus_active.png b/themes/blackburn/icons/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..13c2c15 Binary files /dev/null and b/themes/blackburn/icons/titlebar/maximized_focus_active.png differ diff --git a/themes/blackburn/icons/titlebar/maximized_focus_inactive.png b/themes/blackburn/icons/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..bce1d00 Binary files /dev/null and b/themes/blackburn/icons/titlebar/maximized_focus_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/maximized_normal_active.png b/themes/blackburn/icons/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..00ae107 Binary files /dev/null and b/themes/blackburn/icons/titlebar/maximized_normal_active.png differ diff --git a/themes/blackburn/icons/titlebar/maximized_normal_inactive.png b/themes/blackburn/icons/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..2e56d32 Binary files /dev/null and b/themes/blackburn/icons/titlebar/maximized_normal_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/ontop_focus_active.png b/themes/blackburn/icons/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..1d82a6e Binary files /dev/null and b/themes/blackburn/icons/titlebar/ontop_focus_active.png differ diff --git a/themes/blackburn/icons/titlebar/ontop_focus_inactive.png b/themes/blackburn/icons/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..2f3a2be Binary files /dev/null and b/themes/blackburn/icons/titlebar/ontop_focus_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/ontop_normal_active.png b/themes/blackburn/icons/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..499dfbf Binary files /dev/null and b/themes/blackburn/icons/titlebar/ontop_normal_active.png differ diff --git a/themes/blackburn/icons/titlebar/ontop_normal_inactive.png b/themes/blackburn/icons/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..a9a3206 Binary files /dev/null and b/themes/blackburn/icons/titlebar/ontop_normal_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/sticky_focus_active.png b/themes/blackburn/icons/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..0d56a16 Binary files /dev/null and b/themes/blackburn/icons/titlebar/sticky_focus_active.png differ diff --git a/themes/blackburn/icons/titlebar/sticky_focus_inactive.png b/themes/blackburn/icons/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..5493d8e Binary files /dev/null and b/themes/blackburn/icons/titlebar/sticky_focus_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/sticky_normal_active.png b/themes/blackburn/icons/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..a150154 Binary files /dev/null and b/themes/blackburn/icons/titlebar/sticky_normal_active.png differ diff --git a/themes/blackburn/icons/titlebar/sticky_normal_inactive.png b/themes/blackburn/icons/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..7e6c99b Binary files /dev/null and b/themes/blackburn/icons/titlebar/sticky_normal_inactive.png differ diff --git a/themes/blackburn/icons/topbar/1024.png b/themes/blackburn/icons/topbar/1024.png deleted file mode 100644 index 2ab0650..0000000 Binary files a/themes/blackburn/icons/topbar/1024.png and /dev/null differ diff --git a/themes/blackburn/icons/topbar/1152.png b/themes/blackburn/icons/topbar/1152.png deleted file mode 100644 index a16ba53..0000000 Binary files a/themes/blackburn/icons/topbar/1152.png and /dev/null differ diff --git a/themes/blackburn/icons/topbar/1280.png b/themes/blackburn/icons/topbar/1280.png deleted file mode 100644 index 163e95d..0000000 Binary files a/themes/blackburn/icons/topbar/1280.png and /dev/null differ diff --git a/themes/blackburn/icons/topbar/1366.png b/themes/blackburn/icons/topbar/1366.png deleted file mode 100644 index 82897e2..0000000 Binary files a/themes/blackburn/icons/topbar/1366.png and /dev/null differ diff --git a/themes/blackburn/icons/topbar/1440.png b/themes/blackburn/icons/topbar/1440.png deleted file mode 100644 index d07889c..0000000 Binary files a/themes/blackburn/icons/topbar/1440.png and /dev/null differ diff --git a/themes/blackburn/icons/topbar/1600.png b/themes/blackburn/icons/topbar/1600.png deleted file mode 100644 index a8a9dd9..0000000 Binary files a/themes/blackburn/icons/topbar/1600.png and /dev/null differ diff --git a/themes/blackburn/icons/topbar/1680.png b/themes/blackburn/icons/topbar/1680.png deleted file mode 100644 index 30158a2..0000000 Binary files a/themes/blackburn/icons/topbar/1680.png and /dev/null differ diff --git a/themes/blackburn/icons/topbar/1920.png b/themes/blackburn/icons/topbar/1920.png deleted file mode 100644 index 1d4d9b3..0000000 Binary files a/themes/blackburn/icons/topbar/1920.png and /dev/null differ diff --git a/themes/blackburn/icons/topbar/2560.png b/themes/blackburn/icons/topbar/2560.png deleted file mode 100644 index d4f8b1a..0000000 Binary files a/themes/blackburn/icons/topbar/2560.png and /dev/null differ diff --git a/themes/blackburn/icons/uselesstile.png b/themes/blackburn/icons/uselesstile.png deleted file mode 100644 index 69fed1a..0000000 Binary files a/themes/blackburn/icons/uselesstile.png and /dev/null differ diff --git a/themes/blackburn/icons/uselesstileleft.png b/themes/blackburn/icons/uselesstileleft.png deleted file mode 100644 index a77c177..0000000 Binary files a/themes/blackburn/icons/uselesstileleft.png and /dev/null differ diff --git a/themes/blackburn/icons/uselesstiletop.png b/themes/blackburn/icons/uselesstiletop.png deleted file mode 100644 index 8f5afa9..0000000 Binary files a/themes/blackburn/icons/uselesstiletop.png and /dev/null differ diff --git a/themes/blackburn/theme.lua b/themes/blackburn/theme.lua index 6c1b803..9166ee2 100644 --- a/themes/blackburn/theme.lua +++ b/themes/blackburn/theme.lua @@ -1,64 +1,269 @@ --[[ - - Blackburn Awesome WM config 2.0 - github.com/copycat-killer - + + Blackburn Awesome WM theme 3.0 + github.com/copycat-killer + --]] -theme = {} +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local os = { getenv = os.getenv } -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/blackburn" -theme.wallpaper = theme.dir .. "/wall.png" -theme.topbar_path = "png:" .. theme.dir .. "/icons/topbar/" +local theme = {} +theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/blackburn" +theme.wallpaper = theme.dir .. "/wall.png" +theme.font = "Misc Tamsyn 10.5" +theme.taglist_font = "Icons 10" +theme.fg_normal = "#D7D7D7" +theme.fg_focus = "#F6784F" +theme.bg_normal = "#060606" +theme.bg_focus = "#060606" +theme.fg_urgent = "#CC9393" +theme.bg_urgent = "#2A1F1E" +theme.border_width = 1 +theme.border_normal = "#0E0E0E" +theme.border_focus = "#F79372" +theme.taglist_fg_focus = "#F6784F" +theme.taglist_bg_focus = "#060606" +theme.tasklist_fg_focus = "#F6784F" +theme.tasklist_bg_focus = "#060606" +theme.menu_height = 16 +theme.menu_width = 130 +theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" +theme.awesome_icon = theme.dir .."/icons/awesome.png" +theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" +theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" +theme.layout_tile = theme.dir .. "/icons/tile.png" +theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" +theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" +theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" +theme.layout_fairv = theme.dir .. "/icons/fairv.png" +theme.layout_fairh = theme.dir .. "/icons/fairh.png" +theme.layout_spiral = theme.dir .. "/icons/spiral.png" +theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" +theme.layout_max = theme.dir .. "/icons/max.png" +theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" +theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" +theme.layout_floating = theme.dir .. "/icons/floating.png" +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true +theme.useless_gap = 0 +theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" +theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" +theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" +theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" +theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" +theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" -theme.font = "Tamsyn 10.5" -theme.taglist_font = "Icons 10" -theme.fg_normal = "#D7D7D7" -theme.fg_focus = "#F6784F" -theme.bg_normal = "#060606" -theme.bg_focus = "#060606" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#2A1F1E" -theme.border_width = "1" -theme.border_normal = "#0E0E0E" -theme.border_focus = "#F79372" +awful.util.tagnames = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" } -theme.taglist_fg_focus = "#F6784F" -theme.taglist_bg_focus = "#060606" -theme.tasklist_fg_focus = "#F6784F" -theme.tasklist_bg_focus = "#060606" -theme.menu_height = "16" -theme.menu_width = "140" +local markup = lain.util.markup +local separators = lain.util.separators +local gray = "#9E9C9A" -theme.submenu_icon = theme.dir .. "/icons/submenu.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.arrl_lr_pre = theme.dir .. "/icons/arrl_lr_pre.png" -theme.arrl_lr_post = theme.dir .. "/icons/arrl_lr_post.png" +-- Textclock +local mytextclock = wibox.widget.textclock(" %H:%M ") +mytextclock.font = theme.font -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" +-- Calendar +lain.widget.calendar({ + attach_to = { mytextclock }, + notification_preset = { + font = "Misc Tamsyn 11", + fg = theme.fg_normal, + bg = theme.bg_normal +}}) -theme.tasklist_disable_icon = true -theme.tasklist_floating = "" -theme.tasklist_maximized_horizontal = "" -theme.tasklist_maximized_vertical = "" +--[[ Mail IMAP check +-- commented because it needs to be set before use +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + notification_preset = { fg = white } + settings = function() + mail = "" + count = "" --- lain related -theme.useless_gap_width = 10 -theme.layout_uselesstile = theme.dir .. "/icons/uselesstile.png" -theme.layout_uselesstileleft = theme.dir .. "/icons/uselesstileleft.png" -theme.layout_uselesstiletop = theme.dir .. "/icons/uselesstiletop.png" + if mailcount > 0 then + mail = "Mail " + count = mailcount .. " " + end + + widget:set_markup(markup.font(theme.font, markup(gray, mail) .. count)) + end +}) +--]] + +-- MPD +theme.mpd = lain.widget.mpd({ + settings = function() + mpd_notification_preset.fg = white + artist = mpd_now.artist .. " " + title = mpd_now.title .. " " + + if mpd_now.state == "pause" then + artist = "mpd " + title = "paused " + elseif mpd_now.state == "stop" then + artist = "" + title = "" + end + + widget:set_markup(markup.font(theme.font, markup(gray, artist) .. title .. " ")) + end +}) + +-- /home fs +theme.fs = lain.widget.fs({ + partition = "/home", + options = "--exclude-type=tmpfs", + notification_preset = { fg = white, bg = theme.bg_normal, font = "Misc Tamsyn 10.5" }, + settings = function() + fs_header = "" + fs_p = "" + + if tonumber(fs_now.used) >= 90 then + fs_header = " Hdd " + fs_p = fs_now.used + end + + widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. fs_p)) + end +}) + +-- Battery +local bat = lain.widget.bat({ + settings = function() + bat_header = " Bat " + bat_p = bat_now.perc .. " " + widget:set_markup(markup.font(theme.font, markup(gray, bat_header) .. bat_p)) + end +}) + +-- ALSA volume +theme.volume = lain.widget.alsa({ + --togglechannel = "IEC958,3", + settings = function() + header = " Vol " + vlevel = volume_now.level + + if volume_now.status == "off" then + vlevel = vlevel .. "M " + else + vlevel = vlevel .. " " + end + + widget:set_markup(markup.font(theme.font, markup(gray, header) .. vlevel)) + end +}) + +-- Weather +theme.weather = lain.widget.weather({ + city_id = 2643743, -- placeholder (London) + settings = function() + units = math.floor(weather_now["main"]["temp"]) + widget:set_markup(" " .. units .. " ") + end +}) + +-- Separators +local first = wibox.widget.textbox(' ') +local arrl_pre = separators.arrow_right("alpha", "#1A1A1A") +local arrl_post = separators.arrow_right("#1A1A1A", "alpha") + +local barheight = 18 +local barcolor = gears.color({ + type = "linear", + from = { barheight, 0 }, + to = { barheight, barheight }, + stops = { {0, theme.bg_focus }, {0.8, theme.border_normal}, {1, "#1A1A1A"} } +}) +theme.titlebar_bg = barcolor + +theme.titlebar_bg_focus = gears.color({ + type = "linear", + from = { barheight, 0 }, + to = { barheight, barheight }, + stops = { {0, theme.bg_normal}, {0.5, theme.border_normal}, {1, "#492417"} } +}) + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contains an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(awful.util.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons, { bg_normal = barcolor, bg_focus = barcolor }) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 18, bg = barcolor }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + first, + s.mytaglist, + arrl_pre, + s.mylayoutbox, + arrl_post, + s.mypromptbox, + first, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + first, + theme.mpd.widget, + --mail.widget, + theme.weather.icon, + theme.weather.widget, + theme.fs.widget, + bat, + theme.volume.widget, + mytextclock, + }, + } +end return theme diff --git a/themes/blackburn/wall.png b/themes/blackburn/wall.png index c3b0e2e..28d0c4e 100644 Binary files a/themes/blackburn/wall.png and b/themes/blackburn/wall.png differ diff --git a/themes/copland/icons/fullscreen.png b/themes/copland/icons/fullscreen.png new file mode 100644 index 0000000..feb44d1 Binary files /dev/null and b/themes/copland/icons/fullscreen.png differ diff --git a/themes/copland/icons/magnifier.png b/themes/copland/icons/magnifier.png new file mode 100644 index 0000000..49616bc Binary files /dev/null and b/themes/copland/icons/magnifier.png differ diff --git a/themes/copland/icons/max.png b/themes/copland/icons/max.png new file mode 100644 index 0000000..3f4bdec Binary files /dev/null and b/themes/copland/icons/max.png differ diff --git a/themes/copland/icons/stop.png b/themes/copland/icons/stop.png new file mode 100644 index 0000000..b01b75e Binary files /dev/null and b/themes/copland/icons/stop.png differ diff --git a/themes/copland/icons/widget_bg.png b/themes/copland/icons/widget_bg.png deleted file mode 100644 index e04f495..0000000 Binary files a/themes/copland/icons/widget_bg.png and /dev/null differ diff --git a/themes/copland/theme.lua b/themes/copland/theme.lua index 4814c81..6192277 100644 --- a/themes/copland/theme.lua +++ b/themes/copland/theme.lua @@ -1,17 +1,22 @@ --[[ - - Copland Awesome WM config - github.com/copycat-killer - + + Copland Awesome WM theme 2.0 + github.com/copycat-killer + --]] -theme = {} +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local eminent = require("eminent") +local os = { getenv = os.getenv, setlocale = os.setlocale } +local theme = {} theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/copland" theme.wallpaper = theme.dir .. "/wall.png" - -theme.font = "Tamsyn 10.5" +theme.font = "Tamzen 10.5" theme.fg_normal = "#BBBBBB" theme.fg_focus = "#78A4FF" theme.bg_normal = "#111111" @@ -21,26 +26,18 @@ theme.bg_urgent = "#FFFFFF" theme.border_width = 1 theme.border_normal = "#141414" theme.border_focus = "#93B6FF" -theme.taglist_fg_focus = "#FFFFEF" +theme.taglist_fg_focus = "#FFFFFF" theme.taglist_bg_focus = "#111111" theme.taglist_bg_normal = "#111111" theme.titlebar_bg_normal = "#191919" theme.titlebar_bg_focus = "#262626" -theme.menu_height = "15" -theme.menu_width = "150" - -theme.tasklist_sticky = "" -theme.tasklist_ontop = "" -theme.tasklist_floating = "" -theme.tasklist_maximized_horizontal = "" -theme.tasklist_maximized_vertical = "" +theme.menu_height = 16 +theme.menu_width = 130 theme.tasklist_disable_icon = true - theme.awesome_icon = theme.dir .."/icons/awesome.png" -theme.submenu_icon = theme.dir .."/icons/submenu.png" +theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" theme.taglist_squares_sel = theme.dir .. "/icons/square_unsel.png" theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.widget_bg = theme.dir .. "/icons/widget_bg.png" theme.vol = theme.dir .. "/icons/vol.png" theme.vol_low = theme.dir .. "/icons/vol_low.png" theme.vol_no = theme.dir .. "/icons/vol_no.png" @@ -52,7 +49,7 @@ theme.bat_low = theme.dir .. "/icons/bat_low.p theme.bat_no = theme.dir .. "/icons/bat_no.png" theme.play = theme.dir .. "/icons/play.png" theme.pause = theme.dir .. "/icons/pause.png" - +theme.stop = theme.dir .. "/icons/stop.png" theme.layout_tile = theme.dir .. "/icons/tile.png" theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" @@ -65,42 +62,298 @@ theme.layout_max = theme.dir .. "/icons/max.png" theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" theme.layout_floating = theme.dir .. "/icons/floating.png" - +theme.useless_gap = 0 theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" - theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" - theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" - theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" - theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" -- lain related -theme.useless_gap_width = 10 theme.layout_centerfair = theme.dir .. "/icons/centerfair.png" theme.layout_termfair = theme.dir .. "/icons/termfair.png" theme.layout_centerwork = theme.dir .. "/icons/centerwork.png" -theme.layout_uselessfair = theme.dir .. "/icons/fairv.png" -theme.layout_uselessfairh = theme.dir .. "/icons/fairh.png" -theme.layout_uselessdwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_uselesstile = theme.dir .. "/icons/tile.png" -theme.layout_uselesstiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_uselesstileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_uselesstilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_uselesspiral = theme.dir .. "/icons/spiral.png" + +local markup = lain.util.markup +local blue = theme.fg_focus +local red = "#EB8F8F" +local green = "#8FEB8F" + +-- Textclock +--os.setlocale(os.getenv("LANG")) -- to localize the clock +local mytextclock = wibox.widget.textclock(" %H:%M ") +mytextclock.font = theme.font + +-- Calendar +lain.widget.calendar({ + attach_to = { mytextclock }, + notification_preset = { + font = "Tamzen 11", + fg = theme.fg_normal, + bg = theme.bg_normal + } +}) + +--[[ Mail IMAP check +-- commented because it needs to be set before use +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + settings = function() + mail = "" + count = "" + + if mailcount > 0 then + mail = " Mail " + count = mailcount .. " " + end + + widget:set_markup(markup(blue, mail) .. count) + end +}) +--]] + +-- MPD +local mpdicon = wibox.widget.imagebox() +theme.mpd = lain.widget.mpd({ + settings = function() + if mpd_now.state == "play" then + title = mpd_now.title + artist = " " .. mpd_now.artist .. markup("#333333", " | ") + mpdicon:set_image(theme.play) + elseif mpd_now.state == "pause" then + title = "mpd " + artist = "paused" .. markup("#333333", " | ") + mpdicon:set_image(theme.pause) + else + title = "" + artist = "" + mpdicon._private.image = nil + mpdicon:emit_signal("widget::redraw_needed") + mpdicon:emit_signal("widget::layout_changed") + end + + widget:set_markup(markup.font(theme.font, markup(blue, title) .. artist)) + end +}) + +-- Battery +local baticon = wibox.widget.imagebox(theme.bat) +local batbar = wibox.widget { + forced_height = 1, + forced_width = 59, + color = theme.fg_normal, + background_color = theme.bg_normal, + margins = 1, + paddings = 1, + ticks = true, + ticks_size = 6, + widget = wibox.widget.progressbar, +} +local batupd = lain.widget.bat({ + settings = function() + if bat_now.status == "N/A" or type(bat_now.perc) ~= "number" then return end + + if bat_now.status == "Charging" then + baticon:set_image(theme.ac) + if bat_now.perc >= 98 then + batbar:set_color(green) + elseif bat_now.perc > 50 then + batbar:set_color(theme.fg_normal) + elseif bat_now.perc > 15 then + batbar:set_color(theme.fg_normal) + else + batbar:set_color(red) + end + else + if bat_now.perc >= 98 then + batbar:set_color(green) + elseif bat_now.perc > 50 then + batbar:set_color(theme.fg_normal) + baticon:set_image(theme.bat) + elseif bat_now.perc > 15 then + batbar:set_color(theme.fg_normal) + baticon:set_image(theme.bat_low) + else + batbar:set_color(red) + baticon:set_image(theme.bat_no) + end + end + batbar:set_value(bat_now.perc / 100) + end +}) +local batbg = wibox.container.background(batbar, "#474747", gears.shape.rectangle) +local batwidget = wibox.container.margin(batbg, 2, 7, 4, 4) + +-- /home fs +local fsicon = wibox.widget.imagebox(theme.disk) +local fsbar = wibox.widget { + forced_height = 1, + forced_width = 59, + color = theme.fg_normal, + background_color = theme.bg_normal, + margins = 1, + paddings = 1, + ticks = true, + ticks_size = 6, + widget = wibox.widget.progressbar, +} +theme.fs = lain.widget.fs({ + partition = "/home", + options = "--exclude-type=tmpfs", + notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Tamzen 10.5" }, + settings = function() + if tonumber(fs_now.used) < 90 then + fsbar:set_color(theme.fg_normal) + else + fsbar:set_color("#EB8F8F") + end + fsbar:set_value(fs_now.used / 100) + end +}) +local fsbg = wibox.container.background(fsbar, "#474747", gears.shape.rectangle) +local fswidget = wibox.container.margin(fsbg, 2, 7, 4, 4) + +-- ALSA volume bar +local volicon = wibox.widget.imagebox(theme.vol) +theme.volume = lain.widget.alsabar({ + width = 59, border_width = 0, ticks = true, ticks_size = 6, + notification_preset = { font = theme.font }, + --togglechannel = "IEC958,3", + settings = function() + if volume_now.status == "off" then + volicon:set_image(theme.vol_mute) + elseif volume_now.level == 0 then + volicon:set_image(theme.vol_no) + elseif volume_now.level <= 50 then + volicon:set_image(theme.vol_low) + else + volicon:set_image(theme.vol) + end + end, + colors = { + background = theme.bg_normal, + mute = red, + unmute = theme.fg_normal + } +}) +theme.volume.tooltip.wibox.fg = theme.fg_focus +theme.volume.bar:buttons(awful.util.table.join ( + awful.button({}, 1, function() + awful.spawn.with_shell(string.format("%s -e alsamixer", awful.util.terminal)) + end), + awful.button({}, 2, function() + awful.spawn(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel)) + theme.volume.update() + end), + awful.button({}, 3, function() + awful.spawn(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel)) + theme.volume.update() + end), + awful.button({}, 4, function() + awful.spawn(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel)) + theme.volume.update() + end), + awful.button({}, 5, function() + awful.spawn(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel)) + theme.volume.update() + end) +)) +local volumebg = wibox.container.background(theme.volume.bar, "#474747", gears.shape.rectangle) +local volumewidget = wibox.container.margin(volumebg, 2, 7, 4, 4) + +-- Weather +theme.weather = lain.widget.weather({ + city_id = 2643743, -- placeholder (London) +}) + +-- Separators +local first = wibox.widget.textbox(markup.font("Tamzen 3", " ")) +local spr = wibox.widget.textbox(' ') +local small_spr = wibox.widget.textbox(markup.font("Tamzen 4", " ")) +local bar_spr = wibox.widget.textbox(markup.font("Tamzen 3", " ") .. markup.fontfg(theme.font, "#333333", "|") .. markup.font("Tamzen 5", " ")) + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contains an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(awful.util.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 18, bg = theme.bg_normal, fg = theme.fg_normal }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + small_spr, + s.mylayoutbox, + first, + bar_spr, + s.mytaglist, + first, + s.mypromptbox, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + small_spr, + --mail.widget, + mpdicon, + theme.mpd.widget, + baticon, + batwidget, + bar_spr, + fsicon, + fswidget, + bar_spr, + volicon, + volumewidget, + bar_spr, + mytextclock, + }, + } +end return theme diff --git a/themes/copland/wall.png b/themes/copland/wall.png old mode 100644 new mode 100755 index 18fbfb9..b3c2663 Binary files a/themes/copland/wall.png and b/themes/copland/wall.png differ diff --git a/themes/dremora/icons/arrl_lr_post.png b/themes/dremora/icons/arrl_lr_post.png deleted file mode 100644 index 031cc63..0000000 Binary files a/themes/dremora/icons/arrl_lr_post.png and /dev/null differ diff --git a/themes/dremora/icons/arrl_lr_pre.png b/themes/dremora/icons/arrl_lr_pre.png deleted file mode 100644 index 3c3a7d7..0000000 Binary files a/themes/dremora/icons/arrl_lr_pre.png and /dev/null differ diff --git a/themes/dremora/icons/awesome.png b/themes/dremora/icons/awesome.png new file mode 100644 index 0000000..6ada627 Binary files /dev/null and b/themes/dremora/icons/awesome.png differ diff --git a/themes/dremora/icons/titlebar/close_focus.png b/themes/dremora/icons/titlebar/close_focus.png new file mode 100644 index 0000000..6a18125 Binary files /dev/null and b/themes/dremora/icons/titlebar/close_focus.png differ diff --git a/themes/dremora/icons/titlebar/close_normal.png b/themes/dremora/icons/titlebar/close_normal.png new file mode 100644 index 0000000..1c8809f Binary files /dev/null and b/themes/dremora/icons/titlebar/close_normal.png differ diff --git a/themes/dremora/icons/titlebar/floating_focus_active.png b/themes/dremora/icons/titlebar/floating_focus_active.png new file mode 100644 index 0000000..b22ef22 Binary files /dev/null and b/themes/dremora/icons/titlebar/floating_focus_active.png differ diff --git a/themes/dremora/icons/titlebar/floating_focus_inactive.png b/themes/dremora/icons/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..47f19f6 Binary files /dev/null and b/themes/dremora/icons/titlebar/floating_focus_inactive.png differ diff --git a/themes/dremora/icons/titlebar/floating_normal_active.png b/themes/dremora/icons/titlebar/floating_normal_active.png new file mode 100644 index 0000000..b788552 Binary files /dev/null and b/themes/dremora/icons/titlebar/floating_normal_active.png differ diff --git a/themes/dremora/icons/titlebar/floating_normal_inactive.png b/themes/dremora/icons/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..4adc5e9 Binary files /dev/null and b/themes/dremora/icons/titlebar/floating_normal_inactive.png differ diff --git a/themes/dremora/icons/titlebar/maximized_focus_active.png b/themes/dremora/icons/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..70af3d5 Binary files /dev/null and b/themes/dremora/icons/titlebar/maximized_focus_active.png differ diff --git a/themes/dremora/icons/titlebar/maximized_focus_inactive.png b/themes/dremora/icons/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..bce1d00 Binary files /dev/null and b/themes/dremora/icons/titlebar/maximized_focus_inactive.png differ diff --git a/themes/dremora/icons/titlebar/maximized_normal_active.png b/themes/dremora/icons/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..70e2ddc Binary files /dev/null and b/themes/dremora/icons/titlebar/maximized_normal_active.png differ diff --git a/themes/dremora/icons/titlebar/maximized_normal_inactive.png b/themes/dremora/icons/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..2e56d32 Binary files /dev/null and b/themes/dremora/icons/titlebar/maximized_normal_inactive.png differ diff --git a/themes/dremora/icons/titlebar/ontop_focus_active.png b/themes/dremora/icons/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..ade12fe Binary files /dev/null and b/themes/dremora/icons/titlebar/ontop_focus_active.png differ diff --git a/themes/dremora/icons/titlebar/ontop_focus_inactive.png b/themes/dremora/icons/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..2f3a2be Binary files /dev/null and b/themes/dremora/icons/titlebar/ontop_focus_inactive.png differ diff --git a/themes/dremora/icons/titlebar/ontop_normal_active.png b/themes/dremora/icons/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..02facc4 Binary files /dev/null and b/themes/dremora/icons/titlebar/ontop_normal_active.png differ diff --git a/themes/dremora/icons/titlebar/ontop_normal_inactive.png b/themes/dremora/icons/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..a9a3206 Binary files /dev/null and b/themes/dremora/icons/titlebar/ontop_normal_inactive.png differ diff --git a/themes/dremora/icons/titlebar/sticky_focus_active.png b/themes/dremora/icons/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..f3c533c Binary files /dev/null and b/themes/dremora/icons/titlebar/sticky_focus_active.png differ diff --git a/themes/dremora/icons/titlebar/sticky_focus_inactive.png b/themes/dremora/icons/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..5493d8e Binary files /dev/null and b/themes/dremora/icons/titlebar/sticky_focus_inactive.png differ diff --git a/themes/dremora/icons/titlebar/sticky_normal_active.png b/themes/dremora/icons/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..15f0bc4 Binary files /dev/null and b/themes/dremora/icons/titlebar/sticky_normal_active.png differ diff --git a/themes/dremora/icons/titlebar/sticky_normal_inactive.png b/themes/dremora/icons/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..7e6c99b Binary files /dev/null and b/themes/dremora/icons/titlebar/sticky_normal_inactive.png differ diff --git a/themes/dremora/icons/uselesstile.png b/themes/dremora/icons/uselesstile.png deleted file mode 100644 index cab4c7e..0000000 Binary files a/themes/dremora/icons/uselesstile.png and /dev/null differ diff --git a/themes/dremora/icons/uselesstileleft.png b/themes/dremora/icons/uselesstileleft.png deleted file mode 100644 index 987dcc2..0000000 Binary files a/themes/dremora/icons/uselesstileleft.png and /dev/null differ diff --git a/themes/dremora/icons/uselesstiletop.png b/themes/dremora/icons/uselesstiletop.png deleted file mode 100644 index 1eabd27..0000000 Binary files a/themes/dremora/icons/uselesstiletop.png and /dev/null differ diff --git a/themes/dremora/theme.lua b/themes/dremora/theme.lua index c66cc3e..570a165 100644 --- a/themes/dremora/theme.lua +++ b/themes/dremora/theme.lua @@ -1,63 +1,249 @@ --[[ - - Dremora Awesome WM config 2.0 - github.com/copycat-killer - + + Dremora Awesome WM theme 2.0 + github.com/copycat-killer + --]] -theme = {} +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local os = { getenv = os.getenv } -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/dremora" -theme.wallpaper = theme.dir .. "/wall.png" +local theme = {} +theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/dremora" +theme.wallpaper = theme.dir .. "/wall.png" +theme.font = "Misc Tamsyn 10.5" +theme.taglist_font = "Icons 10" +theme.fg_normal = "#747474" +theme.fg_focus = "#DDDCFF" +theme.bg_normal = "#121212" +theme.bg_focus = "#121212" +theme.fg_urgent = "#CC9393" +theme.bg_urgent = "#2A1F1E" +theme.border_width = "0" +theme.border_normal = "#121212" +theme.border_focus = "#292929" +theme.titlebar_bg_focus = "#292929" +theme.taglist_fg_focus = "#dddcff" +theme.taglist_bg_focus = "#121212" +theme.menu_height = 16 +theme.menu_width = 130 +theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" +theme.awesome_icon = theme.dir .."/icons/awesome.png" +theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" +theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" +theme.layout_tile = theme.dir .. "/icons/tile.png" +theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" +theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" +theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" +theme.layout_fairv = theme.dir .. "/icons/fairv.png" +theme.layout_fairh = theme.dir .. "/icons/fairh.png" +theme.layout_spiral = theme.dir .. "/icons/spiral.png" +theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" +theme.layout_max = theme.dir .. "/icons/max.png" +theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" +theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" +theme.layout_floating = theme.dir .. "/icons/floating.png" +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true +theme.useless_gap = 10 +theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" +theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" +theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" +theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" +theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" +theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" -theme.font = "Tamsyn 10.5" -theme.taglist_font = "Icons 10" -theme.fg_normal = "#747474" -theme.fg_focus = "#DDDCFF" -theme.bg_normal = "#121212" -theme.bg_focus = "#121212" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#2A1F1E" -theme.border_width = "0" -theme.border_normal = "#121212" -theme.border_focus = "#292929" -theme.titlebar_bg_focus = "#292929" +awful.util.tagnames = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" } -theme.taglist_fg_focus = "#dddcff" -theme.taglist_bg_focus = "#121212" -theme.menu_height = "16" -theme.menu_width = "140" +local markup = lain.util.markup +local separators = lain.util.separators +local white = theme.fg_focus +local gray = "#858585" -theme.submenu_icon = theme.dir .. "/icons/submenu.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.arrl_lr_pre = theme.dir .. "/icons/arrl_lr_pre.png" -theme.arrl_lr_post = theme.dir .. "/icons/arrl_lr_post.png" +-- Textclock +local mytextclock = wibox.widget.textclock(markup(gray, " %a") +.. markup(white, " %d ") .. markup(gray, "%b ") .. markup(white, "%H:%M ")) +mytextclock.font = theme.font -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tilegaps = theme.dir .. "/icons/tilegaps.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" +-- Calendar +lain.widget.calendar({ + attach_to = { mytextclock }, + notification_preset = { + font = "Misc Tamsyn 11", + fg = white, + bg = theme.bg_normal +}}) -theme.tasklist_disable_icon = true -theme.tasklist_floating = "" -theme.tasklist_maximized_horizontal = "" -theme.tasklist_maximized_vertical = "" +--[[ Mail IMAP check +-- commented because it needs to be set before use +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + notification_preset = { fg = white } + settings = function() + mail = "" + count = "" --- lain related -theme.useless_gap_width = 10 -theme.layout_uselesstile = theme.dir .. "/icons/uselesstile.png" -theme.layout_uselesstileleft = theme.dir .. "/icons/uselesstileleft.png" -theme.layout_uselesstiletop = theme.dir .. "/icons/uselesstiletop.png" + if mailcount > 0 then + mail = "Mail " + count = mailcount .. " " + end + + widget:set_markup(markup.font(theme.font, markup(gray, mail) .. markup(white, count))) + end +}) +--]] + +-- MPD +theme.mpd = lain.widget.mpd({ + settings = function() + mpd_notification_preset.fg = white + artist = mpd_now.artist .. " " + title = mpd_now.title .. " " + + if mpd_now.state == "pause" then + artist = "mpd " + title = "paused " + elseif mpd_now.state == "stop" then + artist = "" + title = "" + end + + widget:set_markup(markup.font(theme.font, markup(gray, artist) .. markup(white, title))) + end +}) + +-- /home fs +theme.fs = lain.widget.fs({ + partition = "/home", + options = "--exclude-type=tmpfs", + notification_preset = { fg = white, bg = theme.bg_normal, font = "Misc Tamsyn 10.5" }, + settings = function() + fs_header = "" + fs_p = "" + + if tonumber(fs_now.used) >= 90 then + fs_header = " Hdd " + fs_p = fs_now.used + end + + widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. markup(white, fs_p))) + end +}) + +-- Battery +local bat = lain.widget.bat({ + settings = function() + bat_header = " Bat " + bat_p = bat_now.perc .. " " + widget:set_markup(markup.font(theme.font, markup(gray, bat_header) .. markup(white, bat_p))) + end +}) + +-- ALSA volume +theme.volume = lain.widget.alsa({ + --togglechannel = "IEC958,3", + settings = function() + header = " Vol " + vlevel = volume_now.level + + if volume_now.status == "off" then + vlevel = vlevel .. "M " + else + vlevel = vlevel .. " " + end + + widget:set_markup(markup.font(theme.font, markup(gray, header) .. markup(white, vlevel))) + end +}) + +-- Weather +theme.weather = lain.widget.weather({ + city_id = 2643743, -- placeholder (London) + notification_preset = { fg = white } +}) + +-- Separators +local first = wibox.widget.textbox(' ') +local arrl_pre = separators.arrow_right("alpha", "#1A1A1A") +local arrl_post = separators.arrow_right("#1A1A1A", "alpha") + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contains an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(awful.util.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 18, bg = theme.bg_normal, fg = theme.fg_normal }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + first, + s.mytaglist, + arrl_pre, + s.mylayoutbox, + arrl_post, + s.mypromptbox, + first, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + first, + theme.mpd.widget, + --mail.widget, + theme.fs.widget, + bat.widget, + theme.volume.widget, + mytextclock, + }, + } +end return theme diff --git a/themes/dremora/wall.png b/themes/dremora/wall.png old mode 100755 new mode 100644 diff --git a/themes/holo/icons/awesome_icon_white.png b/themes/holo/icons/awesome_icon_white.png new file mode 100644 index 0000000..476a86a Binary files /dev/null and b/themes/holo/icons/awesome_icon_white.png differ diff --git a/themes/holo/icons/bar.png b/themes/holo/icons/bar.png index 023f198..767885c 100644 Binary files a/themes/holo/icons/bar.png and b/themes/holo/icons/bar.png differ diff --git a/themes/holo/icons/base_widget.png b/themes/holo/icons/base_widget.png deleted file mode 100644 index 059f9c0..0000000 Binary files a/themes/holo/icons/base_widget.png and /dev/null differ diff --git a/themes/holo/icons/bg_focus.png b/themes/holo/icons/bg_focus.png deleted file mode 100644 index 28673a1..0000000 Binary files a/themes/holo/icons/bg_focus.png and /dev/null differ diff --git a/themes/holo/icons/bg_focus_noline.png b/themes/holo/icons/bg_focus_noline.png deleted file mode 100644 index a867946..0000000 Binary files a/themes/holo/icons/bg_focus_noline.png and /dev/null differ diff --git a/themes/holo/icons/bottom_bar.png b/themes/holo/icons/bottom_bar.png index 0f6b809..fa6a7ae 100644 Binary files a/themes/holo/icons/bottom_bar.png and b/themes/holo/icons/bottom_bar.png differ diff --git a/themes/holo/icons/last.png b/themes/holo/icons/last.png deleted file mode 100644 index 33a4b96..0000000 Binary files a/themes/holo/icons/last.png and /dev/null differ diff --git a/themes/holo/icons/mail_notify.png b/themes/holo/icons/mail_notify.png deleted file mode 100644 index 3816f53..0000000 Binary files a/themes/holo/icons/mail_notify.png and /dev/null differ diff --git a/themes/holo/icons/mpd.png b/themes/holo/icons/mpd.png index 6a96cee..c61030b 100644 Binary files a/themes/holo/icons/mpd.png and b/themes/holo/icons/mpd.png differ diff --git a/themes/holo/icons/next.png b/themes/holo/icons/next.png index 9de2da8..d3caba7 100644 Binary files a/themes/holo/icons/next.png and b/themes/holo/icons/next.png differ diff --git a/themes/holo/icons/prev.png b/themes/holo/icons/prev.png index 3cd3efb..8b9b50e 100644 Binary files a/themes/holo/icons/prev.png and b/themes/holo/icons/prev.png differ diff --git a/themes/holo/icons/spr.png b/themes/holo/icons/spr.png deleted file mode 100644 index 148aa80..0000000 Binary files a/themes/holo/icons/spr.png and /dev/null differ diff --git a/themes/holo/icons/spr_left.png b/themes/holo/icons/spr_left.png index a74db86..44822ed 100644 Binary files a/themes/holo/icons/spr_left.png and b/themes/holo/icons/spr_left.png differ diff --git a/themes/holo/icons/stop.png b/themes/holo/icons/stop.png index 95d8116..63ed405 100644 Binary files a/themes/holo/icons/stop.png and b/themes/holo/icons/stop.png differ diff --git a/themes/holo/icons/submenu.png b/themes/holo/icons/submenu.png deleted file mode 100644 index 10ca014..0000000 Binary files a/themes/holo/icons/submenu.png and /dev/null differ diff --git a/themes/holo/icons/taglist_bg_focus.png b/themes/holo/icons/taglist_bg_focus.png deleted file mode 100644 index d911dfe..0000000 Binary files a/themes/holo/icons/taglist_bg_focus.png and /dev/null differ diff --git a/themes/holo/icons/topbar/1024.png b/themes/holo/icons/topbar/1024.png deleted file mode 100644 index bc1449b..0000000 Binary files a/themes/holo/icons/topbar/1024.png and /dev/null differ diff --git a/themes/holo/icons/topbar/1152.png b/themes/holo/icons/topbar/1152.png deleted file mode 100644 index 8f16c02..0000000 Binary files a/themes/holo/icons/topbar/1152.png and /dev/null differ diff --git a/themes/holo/icons/topbar/1280.png b/themes/holo/icons/topbar/1280.png deleted file mode 100644 index c4f7637..0000000 Binary files a/themes/holo/icons/topbar/1280.png and /dev/null differ diff --git a/themes/holo/icons/topbar/1366.png b/themes/holo/icons/topbar/1366.png deleted file mode 100644 index 8a5ac44..0000000 Binary files a/themes/holo/icons/topbar/1366.png and /dev/null differ diff --git a/themes/holo/icons/topbar/1440.png b/themes/holo/icons/topbar/1440.png deleted file mode 100644 index 4fb7c7f..0000000 Binary files a/themes/holo/icons/topbar/1440.png and /dev/null differ diff --git a/themes/holo/icons/topbar/1600.png b/themes/holo/icons/topbar/1600.png deleted file mode 100644 index f58f733..0000000 Binary files a/themes/holo/icons/topbar/1600.png and /dev/null differ diff --git a/themes/holo/icons/topbar/1680.png b/themes/holo/icons/topbar/1680.png deleted file mode 100644 index 2abea88..0000000 Binary files a/themes/holo/icons/topbar/1680.png and /dev/null differ diff --git a/themes/holo/icons/topbar/1920.png b/themes/holo/icons/topbar/1920.png deleted file mode 100644 index c9adc46..0000000 Binary files a/themes/holo/icons/topbar/1920.png and /dev/null differ diff --git a/themes/holo/icons/topbar/2560.png b/themes/holo/icons/topbar/2560.png deleted file mode 100644 index 6b496ac..0000000 Binary files a/themes/holo/icons/topbar/2560.png and /dev/null differ diff --git a/themes/holo/icons/uselesstile.png b/themes/holo/icons/uselesstile.png deleted file mode 100644 index f482b10..0000000 Binary files a/themes/holo/icons/uselesstile.png and /dev/null differ diff --git a/themes/holo/icons/uselesstileleft.png b/themes/holo/icons/uselesstileleft.png deleted file mode 100644 index caf6366..0000000 Binary files a/themes/holo/icons/uselesstileleft.png and /dev/null differ diff --git a/themes/holo/icons/uselesstiletop.png b/themes/holo/icons/uselesstiletop.png deleted file mode 100644 index 8cddfb6..0000000 Binary files a/themes/holo/icons/uselesstiletop.png and /dev/null differ diff --git a/themes/holo/theme.lua b/themes/holo/theme.lua index 5a8651d..6a6083f 100644 --- a/themes/holo/theme.lua +++ b/themes/holo/theme.lua @@ -1,92 +1,388 @@ --[[ - - Holo Awesome WM config 2.0 - github.com/copycat-killer - + + Holo Awesome WM theme 3.0 + github.com/copycat-killer + --]] -theme = {} +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local string = string +local os = { getenv = os.getenv } -theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/holo/icons" +local theme = {} +theme.default_dir = require("awful.util").get_themes_dir() .. "default" +theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/holo/icons" +theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/holo/wall.png" +theme.font = "Roboto Bold 10" +theme.taglist_font = "Roboto Condensed Regular 8" +theme.fg_normal = "#FFFFFF" +theme.fg_focus = "#0099CC" +theme.bg_focus = "#303030" +theme.bg_normal = "#242424" +theme.fg_urgent = "#CC9393" +theme.bg_urgent = "#006B8E" +theme.border_width = 3 +theme.border_normal = "#252525" +theme.border_focus = "#0099CC" +theme.taglist_fg_focus = "#FFFFFF" +theme.tasklist_bg_normal = "#222222" +theme.tasklist_fg_focus = "#4CB7DB" +theme.menu_height = 20 +theme.menu_width = 160 +theme.menu_icon_size = 32 +theme.awesome_icon = theme.icon_dir .. "/awesome_icon_white.png" +theme.awesome_icon_launcher = theme.icon_dir .. "/awesome_icon.png" +theme.taglist_squares_sel = theme.icon_dir .. "/square_sel.png" +theme.taglist_squares_unsel = theme.icon_dir .. "/square_unsel.png" +theme.spr_small = theme.icon_dir .. "/spr_small.png" +theme.spr_very_small = theme.icon_dir .. "/spr_very_small.png" +theme.spr_right = theme.icon_dir .. "/spr_right.png" +theme.spr_bottom_right = theme.icon_dir .. "/spr_bottom_right.png" +theme.spr_left = theme.icon_dir .. "/spr_left.png" +theme.bar = theme.icon_dir .. "/bar.png" +theme.bottom_bar = theme.icon_dir .. "/bottom_bar.png" +theme.mpdl = theme.icon_dir .. "/mpd.png" +theme.mpd_on = theme.icon_dir .. "/mpd_on.png" +theme.prev = theme.icon_dir .. "/prev.png" +theme.nex = theme.icon_dir .. "/next.png" +theme.stop = theme.icon_dir .. "/stop.png" +theme.pause = theme.icon_dir .. "/pause.png" +theme.play = theme.icon_dir .. "/play.png" +theme.clock = theme.icon_dir .. "/clock.png" +theme.calendar = theme.icon_dir .. "/cal.png" +theme.cpu = theme.icon_dir .. "/cpu.png" +theme.net_up = theme.icon_dir .. "/net_up.png" +theme.net_down = theme.icon_dir .. "/net_down.png" +theme.layout_tile = theme.icon_dir .. "/tile.png" +theme.layout_tileleft = theme.icon_dir .. "/tileleft.png" +theme.layout_tilebottom = theme.icon_dir .. "/tilebottom.png" +theme.layout_tiletop = theme.icon_dir .. "/tiletop.png" +theme.layout_fairv = theme.icon_dir .. "/fairv.png" +theme.layout_fairh = theme.icon_dir .. "/fairh.png" +theme.layout_spiral = theme.icon_dir .. "/spiral.png" +theme.layout_dwindle = theme.icon_dir .. "/dwindle.png" +theme.layout_max = theme.icon_dir .. "/max.png" +theme.layout_fullscreen = theme.icon_dir .. "/fullscreen.png" +theme.layout_magnifier = theme.icon_dir .. "/magnifier.png" +theme.layout_floating = theme.icon_dir .. "/floating.png" +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true +theme.useless_gap = 4 +theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png" +theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png" +theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png" +theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png" +theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png" +theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png" +theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png" +theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png" +theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png" +theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png" +theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png" -theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/holo/wall.png" +theme.musicplr = string.format("%s -e ncmpcpp", awful.util.terminal) -theme.topbar_path = "png:" .. theme.icon_dir .. "/topbar/" +local markup = lain.util.markup +local blue = "#80CCE6" +local space3 = markup.font("Roboto 3", " ") -theme.font = "Tamsyn 10.5" -theme.taglist_font = "Tamsyn 8" -theme.fg_normal = "#FFFFFF" -theme.fg_focus = "#0099CC" -theme.bg_normal = "#242424" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#2A1F1E" -theme.border_width = "1" -theme.border_normal = "#252525" -theme.border_focus = "#0099CC" -theme.taglist_fg_focus = "#FFFFFF" -theme.taglist_bg_focus = "png:" .. theme.icon_dir .. "/taglist_bg_focus.png" -theme.tasklist_bg_normal = "#222222" -theme.tasklist_fg_focus = "#4CB7DB" -theme.tasklist_bg_focus = "png:" .. theme.icon_dir .. "/bg_focus_noline.png" -theme.textbox_widget_margin_top = 1 -theme.awful_widget_height = 14 -theme.awful_widget_margin_top = 2 -theme.menu_height = "20" -theme.menu_width = "400" +-- Clock +local mytextclock = wibox.widget.textclock(markup("#FFFFFF", space3 .. "%H:%M " .. markup.font("Roboto 4", " "))) +mytextclock.font = theme.font +local clock_icon = wibox.widget.imagebox(theme.clock) +local clockbg = wibox.container.background(mytextclock, theme.bg_focus, gears.shape.rectangle) +local clockwidget = wibox.container.margin(clockbg, 0, 3, 5, 5) -theme.widget_bg = theme.icon_dir .. "/bg_focus_noline.png" -theme.awesome_icon = theme.icon_dir .. "/awesome_icon.png" -theme.vol_bg = theme.icon_dir .. "/vol_bg.png" -theme.submenu_icon = theme.icon_dir .. "/submenu.png" -theme.taglist_squares_sel = theme.icon_dir .. "/square_sel.png" -theme.taglist_squares_unsel = theme.icon_dir .. "/square_unsel.png" -theme.last = theme.icon_dir .. "/last.png" -theme.spr = theme.icon_dir .. "/spr.png" -theme.spr_small = theme.icon_dir .. "/spr_small.png" -theme.spr_very_small = theme.icon_dir .. "/spr_very_small.png" -theme.spr_right = theme.icon_dir .. "/spr_right.png" -theme.spr_bottom_right = theme.icon_dir .. "/spr_bottom_right.png" -theme.spr_left = theme.icon_dir .. "/spr_left.png" -theme.bar = theme.icon_dir .. "/bar.png" -theme.bottom_bar = theme.icon_dir .. "/bottom_bar.png" -theme.mpd = theme.icon_dir .. "/mpd.png" -theme.mpd_on = theme.icon_dir .. "/mpd_on.png" -theme.prev = theme.icon_dir .. "/prev.png" -theme.nex = theme.icon_dir .. "/next.png" -theme.stop = theme.icon_dir .. "/stop.png" -theme.pause = theme.icon_dir .. "/pause.png" -theme.play = theme.icon_dir .. "/play.png" -theme.clock = theme.icon_dir .. "/clock.png" -theme.calendar = theme.icon_dir .. "/cal.png" -theme.cpu = theme.icon_dir .. "/cpu.png" -theme.net_up = theme.icon_dir .. "/net_up.png" -theme.net_down = theme.icon_dir .. "/net_down.png" -theme.widget_mail_notify = theme.icon_dir .. "/mail_notify.png" +-- Calendar +local mytextcalendar = wibox.widget.textclock(markup.fontfg(theme.font, "#FFFFFF", space3 .. "%d %b " .. markup.font("Roboto 5", " "))) +local calendar_icon = wibox.widget.imagebox(theme.calendar) +local calbg = wibox.container.background(mytextcalendar, theme.bg_focus, gears.shape.rectangle) +local calendarwidget = wibox.container.margin(calbg, 0, 0, 5, 5) +lain.widget.calendar({ + attach_to = { mytextclock, mytextcalendar }, + notification_preset = { + fg = "#FFFFFF", + bg = theme.bg_normal, + position = "bottom_right", + font = "Monospace 10" + } +}) -theme.layout_tile = theme.icon_dir .. "/tile.png" -theme.layout_tilegaps = theme.icon_dir .. "/tilegaps.png" -theme.layout_tileleft = theme.icon_dir .. "/tileleft.png" -theme.layout_tilebottom = theme.icon_dir .. "/tilebottom.png" -theme.layout_tiletop = theme.icon_dir .. "/tiletop.png" -theme.layout_fairv = theme.icon_dir .. "/fairv.png" -theme.layout_fairh = theme.icon_dir .. "/fairh.png" -theme.layout_spiral = theme.icon_dir .. "/spiral.png" -theme.layout_dwindle = theme.icon_dir .. "/dwindle.png" -theme.layout_max = theme.icon_dir .. "/max.png" -theme.layout_fullscreen = theme.icon_dir .. "/fullscreen.png" -theme.layout_magnifier = theme.icon_dir .. "/magnifier.png" -theme.layout_floating = theme.icon_dir .. "/floating.png" +--[[ Mail IMAP check +-- commented because it needs to be set before use +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + settings = function() + mail_notification_preset.fg = "#FFFFFF" + mail = "" + count = "" -theme.tasklist_disable_icon = true -theme.tasklist_floating = "" -theme.tasklist_maximized_horizontal = "" -theme.tasklist_maximized_vertical = "" + if mailcount > 0 then + mail = "Mail " + count = mailcount .. " " + end --- lain related -theme.useless_gap_width = 10 -theme.layout_uselesstile = theme.icon_dir .. "/uselesstile.png" -theme.layout_uselesstileleft = theme.icon_dir .. "/uselesstileleft.png" -theme.layout_uselesstiletop = theme.icon_dir .. "/uselesstiletop.png" + widget:set_markup(markup.font(theme.font, markup(blue, mail) .. markup("#FFFFFF", count))) + end +}) +--]] + +-- MPD +local mpd_icon = awful.widget.launcher({ image = theme.mpdl, command = theme.musicplr }) +local prev_icon = wibox.widget.imagebox(theme.prev) +local next_icon = wibox.widget.imagebox(theme.nex) +local stop_icon = wibox.widget.imagebox(theme.stop) +local pause_icon = wibox.widget.imagebox(theme.pause) +local play_pause_icon = wibox.widget.imagebox(theme.play) +theme.mpd = lain.widget.mpd({ + settings = function () + if mpd_now.state == "play" then + mpd_now.artist = mpd_now.artist:upper():gsub("&.-;", string.lower) + mpd_now.title = mpd_now.title:upper():gsub("&.-;", string.lower) + widget:set_markup(markup.font("Roboto 4", " ") + .. markup.font(theme.taglist_font, + " " .. mpd_now.artist + .. " - " .. + mpd_now.title .. " ") .. markup.font("Roboto 5", " ")) + play_pause_icon:set_image(theme.pause) + elseif mpd_now.state == "pause" then + widget:set_markup(markup.font("Roboto 4", " ") .. + markup.font(theme.taglist_font, " MPD PAUSED ") .. + markup.font("Roboto 5", " ")) + play_pause_icon:set_image(theme.play) + else + widget:set_markup("") + play_pause_icon:set_image(theme.play) + end + end +}) +local musicbg = wibox.container.background(theme.mpd.widget, theme.bg_focus, gears.shape.rectangle) +local musicwidget = wibox.container.margin(musicbg, 0, 0, 5, 5) + +musicwidget:buttons(awful.util.table.join(awful.button({ }, 1, +function () awful.spawn(theme.musicplr) end))) +prev_icon:buttons(awful.util.table.join(awful.button({}, 1, +function () + awful.spawn.with_shell("mpc prev") + theme.mpd.update() +end))) +next_icon:buttons(awful.util.table.join(awful.button({}, 1, +function () + awful.spawn.with_shell("mpc next") + theme.mpd.update() +end))) +stop_icon:buttons(awful.util.table.join(awful.button({}, 1, +function () + play_pause_icon:set_image(theme.play) + awful.spawn.with_shell("mpc stop") + theme.mpd.update() +end))) +play_pause_icon:buttons(awful.util.table.join(awful.button({}, 1, +function () + awful.spawn.with_shell("mpc toggle") + theme.mpd.update() +end))) + +-- Battery +--[[ +local bat = lain.widget.bat({ + settings = function() + bat_header = " Bat " + bat_p = bat_now.perc .. " " + if bat_now.ac_status == 1 then + bat_p = bat_p .. "Plugged " + end + widget:set_markup(markup.font(theme.font, markup(blue, bat_header) .. bat_p)) + end +}) +--]] +-- +-- fs +theme.fs = lain.widget.fs({ + options = "--exclude-type=tmpfs", + notification_preset = { bg = theme.bg_normal, font = "Monospace 9, " }, +}) + +-- ALSA volume bar +theme.volume = lain.widget.alsabar({ + notification_preset = { font = "Monospace 9"}, + --togglechannel = "IEC958,3", + width = 80, height = 10, border_width = 0, + colors = { + background = "#383838", + unmute = "#80CCE6", + mute = "#FF9F9F" + }, +}) +theme.volume.bar.paddings = 0 +theme.volume.bar.margins = 5 +local volumewidget = wibox.container.background(theme.volume.bar, theme.bg_focus, gears.shape.rectangle) +volumewidget = wibox.container.margin(volumewidget, 0, 0, 5, 5) + +-- CPU +local cpu_icon = wibox.widget.imagebox(theme.cpu) +local cpu = lain.widget.cpu({ + settings = function() + widget:set_markup(space3 .. markup.font(theme.font, "CPU " .. cpu_now.usage + .. "% ") .. markup.font("Roboto 5", " ")) + end +}) +local cpubg = wibox.container.background(cpu.widget, theme.bg_focus, gears.shape.rectangle) +local cpuwidget = wibox.container.margin(cpubg, 0, 0, 5, 5) + +-- Net +local netdown_icon = wibox.widget.imagebox(theme.net_down) +local netup_icon = wibox.widget.imagebox(theme.net_up) +local net = lain.widget.net({ + settings = function() + widget:set_markup(markup.font("Roboto 1", " ") .. markup.font(theme.font, net_now.received .. " - " + .. net_now.sent) .. markup.font("Roboto 2", " ")) + end +}) +local netbg = wibox.container.background(net.widget, theme.bg_focus, gears.shape.rectangle) +local networkwidget = wibox.container.margin(netbg, 0, 0, 5, 5) + +-- Weather +theme.weather = lain.widget.weather({ + city_id = 2643743, -- placeholder (London) + notification_preset = { font = "Monospace 9", position = "bottom_right" }, +}) + +-- Launcher +local mylauncher = awful.widget.button({ image = theme.awesome_icon_launcher }) +mylauncher:connect_signal("button::press", function() awful.util.mymainmenu:toggle() end) + +-- Separators +local first = wibox.widget.textbox(' ') +local spr_small = wibox.widget.imagebox(theme.spr_small) +local spr_very_small = wibox.widget.imagebox(theme.spr_very_small) +local spr_right = wibox.widget.imagebox(theme.spr_right) +local spr_bottom_right = wibox.widget.imagebox(theme.spr_bottom_right) +local spr_left = wibox.widget.imagebox(theme.spr_left) +local bar = wibox.widget.imagebox(theme.bar) +local bottom_bar = wibox.widget.imagebox(theme.bottom_bar) + +local barcolor = gears.color({ + type = "linear", + from = { 32, 0 }, + to = { 32, 32 }, + stops = { {0, theme.bg_focus}, {0.25, "#505050"}, {1, theme.bg_focus} } +}) + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contains an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(awful.util.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons, { bg_focus = barcolor }) + + mytaglistcont = wibox.container.background(s.mytaglist, theme.bg_focus, gears.shape.rectangle) + s.mytag = wibox.container.margin(mytaglistcont, 0, 0, 5, 5) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons, { bg_focus = theme.bg_focus, shape = gears.shape.rectangle, shape_border_width = 5, shape_border_color = theme.tasklist_bg_normal, align = "center" }) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 32 }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + first, + s.mytag, + spr_small, + s.mylayoutbox, + spr_small, + s.mypromptbox, + }, + nil, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + --mail.widget, + --bat.widget, + spr_right, + musicwidget, + bar, + prev_icon, + next_icon, + stop_icon, + play_pause_icon, + bar, + mpd_icon, + bar, + spr_very_small, + volumewidget, + spr_left, + }, + } + + -- Create the bottom wibox + s.mybottomwibox = awful.wibar({ position = "bottom", screen = s, border_width = 0, height = 32 }) + s.borderwibox = awful.wibar({ position = "bottom", screen = s, height = 1, bg = theme.fg_focus, x = 0, y = 33}) + + -- Add widgets to the bottom wibox + s.mybottomwibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + mylauncher, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + spr_bottom_right, + netdown_icon, + networkwidget, + netup_icon, + bottom_bar, + cpu_icon, + cpuwidget, + bottom_bar, + calendar_icon, + calendarwidget, + bottom_bar, + clock_icon, + clockwidget, + }, + } +end return theme diff --git a/themes/holo/wall.png b/themes/holo/wall.png index 511e095..d393bd3 100644 Binary files a/themes/holo/wall.png and b/themes/holo/wall.png differ diff --git a/themes/multicolor/icons/bat.png b/themes/multicolor/icons/bat.png index 454f053..9610766 100755 Binary files a/themes/multicolor/icons/bat.png and b/themes/multicolor/icons/bat.png differ diff --git a/themes/multicolor/icons/titlebar/close_focus.png b/themes/multicolor/icons/titlebar/close_focus.png new file mode 100644 index 0000000..98c5056 Binary files /dev/null and b/themes/multicolor/icons/titlebar/close_focus.png differ diff --git a/themes/multicolor/icons/titlebar/close_normal.png b/themes/multicolor/icons/titlebar/close_normal.png new file mode 100644 index 0000000..7702839 Binary files /dev/null and b/themes/multicolor/icons/titlebar/close_normal.png differ diff --git a/themes/multicolor/icons/titlebar/floating_focus_active.png b/themes/multicolor/icons/titlebar/floating_focus_active.png new file mode 100644 index 0000000..37c1afe Binary files /dev/null and b/themes/multicolor/icons/titlebar/floating_focus_active.png differ diff --git a/themes/multicolor/icons/titlebar/floating_focus_inactive.png b/themes/multicolor/icons/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..07ee69d Binary files /dev/null and b/themes/multicolor/icons/titlebar/floating_focus_inactive.png differ diff --git a/themes/multicolor/icons/titlebar/floating_normal_active.png b/themes/multicolor/icons/titlebar/floating_normal_active.png new file mode 100644 index 0000000..b9c70ca Binary files /dev/null and b/themes/multicolor/icons/titlebar/floating_normal_active.png differ diff --git a/themes/multicolor/icons/titlebar/floating_normal_inactive.png b/themes/multicolor/icons/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..55cbc0c Binary files /dev/null and b/themes/multicolor/icons/titlebar/floating_normal_inactive.png differ diff --git a/themes/multicolor/icons/titlebar/maximized_focus_active.png b/themes/multicolor/icons/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..35c1801 Binary files /dev/null and b/themes/multicolor/icons/titlebar/maximized_focus_active.png differ diff --git a/themes/multicolor/icons/titlebar/maximized_focus_inactive.png b/themes/multicolor/icons/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..043dae7 Binary files /dev/null and b/themes/multicolor/icons/titlebar/maximized_focus_inactive.png differ diff --git a/themes/multicolor/icons/titlebar/maximized_normal_active.png b/themes/multicolor/icons/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..0bbbf6a Binary files /dev/null and b/themes/multicolor/icons/titlebar/maximized_normal_active.png differ diff --git a/themes/multicolor/icons/titlebar/maximized_normal_inactive.png b/themes/multicolor/icons/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..5f1e98f Binary files /dev/null and b/themes/multicolor/icons/titlebar/maximized_normal_inactive.png differ diff --git a/themes/multicolor/icons/titlebar/minimize_focus.png b/themes/multicolor/icons/titlebar/minimize_focus.png new file mode 100644 index 0000000..85d8196 Binary files /dev/null and b/themes/multicolor/icons/titlebar/minimize_focus.png differ diff --git a/themes/multicolor/icons/titlebar/minimize_normal.png b/themes/multicolor/icons/titlebar/minimize_normal.png new file mode 100644 index 0000000..aa47447 Binary files /dev/null and b/themes/multicolor/icons/titlebar/minimize_normal.png differ diff --git a/themes/multicolor/icons/titlebar/ontop_focus_active.png b/themes/multicolor/icons/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..968f89b Binary files /dev/null and b/themes/multicolor/icons/titlebar/ontop_focus_active.png differ diff --git a/themes/multicolor/icons/titlebar/ontop_focus_inactive.png b/themes/multicolor/icons/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..43d6274 Binary files /dev/null and b/themes/multicolor/icons/titlebar/ontop_focus_inactive.png differ diff --git a/themes/multicolor/icons/titlebar/ontop_normal_active.png b/themes/multicolor/icons/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..e09f32d Binary files /dev/null and b/themes/multicolor/icons/titlebar/ontop_normal_active.png differ diff --git a/themes/multicolor/icons/titlebar/ontop_normal_inactive.png b/themes/multicolor/icons/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..9917b9e Binary files /dev/null and b/themes/multicolor/icons/titlebar/ontop_normal_inactive.png differ diff --git a/themes/multicolor/icons/titlebar/sticky_focus_active.png b/themes/multicolor/icons/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..147ce6a Binary files /dev/null and b/themes/multicolor/icons/titlebar/sticky_focus_active.png differ diff --git a/themes/multicolor/icons/titlebar/sticky_focus_inactive.png b/themes/multicolor/icons/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..a5cdf21 Binary files /dev/null and b/themes/multicolor/icons/titlebar/sticky_focus_inactive.png differ diff --git a/themes/multicolor/icons/titlebar/sticky_normal_active.png b/themes/multicolor/icons/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..0d003ef Binary files /dev/null and b/themes/multicolor/icons/titlebar/sticky_normal_active.png differ diff --git a/themes/multicolor/icons/titlebar/sticky_normal_inactive.png b/themes/multicolor/icons/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..f1e8789 Binary files /dev/null and b/themes/multicolor/icons/titlebar/sticky_normal_inactive.png differ diff --git a/themes/multicolor/theme.lua b/themes/multicolor/theme.lua index 0394add..68dcef2 100644 --- a/themes/multicolor/theme.lua +++ b/themes/multicolor/theme.lua @@ -1,86 +1,343 @@ --[[ - - Multicolor Awesome WM config 2.0 - github.com/copycat-killer - + + Multicolor Awesome WM theme 2.0 + github.com/copycat-killer + --]] -theme = {} +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local os = { getenv = os.getenv, setlocale = os.setlocale } -theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor" -theme.wallpaper = theme.confdir .. "/wall.png" +local theme = {} +theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor" +theme.wallpaper = theme.confdir .. "/wall.png" +theme.font = "xos4 Terminus 8" +theme.menu_bg_normal = "#000000" +theme.menu_bg_focus = "#000000" +theme.bg_normal = "#000000" +theme.bg_focus = "#000000" +theme.bg_urgent = "#000000" +theme.fg_normal = "#aaaaaa" +theme.fg_focus = "#ff8c00" +theme.fg_urgent = "#af1d18" +theme.fg_minimize = "#ffffff" +theme.border_width = 1 +theme.border_normal = "#1c2022" +theme.border_focus = "#606060" +theme.border_marked = "#3ca4d8" +theme.menu_border_width = 0 +theme.menu_width = 130 +theme.menu_submenu_icon = theme.confdir .. "/icons/submenu.png" +theme.menu_fg_normal = "#aaaaaa" +theme.menu_fg_focus = "#ff8c00" +theme.menu_bg_normal = "#050505dd" +theme.menu_bg_focus = "#050505dd" +theme.widget_temp = theme.confdir .. "/icons/temp.png" +theme.widget_uptime = theme.confdir .. "/icons/ac.png" +theme.widget_cpu = theme.confdir .. "/icons/cpu.png" +theme.widget_weather = theme.confdir .. "/icons/dish.png" +theme.widget_fs = theme.confdir .. "/icons/fs.png" +theme.widget_mem = theme.confdir .. "/icons/mem.png" +theme.widget_fs = theme.confdir .. "/icons/fs.png" +theme.widget_note = theme.confdir .. "/icons/note.png" +theme.widget_note_on = theme.confdir .. "/icons/note_on.png" +theme.widget_netdown = theme.confdir .. "/icons/net_down.png" +theme.widget_netup = theme.confdir .. "/icons/net_up.png" +theme.widget_mail = theme.confdir .. "/icons/mail.png" +theme.widget_batt = theme.confdir .. "/icons/bat.png" +theme.widget_clock = theme.confdir .. "/icons/clock.png" +theme.widget_vol = theme.confdir .. "/icons/spkr.png" +theme.taglist_squares_sel = theme.confdir .. "/icons/square_a.png" +theme.taglist_squares_unsel = theme.confdir .. "/icons/square_b.png" +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true +theme.useless_gap = 0 +theme.layout_tile = theme.confdir .. "/icons/tile.png" +theme.layout_tilegaps = theme.confdir .. "/icons/tilegaps.png" +theme.layout_tileleft = theme.confdir .. "/icons/tileleft.png" +theme.layout_tilebottom = theme.confdir .. "/icons/tilebottom.png" +theme.layout_tiletop = theme.confdir .. "/icons/tiletop.png" +theme.layout_fairv = theme.confdir .. "/icons/fairv.png" +theme.layout_fairh = theme.confdir .. "/icons/fairh.png" +theme.layout_spiral = theme.confdir .. "/icons/spiral.png" +theme.layout_dwindle = theme.confdir .. "/icons/dwindle.png" +theme.layout_max = theme.confdir .. "/icons/max.png" +theme.layout_fullscreen = theme.confdir .. "/icons/fullscreen.png" +theme.layout_magnifier = theme.confdir .. "/icons/magnifier.png" +theme.layout_floating = theme.confdir .. "/icons/floating.png" +theme.titlebar_close_button_normal = theme.confdir .. "/icons/titlebar/close_normal.png" +theme.titlebar_close_button_focus = theme.confdir .. "/icons/titlebar/close_focus.png" +theme.titlebar_minimize_button_normal = theme.confdir .. "/icons/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = theme.confdir .. "/icons/titlebar/minimize_focus.png" +theme.titlebar_ontop_button_normal_inactive = theme.confdir .. "/icons/titlebar/ontop_normal_inactive.png" +theme.titlebar_ontop_button_focus_inactive = theme.confdir .. "/icons/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_active = theme.confdir .. "/icons/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_active = theme.confdir .. "/icons/titlebar/ontop_focus_active.png" +theme.titlebar_sticky_button_normal_inactive = theme.confdir .. "/icons/titlebar/sticky_normal_inactive.png" +theme.titlebar_sticky_button_focus_inactive = theme.confdir .. "/icons/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_active = theme.confdir .. "/icons/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_active = theme.confdir .. "/icons/titlebar/sticky_focus_active.png" +theme.titlebar_floating_button_normal_inactive = theme.confdir .. "/icons/titlebar/floating_normal_inactive.png" +theme.titlebar_floating_button_focus_inactive = theme.confdir .. "/icons/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_active = theme.confdir .. "/icons/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_active = theme.confdir .. "/icons/titlebar/floating_focus_active.png" +theme.titlebar_maximized_button_normal_inactive = theme.confdir .. "/icons/titlebar/maximized_normal_inactive.png" +theme.titlebar_maximized_button_focus_inactive = theme.confdir .. "/icons/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_active = theme.confdir .. "/icons/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_active = theme.confdir .. "/icons/titlebar/maximized_focus_active.png" -theme.font = "Terminus 8" ---theme.taglist_font = -theme.menu_bg_normal = "#000000" -theme.menu_bg_focus = "#000000" -theme.bg_normal = "#000000" -theme.bg_focus = "#000000" -theme.bg_urgent = "#000000" -theme.fg_normal = "#aaaaaa" -theme.fg_focus = "#ff8c00" -theme.fg_urgent = "#af1d18" -theme.fg_minimize = "#ffffff" -theme.fg_black = "#424242" -theme.fg_red = "#ce5666" -theme.fg_green = "#80a673" -theme.fg_yellow = "#ffaf5f" -theme.fg_blue = "#7788af" -theme.fg_magenta = "#94738c" -theme.fg_cyan = "#778baf" -theme.fg_white = "#aaaaaa" -theme.fg_blu = "#8ebdde" -theme.border_width = "1" -theme.border_normal = "#1c2022" -theme.border_focus = "#606060" -theme.border_marked = "#3ca4d8" -theme.menu_width = "110" -theme.menu_border_width = "0" -theme.menu_fg_normal = "#aaaaaa" -theme.menu_fg_focus = "#ff8c00" -theme.menu_bg_normal = "#050505dd" -theme.menu_bg_focus = "#050505dd" +local markup = lain.util.markup -theme.submenu_icon = theme.confdir .. "/icons/submenu.png" -theme.widget_temp = theme.confdir .. "/icons/temp.png" -theme.widget_uptime = theme.confdir .. "/icons/ac.png" -theme.widget_cpu = theme.confdir .. "/icons/cpu.png" -theme.widget_weather = theme.confdir .. "/icons/dish.png" -theme.widget_fs = theme.confdir .. "/icons/fs.png" -theme.widget_mem = theme.confdir .. "/icons/mem.png" -theme.widget_fs = theme.confdir .. "/icons/fs.png" -theme.widget_note = theme.confdir .. "/icons/note.png" -theme.widget_note_on = theme.confdir .. "/icons/note_on.png" -theme.widget_netdown = theme.confdir .. "/icons/net_down.png" -theme.widget_netup = theme.confdir .. "/icons/net_up.png" -theme.widget_mail = theme.confdir .. "/icons/mail.png" -theme.widget_batt = theme.confdir .. "/icons/bat.png" -theme.widget_clock = theme.confdir .. "/icons/clock.png" -theme.widget_vol = theme.confdir .. "/icons/spkr.png" +-- Textclock +os.setlocale(os.getenv("LANG")) -- to localize the clock +local clockicon = wibox.widget.imagebox(theme.widget_clock) +local mytextclock = wibox.widget.textclock(markup("#7788af", "%A %d %B ") .. markup("#535f7a", ">") .. markup("#de5e1e", " %H:%M ")) +mytextclock.font = theme.font -theme.taglist_squares_sel = theme.confdir .. "/icons/square_a.png" -theme.taglist_squares_unsel = theme.confdir .. "/icons/square_b.png" +-- Calendar +theme.cal = lain.widget.calendar({ + attach_to = { mytextclock }, + notification_preset = { + font = "xos4 Terminus 10", + fg = theme.fg_normal, + bg = theme.bg_normal + } +}) -theme.tasklist_disable_icon = true -theme.tasklist_floating = "" -theme.tasklist_maximized_horizontal = "" -theme.tasklist_maximized_vertical = "" +-- Weather +local weathericon = wibox.widget.imagebox(theme.widget_weather) +theme.weather = lain.widget.weather({ + city_id = 2643743, -- placeholder (London) + notification_preset = { font = "xos4 Terminus 10", fg = theme.fg_normal }, + weather_na_markup = markup.fontfg(theme.font, "#eca4c4", "N/A "), + settings = function() + descr = weather_now["weather"][1]["description"]:lower() + units = math.floor(weather_now["main"]["temp"]) + widget:set_markup(markup.fontfg(theme.font, "#eca4c4", descr .. " @ " .. units .. "°C ")) + end +}) -theme.layout_tile = theme.confdir .. "/icons/tile.png" -theme.layout_tilegaps = theme.confdir .. "/icons/tilegaps.png" -theme.layout_tileleft = theme.confdir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.confdir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.confdir .. "/icons/tiletop.png" -theme.layout_fairv = theme.confdir .. "/icons/fairv.png" -theme.layout_fairh = theme.confdir .. "/icons/fairh.png" -theme.layout_spiral = theme.confdir .. "/icons/spiral.png" -theme.layout_dwindle = theme.confdir .. "/icons/dwindle.png" -theme.layout_max = theme.confdir .. "/icons/max.png" -theme.layout_fullscreen = theme.confdir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.confdir .. "/icons/magnifier.png" -theme.layout_floating = theme.confdir .. "/icons/floating.png" +-- / fs +local fsicon = wibox.widget.imagebox(theme.widget_fs) +theme.fs = lain.widget.fs({ + options = "--exclude-type=tmpfs", + notification_preset = { font = "xos4 Terminus 10", fg = theme.fg_normal }, + settings = function() + widget:set_markup(markup.fontfg(theme.font, "#80d9d8", fs_now.used .. "% ")) + end +}) +--[[ Mail IMAP check +-- commented because it needs to be set before use +local mailicon = wibox.widget.imagebox() +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + settings = function() + if mailcount > 0 then + mailicon:set_image(theme.widget_mail) + widget:set_markup(markup.fontfg(theme.font, "#cccccc", mailcount .. " ")) + else + widget:set_text("") + --mailicon:set_image() -- not working in 4.0 + mailicon._private.image = nil + mailicon:emit_signal("widget::redraw_needed") + mailicon:emit_signal("widget::layout_changed") + end + end +}) +--]] + +-- CPU +local cpuicon = wibox.widget.imagebox(theme.widget_cpu) +local cpu = lain.widget.cpu({ + settings = function() + widget:set_markup(markup.fontfg(theme.font, "#e33a6e", cpu_now.usage .. "% ")) + end +}) + +-- Coretemp +local tempicon = wibox.widget.imagebox(theme.widget_temp) +local temp = lain.widget.temp({ + settings = function() + widget:set_markup(markup.fontfg(theme.font, "#f1af5f", coretemp_now .. "°C ")) + end +}) + +-- Battery +local baticon = wibox.widget.imagebox(theme.widget_batt) +local bat = lain.widget.bat({ + settings = function() + local perc = bat_now.perc ~= "N/A" and bat_now.perc .. "%" or bat_now.perc + + if bat_now.ac_status == 1 then + perc = perc .. " plug" + end + + widget:set_markup(markup.fontfg(theme.font, theme.fg_normal, bat_now.perc .. " ")) + end +}) + +-- ALSA volume +local volicon = wibox.widget.imagebox(theme.widget_vol) +theme.volume = lain.widget.alsa({ + settings = function() + if volume_now.status == "off" then + volume_now.level = volume_now.level .. "M" + end + + widget:set_markup(markup.fontfg(theme.font, "#7493d2", volume_now.level .. "% ")) + end +}) + +-- Net +local netdownicon = wibox.widget.imagebox(theme.widget_netdown) +local netdowninfo = wibox.widget.textbox() +local netupicon = wibox.widget.imagebox(theme.widget_netup) +local netupinfo = lain.widget.net({ + settings = function() + if iface ~= "network off" and + string.match(theme.weather.widget.text, "N/A") + then + theme.weather.update() + end + + widget:set_markup(markup.fontfg(theme.font, "#e54c62", net_now.sent .. " ")) + netdowninfo:set_markup(markup.fontfg(theme.font, "#87af5f", net_now.received .. " ")) + end +}) + +-- MEM +local memicon = wibox.widget.imagebox(theme.widget_mem) +local memory = lain.widget.mem({ + settings = function() + widget:set_markup(markup.fontfg(theme.font, "#e0da37", mem_now.used .. "M ")) + end +}) + +-- MPD +local mpdicon = wibox.widget.imagebox() +theme.mpd = lain.widget.mpd({ + settings = function() + mpd_notification_preset = { + text = string.format("%s [%s] - %s\n%s", mpd_now.artist, + mpd_now.album, mpd_now.date, mpd_now.title) + } + + if mpd_now.state == "play" then + artist = mpd_now.artist .. " > " + title = mpd_now.title .. " " + mpdicon:set_image(theme.widget_note_on) + elseif mpd_now.state == "pause" then + artist = "mpd " + title = "paused " + else + artist = "" + title = "" + --mpdicon:set_image() -- not working in 4.0 + mpdicon._private.image = nil + mpdicon:emit_signal("widget::redraw_needed") + mpdicon:emit_signal("widget::layout_changed") + end + widget:set_markup(markup.fontfg(theme.font, "#e54c62", artist) .. markup.fontfg(theme.font, "#b2b2b2", title)) + end +}) + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contains an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(awful.util.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 20, bg = theme.bg_normal, fg = theme.fg_normal }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + --s.mylayoutbox, + s.mytaglist, + s.mypromptbox, + mpdicon, + theme.mpd.widget, + }, + --s.mytasklist, -- Middle widget + nil, + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + --mailicon, + --mail.widget, + netdownicon, + netdowninfo, + netupicon, + netupinfo.widget, + volicon, + theme.volume.widget, + memicon, + memory.widget, + cpuicon, + cpu.widget, + fsicon, + theme.fs.widget, + weathericon, + theme.weather.widget, + tempicon, + temp.widget, + baticon, + bat.widget, + clockicon, + mytextclock, + }, + } + + -- Create the bottom wibox + s.mybottomwibox = awful.wibar({ position = "bottom", screen = s, border_width = 0, height = 20, bg = theme.bg_normal, fg = theme.fg_normal }) + + -- Add widgets to the bottom wibox + s.mybottomwibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + s.mylayoutbox, + }, + } +end return theme diff --git a/themes/multicolor/wall.png b/themes/multicolor/wall.png index 6eac193..499c020 100644 Binary files a/themes/multicolor/wall.png and b/themes/multicolor/wall.png differ diff --git a/themes/powerarrow-darker/icons/ac.png b/themes/powerarrow-dark/icons/ac.png similarity index 100% rename from themes/powerarrow-darker/icons/ac.png rename to themes/powerarrow-dark/icons/ac.png diff --git a/themes/powerarrow-darker/icons/battery.png b/themes/powerarrow-dark/icons/battery.png similarity index 100% rename from themes/powerarrow-darker/icons/battery.png rename to themes/powerarrow-dark/icons/battery.png diff --git a/themes/powerarrow-darker/icons/battery_empty.png b/themes/powerarrow-dark/icons/battery_empty.png similarity index 100% rename from themes/powerarrow-darker/icons/battery_empty.png rename to themes/powerarrow-dark/icons/battery_empty.png diff --git a/themes/powerarrow-darker/icons/battery_low.png b/themes/powerarrow-dark/icons/battery_low.png similarity index 100% rename from themes/powerarrow-darker/icons/battery_low.png rename to themes/powerarrow-dark/icons/battery_low.png diff --git a/themes/powerarrow-dark/icons/centerfair.png b/themes/powerarrow-dark/icons/centerfair.png new file mode 100644 index 0000000..c4f64b0 Binary files /dev/null and b/themes/powerarrow-dark/icons/centerfair.png differ diff --git a/themes/powerarrow-dark/icons/centerwork.png b/themes/powerarrow-dark/icons/centerwork.png new file mode 100644 index 0000000..9071516 Binary files /dev/null and b/themes/powerarrow-dark/icons/centerwork.png differ diff --git a/themes/powerarrow-dark/icons/centerworkh.png b/themes/powerarrow-dark/icons/centerworkh.png new file mode 100644 index 0000000..b1d1379 Binary files /dev/null and b/themes/powerarrow-dark/icons/centerworkh.png differ diff --git a/themes/powerarrow-darker/icons/cpu.png b/themes/powerarrow-dark/icons/cpu.png similarity index 100% rename from themes/powerarrow-darker/icons/cpu.png rename to themes/powerarrow-dark/icons/cpu.png diff --git a/themes/powerarrow-darker/icons/dwindle.png b/themes/powerarrow-dark/icons/dwindle.png similarity index 100% rename from themes/powerarrow-darker/icons/dwindle.png rename to themes/powerarrow-dark/icons/dwindle.png diff --git a/themes/powerarrow-darker/icons/fairh.png b/themes/powerarrow-dark/icons/fairh.png similarity index 100% rename from themes/powerarrow-darker/icons/fairh.png rename to themes/powerarrow-dark/icons/fairh.png diff --git a/themes/powerarrow-darker/icons/fairv.png b/themes/powerarrow-dark/icons/fairv.png similarity index 100% rename from themes/powerarrow-darker/icons/fairv.png rename to themes/powerarrow-dark/icons/fairv.png diff --git a/themes/powerarrow-darker/icons/floating.png b/themes/powerarrow-dark/icons/floating.png similarity index 100% rename from themes/powerarrow-darker/icons/floating.png rename to themes/powerarrow-dark/icons/floating.png diff --git a/themes/powerarrow-darker/icons/hdd.png b/themes/powerarrow-dark/icons/hdd.png similarity index 100% rename from themes/powerarrow-darker/icons/hdd.png rename to themes/powerarrow-dark/icons/hdd.png diff --git a/themes/powerarrow-darker/icons/magnifier.png b/themes/powerarrow-dark/icons/magnifier.png similarity index 100% rename from themes/powerarrow-darker/icons/magnifier.png rename to themes/powerarrow-dark/icons/magnifier.png diff --git a/themes/powerarrow-darker/icons/mail.png b/themes/powerarrow-dark/icons/mail.png similarity index 100% rename from themes/powerarrow-darker/icons/mail.png rename to themes/powerarrow-dark/icons/mail.png diff --git a/themes/powerarrow-darker/icons/mail_on.png b/themes/powerarrow-dark/icons/mail_on.png similarity index 100% rename from themes/powerarrow-darker/icons/mail_on.png rename to themes/powerarrow-dark/icons/mail_on.png diff --git a/themes/powerarrow-darker/icons/max.png b/themes/powerarrow-dark/icons/max.png similarity index 100% rename from themes/powerarrow-darker/icons/max.png rename to themes/powerarrow-dark/icons/max.png diff --git a/themes/powerarrow-darker/icons/mem.png b/themes/powerarrow-dark/icons/mem.png similarity index 100% rename from themes/powerarrow-darker/icons/mem.png rename to themes/powerarrow-dark/icons/mem.png diff --git a/themes/powerarrow-darker/icons/net.png b/themes/powerarrow-dark/icons/net.png similarity index 100% rename from themes/powerarrow-darker/icons/net.png rename to themes/powerarrow-dark/icons/net.png diff --git a/themes/powerarrow-darker/icons/net_wired.png b/themes/powerarrow-dark/icons/net_wired.png similarity index 100% rename from themes/powerarrow-darker/icons/net_wired.png rename to themes/powerarrow-dark/icons/net_wired.png diff --git a/themes/powerarrow-darker/icons/note.png b/themes/powerarrow-dark/icons/note.png similarity index 100% rename from themes/powerarrow-darker/icons/note.png rename to themes/powerarrow-dark/icons/note.png diff --git a/themes/powerarrow-darker/icons/note_on.png b/themes/powerarrow-dark/icons/note_on.png similarity index 100% rename from themes/powerarrow-darker/icons/note_on.png rename to themes/powerarrow-dark/icons/note_on.png diff --git a/themes/powerarrow-darker/icons/scissors.png b/themes/powerarrow-dark/icons/scissors.png similarity index 100% rename from themes/powerarrow-darker/icons/scissors.png rename to themes/powerarrow-dark/icons/scissors.png diff --git a/themes/powerarrow-darker/icons/spiral.png b/themes/powerarrow-dark/icons/spiral.png similarity index 100% rename from themes/powerarrow-darker/icons/spiral.png rename to themes/powerarrow-dark/icons/spiral.png diff --git a/themes/powerarrow-darker/icons/square_sel.png b/themes/powerarrow-dark/icons/square_sel.png similarity index 100% rename from themes/powerarrow-darker/icons/square_sel.png rename to themes/powerarrow-dark/icons/square_sel.png diff --git a/themes/powerarrow-darker/icons/square_unsel.png b/themes/powerarrow-dark/icons/square_unsel.png similarity index 100% rename from themes/powerarrow-darker/icons/square_unsel.png rename to themes/powerarrow-dark/icons/square_unsel.png diff --git a/themes/powerarrow-darker/icons/submenu.png b/themes/powerarrow-dark/icons/submenu.png similarity index 100% rename from themes/powerarrow-darker/icons/submenu.png rename to themes/powerarrow-dark/icons/submenu.png diff --git a/themes/powerarrow-darker/icons/task.png b/themes/powerarrow-dark/icons/task.png similarity index 100% rename from themes/powerarrow-darker/icons/task.png rename to themes/powerarrow-dark/icons/task.png diff --git a/themes/powerarrow-darker/icons/temp.png b/themes/powerarrow-dark/icons/temp.png similarity index 100% rename from themes/powerarrow-darker/icons/temp.png rename to themes/powerarrow-dark/icons/temp.png diff --git a/themes/powerarrow-dark/icons/termfair.png b/themes/powerarrow-dark/icons/termfair.png new file mode 100644 index 0000000..3e06023 Binary files /dev/null and b/themes/powerarrow-dark/icons/termfair.png differ diff --git a/themes/powerarrow-darker/icons/tile.png b/themes/powerarrow-dark/icons/tile.png similarity index 100% rename from themes/powerarrow-darker/icons/tile.png rename to themes/powerarrow-dark/icons/tile.png diff --git a/themes/powerarrow-darker/icons/tilebottom.png b/themes/powerarrow-dark/icons/tilebottom.png similarity index 100% rename from themes/powerarrow-darker/icons/tilebottom.png rename to themes/powerarrow-dark/icons/tilebottom.png diff --git a/themes/powerarrow-darker/icons/tileleft.png b/themes/powerarrow-dark/icons/tileleft.png similarity index 100% rename from themes/powerarrow-darker/icons/tileleft.png rename to themes/powerarrow-dark/icons/tileleft.png diff --git a/themes/powerarrow-darker/icons/tiletop.png b/themes/powerarrow-dark/icons/tiletop.png similarity index 100% rename from themes/powerarrow-darker/icons/tiletop.png rename to themes/powerarrow-dark/icons/tiletop.png diff --git a/themes/powerarrow-dark/icons/titlebar/close_focus.png b/themes/powerarrow-dark/icons/titlebar/close_focus.png new file mode 100644 index 0000000..b2051b0 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/close_focus.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/close_normal.png b/themes/powerarrow-dark/icons/titlebar/close_normal.png new file mode 100644 index 0000000..da6028c Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/close_normal.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png b/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png new file mode 100644 index 0000000..5fe84c0 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png b/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..47f19f6 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png b/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png new file mode 100644 index 0000000..576fa36 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png b/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..4adc5e9 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png b/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..7d9a11a Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png b/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..bce1d00 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png b/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..9f24945 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png b/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..2e56d32 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png b/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..41a69e2 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png b/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..2f3a2be Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png b/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..0f937b7 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png b/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..a9a3206 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png b/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..a9bc8a2 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png b/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..5493d8e Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png b/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..1e150f5 Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png differ diff --git a/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png b/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..7e6c99b Binary files /dev/null and b/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png differ diff --git a/themes/powerarrow-darker/icons/vol.png b/themes/powerarrow-dark/icons/vol.png similarity index 100% rename from themes/powerarrow-darker/icons/vol.png rename to themes/powerarrow-dark/icons/vol.png diff --git a/themes/powerarrow-darker/icons/vol_low.png b/themes/powerarrow-dark/icons/vol_low.png similarity index 100% rename from themes/powerarrow-darker/icons/vol_low.png rename to themes/powerarrow-dark/icons/vol_low.png diff --git a/themes/powerarrow-darker/icons/vol_mute.png b/themes/powerarrow-dark/icons/vol_mute.png similarity index 100% rename from themes/powerarrow-darker/icons/vol_mute.png rename to themes/powerarrow-dark/icons/vol_mute.png diff --git a/themes/powerarrow-darker/icons/vol_no.png b/themes/powerarrow-dark/icons/vol_no.png similarity index 100% rename from themes/powerarrow-darker/icons/vol_no.png rename to themes/powerarrow-dark/icons/vol_no.png diff --git a/themes/powerarrow-dark/theme.lua b/themes/powerarrow-dark/theme.lua new file mode 100644 index 0000000..fe07f3e --- /dev/null +++ b/themes/powerarrow-dark/theme.lua @@ -0,0 +1,330 @@ + +--[[ + + Powerarrow Dark Awesome WM theme + github.com/copycat-killer + +--]] + +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local os = { getenv = os.getenv } + +local theme = {} +theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-dark" +theme.wallpaper = theme.dir .. "/wall.png" +theme.font = "xos4 Terminus 9" +theme.fg_normal = "#DDDDFF" +theme.fg_focus = "#EA6F81" +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.tasklist_bg_focus = "#1A1A1A" +theme.titlebar_bg_focus = theme.bg_focus +theme.titlebar_bg_normal = theme.bg_normal +theme.titlebar_fg_focus = theme.fg_focus +theme.menu_height = 16 +theme.menu_width = 140 +theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" +theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" +theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" +theme.layout_tile = theme.dir .. "/icons/tile.png" +theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" +theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" +theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" +theme.layout_fairv = theme.dir .. "/icons/fairv.png" +theme.layout_fairh = theme.dir .. "/icons/fairh.png" +theme.layout_spiral = theme.dir .. "/icons/spiral.png" +theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" +theme.layout_max = theme.dir .. "/icons/max.png" +theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" +theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" +theme.layout_floating = theme.dir .. "/icons/floating.png" +theme.widget_ac = theme.dir .. "/icons/ac.png" +theme.widget_battery = theme.dir .. "/icons/battery.png" +theme.widget_battery_low = theme.dir .. "/icons/battery_low.png" +theme.widget_battery_empty = theme.dir .. "/icons/battery_empty.png" +theme.widget_mem = theme.dir .. "/icons/mem.png" +theme.widget_cpu = theme.dir .. "/icons/cpu.png" +theme.widget_temp = theme.dir .. "/icons/temp.png" +theme.widget_net = theme.dir .. "/icons/net.png" +theme.widget_hdd = theme.dir .. "/icons/hdd.png" +theme.widget_music = theme.dir .. "/icons/note.png" +theme.widget_music_on = theme.dir .. "/icons/note_on.png" +theme.widget_vol = theme.dir .. "/icons/vol.png" +theme.widget_vol_low = theme.dir .. "/icons/vol_low.png" +theme.widget_vol_no = theme.dir .. "/icons/vol_no.png" +theme.widget_vol_mute = theme.dir .. "/icons/vol_mute.png" +theme.widget_mail = theme.dir .. "/icons/mail.png" +theme.widget_mail_on = theme.dir .. "/icons/mail_on.png" +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true +theme.useless_gap = 0 +theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" +theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" +theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" +theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" +theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" +theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" + +local markup = lain.util.markup +local separators = lain.util.separators + +-- Textclock +local clockicon = wibox.widget.imagebox(theme.widget_clock) +local clock = lain.widget.watch({ + timeout = 60, + cmd = " date +'%a %d %b %R'", + settings = function() + widget:set_markup(" " .. markup.font(theme.font, output)) + end +}) + +-- Calendar +theme.cal = lain.widget.calendar({ + attach_to = { clock.widget }, + notification_preset = { + font = "xos4 Terminus 10", + fg = theme.fg_normal, + bg = theme.bg_normal + } +}) + +-- Mail IMAP check +local mailicon = wibox.widget.imagebox(theme.widget_mail) +--[[ commented because it needs to be set before use +mailicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.spawn(mail) end))) +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + settings = function() + if mailcount > 0 then + widget:set_text(" " .. mailcount .. " ") + mailicon:set_image(theme.widget_mail_on) + else + widget:set_text("") + mailicon:set_image(theme.widget_mail) + end + end +}) +--]] + +-- MPD +local mpdicon = wibox.widget.imagebox(theme.widget_music) +mpdicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.spawn_with_shell(musicplr) end))) +theme.mpd = lain.widget.mpd({ + settings = function() + if mpd_now.state == "play" then + artist = " " .. mpd_now.artist .. " " + title = mpd_now.title .. " " + mpdicon:set_image(theme.widget_music_on) + elseif mpd_now.state == "pause" then + artist = " mpd " + title = "paused " + else + artist = "" + title = "" + mpdicon:set_image(theme.widget_music) + end + + widget:set_markup(markup.font(theme.font, markup("#EA6F81", artist) .. title)) + end +}) + +-- MEM +local memicon = wibox.widget.imagebox(theme.widget_mem) +local mem = lain.widget.mem({ + settings = function() + widget:set_markup(markup.font(theme.font, " " .. mem_now.used .. "MB ")) + end +}) + +-- CPU +local cpuicon = wibox.widget.imagebox(theme.widget_cpu) +local cpu = lain.widget.cpu({ + settings = function() + widget:set_markup(markup.font(theme.font, " " .. cpu_now.usage .. "% ")) + end +}) + +-- Coretemp +local tempicon = wibox.widget.imagebox(theme.widget_temp) +local temp = lain.widget.temp({ + settings = function() + widget:set_markup(markup.font(theme.font, " " .. coretemp_now .. "°C ")) + end +}) + +-- / fs +local fsicon = wibox.widget.imagebox(theme.widget_hdd) +theme.fs = lain.widget.fs({ + options = "--exclude-type=tmpfs", + notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "xos4 Terminus 10" }, + settings = function() + widget:set_markup(markup.font(theme.font, " " .. fs_now.used .. "% ")) + end +}) + +-- Battery +local baticon = wibox.widget.imagebox(theme.widget_battery) +local bat = lain.widget.bat({ + settings = function() + if bat_now.status ~= "N/A" then + if bat_now.ac_status == 1 then + widget:set_markup(markup.font(theme.font, " AC ")) + baticon:set_image(theme.widget_ac) + return + elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then + baticon:set_image(theme.widget_battery_empty) + elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then + baticon:set_image(theme.widget_battery_low) + else + baticon:set_image(theme.widget_battery) + end + widget:set_markup(markup.font(theme.font, " " .. bat_now.perc .. "% ")) + else + widget:set_markup(markup.font(theme.font, " AC ")) + baticon:set_image(theme.widget_ac) + end + end +}) + +-- ALSA volume +local volicon = wibox.widget.imagebox(theme.widget_vol) +theme.volume = lain.widget.alsa({ + settings = function() + if volume_now.status == "off" then + volicon:set_image(theme.widget_vol_mute) + elseif tonumber(volume_now.level) == 0 then + volicon:set_image(theme.widget_vol_no) + elseif tonumber(volume_now.level) <= 50 then + volicon:set_image(theme.widget_vol_low) + else + volicon:set_image(theme.widget_vol) + end + + widget:set_markup(markup.font(theme.font, " " .. volume_now.level .. "% ")) + end +}) + +-- Net +local neticon = wibox.widget.imagebox(theme.widget_net) +local net = lain.widget.net({ + settings = function() + widget:set_markup(markup.font(theme.font, + markup("#7AC82E", " " .. net_now.received) + .. " " .. + markup("#46A8C3", " " .. net_now.sent .. " "))) + end +}) + +-- Separators +local spr = wibox.widget.textbox(' ') +local arrl_dl = separators.arrow_left(theme.bg_focus, "alpha") +local arrl_ld = separators.arrow_left("alpha", theme.bg_focus) + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contains an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(awful.util.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 18, bg = theme.bg_normal, fg = theme.fg_normal }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + --spr, + s.mytaglist, + s.mypromptbox, + spr, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + spr, + arrl_ld, + wibox.container.background(mpdicon, theme.bg_focus), + wibox.container.background(theme.mpd.widget, theme.bg_focus), + arrl_dl, + volicon, + theme.volume.widget, + arrl_ld, + wibox.container.background(mailicon, theme.bg_focus), + --wibox.container.background(mail.widget, theme.bg_focus), + arrl_dl, + memicon, + mem.widget, + arrl_ld, + wibox.container.background(cpuicon, theme.bg_focus), + wibox.container.background(cpu.widget, theme.bg_focus), + arrl_dl, + tempicon, + temp.widget, + arrl_ld, + wibox.container.background(fsicon, theme.bg_focus), + wibox.container.background(theme.fs.widget, theme.bg_focus), + arrl_dl, + baticon, + bat.widget, + arrl_ld, + wibox.container.background(neticon, theme.bg_focus), + wibox.container.background(net.widget, theme.bg_focus), + arrl_dl, + clock.widget, + spr, + arrl_ld, + wibox.container.background(s.mylayoutbox, theme.bg_focus), + }, + } +end + +return theme diff --git a/themes/powerarrow-dark/wall.png b/themes/powerarrow-dark/wall.png new file mode 100644 index 0000000..054c2bf Binary files /dev/null and b/themes/powerarrow-dark/wall.png differ diff --git a/themes/powerarrow-darker/icons/arrl.png b/themes/powerarrow-darker/icons/arrl.png deleted file mode 100644 index 4e26795..0000000 Binary files a/themes/powerarrow-darker/icons/arrl.png and /dev/null differ diff --git a/themes/powerarrow-darker/icons/arrl_dl.png b/themes/powerarrow-darker/icons/arrl_dl.png deleted file mode 100644 index fa0c4ea..0000000 Binary files a/themes/powerarrow-darker/icons/arrl_dl.png and /dev/null differ diff --git a/themes/powerarrow-darker/icons/arrl_dl_sf.png b/themes/powerarrow-darker/icons/arrl_dl_sf.png deleted file mode 100644 index eb2b11e..0000000 Binary files a/themes/powerarrow-darker/icons/arrl_dl_sf.png and /dev/null differ diff --git a/themes/powerarrow-darker/icons/arrl_ld.png b/themes/powerarrow-darker/icons/arrl_ld.png deleted file mode 100644 index cf98c8e..0000000 Binary files a/themes/powerarrow-darker/icons/arrl_ld.png and /dev/null differ diff --git a/themes/powerarrow-darker/icons/arrl_ld_sf.png b/themes/powerarrow-darker/icons/arrl_ld_sf.png deleted file mode 100644 index 1d3a326..0000000 Binary files a/themes/powerarrow-darker/icons/arrl_ld_sf.png and /dev/null differ diff --git a/themes/powerarrow-darker/icons/arrl_sf.png b/themes/powerarrow-darker/icons/arrl_sf.png deleted file mode 100644 index 5d30369..0000000 Binary files a/themes/powerarrow-darker/icons/arrl_sf.png and /dev/null differ diff --git a/themes/powerarrow-darker/theme.lua b/themes/powerarrow-darker/theme.lua deleted file mode 100644 index ac4b711..0000000 --- a/themes/powerarrow-darker/theme.lua +++ /dev/null @@ -1,85 +0,0 @@ - ---[[ - - Powerarrow Darker Awesome WM config 2.0 - github.com/copycat-killer - ---]] - -theme = {} - -themes_dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-darker" -theme.wallpaper = themes_dir .. "/wall.png" - -theme.font = "Terminus 9" -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" -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.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_tilebottom = themes_dir .. "/icons/tilebottom.png" -theme.layout_tiletop = themes_dir .. "/icons/tiletop.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.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 = "" -theme.tasklist_maximized_horizontal = "" -theme.tasklist_maximized_vertical = "" - -return theme diff --git a/themes/powerarrow-darker/wall.png b/themes/powerarrow-darker/wall.png deleted file mode 100755 index 794eae2..0000000 Binary files a/themes/powerarrow-darker/wall.png and /dev/null differ diff --git a/themes/powerarrow/binclock.lua b/themes/powerarrow/binclock.lua new file mode 100644 index 0000000..9d144dc --- /dev/null +++ b/themes/powerarrow/binclock.lua @@ -0,0 +1,96 @@ + +--[[ + + Licensed under GNU General Public License v2 + * (c) 2017, Luke Bonham + * (c) 2013, romockee + +--]] + +local gears = require("gears") +local wibox = require("wibox") +local date = os.date +local ipairs = ipairs +local math = math +local select = select +local string = string + +local binclock = {} + +function binclock.dec2bin(num, bits) + local bits, t = bits or select(2, math.frexp(num)), {} + for b = bits, 1, -1 do + t[b] = math.fmod(num, 2) + num = (num - t[b]) / 2 + end + return t +end + +function binclock.paintdot(cr, val, shift) + local height = 0 + for _, bit in ipairs(binclock.dec2bin(val, 4)) do + if bit >= 1 then + cr:set_source(gears.color(binclock.color_active)) + else + cr:set_source(gears.color(binclock.color_inactive)) + end + cr:rectangle(shift, height, binclock.dotsize, binclock.dotsize) + cr:fill() + height = height + binclock.dotsize + binclock.step + end +end + +local function factory(args) + local args = args or {} + + binclock.width = args.width or 42 + binclock.height = args.height or 18 + binclock.show_seconds = args.show_seconds or false + binclock.color_active = args.color_active or "#CCCCCC" + binclock.color_inactive = args.color_inactive or "#444444" + binclock.dotsize = math.floor(binclock.height / 5) + binclock.step = math.floor(binclock.dotsize / 3) + + binclock.widget = wibox.widget { + fit = function(self, context, width, height) + return binclock.width, binclock.height + end, + draw = function(self, context, cr, width, height) + local t = date("*t") + + local hour = string.format("%02d", t.hour) + local min = string.format("%02d", t.min) + local sec = string.format("%02d", t.sec) + + local col_count = 4 + if binclock.show_seconds then + col_count = 6 + end + local step = math.floor((binclock.width - col_count * binclock.dotsize) / 8) + + binclock.paintdot(cr, string.sub(hour, 1, 1), step, 2) + binclock.paintdot(cr, string.sub(hour, 2, 2), binclock.dotsize + 2 * step) + + binclock.paintdot(cr, string.sub(min, 1, 1), binclock.dotsize * 2 + 4 * step) + binclock.paintdot(cr, string.sub(min, 2, 2), binclock.dotsize * 3 + 5 * step) + + if binclock.show_seconds then + binclock.paintdot(cr, string.sub(sec, 1, 1), binclock.dotsize * 4 + 7 * step) + binclock.paintdot(cr, string.sub(sec, 2, 2), binclock.dotsize * 5 + 8 * step) + end + end, + layout = wibox.widget.base.make_widget + } + + binclock.timer = gears.timer { timeout = binclock.show_seconds and 1 or 60 } + + binclock.timer:connect_signal("timeout", function() + binclock.widget:emit_signal("widget::redraw_needed") + end) + + binclock.timer:start() + + return binclock +end + +return factory diff --git a/themes/powerarrow/icons/ac.png b/themes/powerarrow/icons/ac.png new file mode 100644 index 0000000..453af4e Binary files /dev/null and b/themes/powerarrow/icons/ac.png differ diff --git a/themes/powerarrow/icons/awesome.png b/themes/powerarrow/icons/awesome.png new file mode 100644 index 0000000..4cabb6c Binary files /dev/null and b/themes/powerarrow/icons/awesome.png differ diff --git a/themes/powerarrow/icons/battery.png b/themes/powerarrow/icons/battery.png new file mode 100644 index 0000000..7dd78a5 Binary files /dev/null and b/themes/powerarrow/icons/battery.png differ diff --git a/themes/powerarrow/icons/battery_empty.png b/themes/powerarrow/icons/battery_empty.png new file mode 100644 index 0000000..763aa93 Binary files /dev/null and b/themes/powerarrow/icons/battery_empty.png differ diff --git a/themes/powerarrow/icons/battery_low.png b/themes/powerarrow/icons/battery_low.png new file mode 100644 index 0000000..626222f Binary files /dev/null and b/themes/powerarrow/icons/battery_low.png differ diff --git a/themes/powerarrow/icons/cpu.png b/themes/powerarrow/icons/cpu.png new file mode 100644 index 0000000..c28a787 Binary files /dev/null and b/themes/powerarrow/icons/cpu.png differ diff --git a/themes/powerarrow/icons/floating.png b/themes/powerarrow/icons/floating.png new file mode 100644 index 0000000..146a87c Binary files /dev/null and b/themes/powerarrow/icons/floating.png differ diff --git a/themes/powerarrow/icons/fwd.png b/themes/powerarrow/icons/fwd.png new file mode 100644 index 0000000..e9b875e Binary files /dev/null and b/themes/powerarrow/icons/fwd.png differ diff --git a/themes/powerarrow/icons/hdd.png b/themes/powerarrow/icons/hdd.png new file mode 100644 index 0000000..db4458c Binary files /dev/null and b/themes/powerarrow/icons/hdd.png differ diff --git a/themes/powerarrow/icons/mail.png b/themes/powerarrow/icons/mail.png new file mode 100644 index 0000000..4641aea Binary files /dev/null and b/themes/powerarrow/icons/mail.png differ diff --git a/themes/powerarrow/icons/mail_on.png b/themes/powerarrow/icons/mail_on.png new file mode 100644 index 0000000..65dfb3c Binary files /dev/null and b/themes/powerarrow/icons/mail_on.png differ diff --git a/themes/powerarrow/icons/mem.png b/themes/powerarrow/icons/mem.png new file mode 100644 index 0000000..ee6d480 Binary files /dev/null and b/themes/powerarrow/icons/mem.png differ diff --git a/themes/powerarrow/icons/net.png b/themes/powerarrow/icons/net.png new file mode 100644 index 0000000..769bfec Binary files /dev/null and b/themes/powerarrow/icons/net.png differ diff --git a/themes/powerarrow/icons/next.png b/themes/powerarrow/icons/next.png new file mode 100644 index 0000000..9a62593 Binary files /dev/null and b/themes/powerarrow/icons/next.png differ diff --git a/themes/powerarrow/icons/note.png b/themes/powerarrow/icons/note.png new file mode 100644 index 0000000..19866aa Binary files /dev/null and b/themes/powerarrow/icons/note.png differ diff --git a/themes/powerarrow/icons/note_on.png b/themes/powerarrow/icons/note_on.png new file mode 100644 index 0000000..aae5ca3 Binary files /dev/null and b/themes/powerarrow/icons/note_on.png differ diff --git a/themes/powerarrow/icons/pacman.png b/themes/powerarrow/icons/pacman.png new file mode 100644 index 0000000..bdb9b7b Binary files /dev/null and b/themes/powerarrow/icons/pacman.png differ diff --git a/themes/powerarrow/icons/pause.png b/themes/powerarrow/icons/pause.png new file mode 100644 index 0000000..d4546e6 Binary files /dev/null and b/themes/powerarrow/icons/pause.png differ diff --git a/themes/powerarrow/icons/phones.png b/themes/powerarrow/icons/phones.png new file mode 100644 index 0000000..bec0e57 Binary files /dev/null and b/themes/powerarrow/icons/phones.png differ diff --git a/themes/powerarrow/icons/play.png b/themes/powerarrow/icons/play.png new file mode 100644 index 0000000..b228f74 Binary files /dev/null and b/themes/powerarrow/icons/play.png differ diff --git a/themes/powerarrow/icons/prev.png b/themes/powerarrow/icons/prev.png new file mode 100644 index 0000000..4c4ca40 Binary files /dev/null and b/themes/powerarrow/icons/prev.png differ diff --git a/themes/powerarrow/icons/rwd.png b/themes/powerarrow/icons/rwd.png new file mode 100644 index 0000000..ac3d6f4 Binary files /dev/null and b/themes/powerarrow/icons/rwd.png differ diff --git a/themes/powerarrow/icons/scissors.png b/themes/powerarrow/icons/scissors.png new file mode 100644 index 0000000..68bf003 Binary files /dev/null and b/themes/powerarrow/icons/scissors.png differ diff --git a/themes/powerarrow/icons/square_sel.png b/themes/powerarrow/icons/square_sel.png new file mode 100755 index 0000000..874a3a5 Binary files /dev/null and b/themes/powerarrow/icons/square_sel.png differ diff --git a/themes/powerarrow/icons/square_unsel.png b/themes/powerarrow/icons/square_unsel.png new file mode 100755 index 0000000..979642f Binary files /dev/null and b/themes/powerarrow/icons/square_unsel.png differ diff --git a/themes/powerarrow/icons/stop.png b/themes/powerarrow/icons/stop.png new file mode 100644 index 0000000..207915b Binary files /dev/null and b/themes/powerarrow/icons/stop.png differ diff --git a/themes/powerarrow/icons/submenu.png b/themes/powerarrow/icons/submenu.png new file mode 100755 index 0000000..e9a6b7c Binary files /dev/null and b/themes/powerarrow/icons/submenu.png differ diff --git a/themes/powerarrow/icons/task.png b/themes/powerarrow/icons/task.png new file mode 100644 index 0000000..962b51a Binary files /dev/null and b/themes/powerarrow/icons/task.png differ diff --git a/themes/powerarrow/icons/temp.png b/themes/powerarrow/icons/temp.png new file mode 100644 index 0000000..7952de8 Binary files /dev/null and b/themes/powerarrow/icons/temp.png differ diff --git a/themes/powerarrow/icons/tile.png b/themes/powerarrow/icons/tile.png new file mode 100644 index 0000000..d2fd6bd Binary files /dev/null and b/themes/powerarrow/icons/tile.png differ diff --git a/themes/powerarrow/icons/tilebottom.png b/themes/powerarrow/icons/tilebottom.png new file mode 100644 index 0000000..30513ec Binary files /dev/null and b/themes/powerarrow/icons/tilebottom.png differ diff --git a/themes/powerarrow/icons/tileleft.png b/themes/powerarrow/icons/tileleft.png new file mode 100644 index 0000000..ddbf7bb Binary files /dev/null and b/themes/powerarrow/icons/tileleft.png differ diff --git a/themes/powerarrow/icons/tiletop.png b/themes/powerarrow/icons/tiletop.png new file mode 100644 index 0000000..f7671bf Binary files /dev/null and b/themes/powerarrow/icons/tiletop.png differ diff --git a/themes/powerarrow/icons/titlebar/close_focus.png b/themes/powerarrow/icons/titlebar/close_focus.png new file mode 100644 index 0000000..e9b4179 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/close_focus.png differ diff --git a/themes/powerarrow/icons/titlebar/close_normal.png b/themes/powerarrow/icons/titlebar/close_normal.png new file mode 100644 index 0000000..cb0c3fa Binary files /dev/null and b/themes/powerarrow/icons/titlebar/close_normal.png differ diff --git a/themes/powerarrow/icons/titlebar/floating_focus_active.png b/themes/powerarrow/icons/titlebar/floating_focus_active.png new file mode 100644 index 0000000..0f9ee0d Binary files /dev/null and b/themes/powerarrow/icons/titlebar/floating_focus_active.png differ diff --git a/themes/powerarrow/icons/titlebar/floating_focus_inactive.png b/themes/powerarrow/icons/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..d254a73 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/floating_focus_inactive.png differ diff --git a/themes/powerarrow/icons/titlebar/floating_normal_active.png b/themes/powerarrow/icons/titlebar/floating_normal_active.png new file mode 100644 index 0000000..c5ce3de Binary files /dev/null and b/themes/powerarrow/icons/titlebar/floating_normal_active.png differ diff --git a/themes/powerarrow/icons/titlebar/floating_normal_inactive.png b/themes/powerarrow/icons/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..850b602 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/floating_normal_inactive.png differ diff --git a/themes/powerarrow/icons/titlebar/maximized_focus_active.png b/themes/powerarrow/icons/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..7e8498a Binary files /dev/null and b/themes/powerarrow/icons/titlebar/maximized_focus_active.png differ diff --git a/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png b/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..f684470 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png differ diff --git a/themes/powerarrow/icons/titlebar/maximized_normal_active.png b/themes/powerarrow/icons/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..4aa4196 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/maximized_normal_active.png differ diff --git a/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png b/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..bfe01a3 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png differ diff --git a/themes/powerarrow/icons/titlebar/ontop_focus_active.png b/themes/powerarrow/icons/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..86e61b7 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/ontop_focus_active.png differ diff --git a/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png b/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..286d439 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png differ diff --git a/themes/powerarrow/icons/titlebar/ontop_normal_active.png b/themes/powerarrow/icons/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..fcee772 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/ontop_normal_active.png differ diff --git a/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png b/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..a628626 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png differ diff --git a/themes/powerarrow/icons/titlebar/sticky_focus_active.png b/themes/powerarrow/icons/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..b10e604 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/sticky_focus_active.png differ diff --git a/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png b/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..22d7453 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png differ diff --git a/themes/powerarrow/icons/titlebar/sticky_normal_active.png b/themes/powerarrow/icons/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..aad079e Binary files /dev/null and b/themes/powerarrow/icons/titlebar/sticky_normal_active.png differ diff --git a/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png b/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..5f3e655 Binary files /dev/null and b/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png differ diff --git a/themes/powerarrow/theme.lua b/themes/powerarrow/theme.lua new file mode 100644 index 0000000..0519a73 --- /dev/null +++ b/themes/powerarrow/theme.lua @@ -0,0 +1,371 @@ + +--[[ + + Powerarrow Awesome WM theme + github.com/copycat-killer + +--]] + +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local os, math, string = os, math, string + +local theme = {} +theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow" +theme.wallpaper = theme.dir .. "/wall.png" +theme.font = "xos4 Terminus 9" +theme.fg_normal = "#FEFEFE" +theme.fg_focus = "#32D6FF" +theme.fg_urgent = "#C83F11" +theme.bg_normal = "#222222" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +theme.taglist_fg_focus = "#00CCFF" +theme.tasklist_bg_focus = "#222222" +theme.tasklist_fg_focus = "#00CCFF" +theme.border_width = 1 +theme.border_normal = "#3F3F3F" +theme.border_focus = "#6F6F6F" +theme.border_marked = "#CC9393" +theme.titlebar_bg_focus = "#3F3F3F" +theme.titlebar_bg_normal = "#3F3F3F" +theme.titlebar_bg_focus = theme.bg_focus +theme.titlebar_bg_normal = theme.bg_normal +theme.titlebar_fg_focus = theme.fg_focus +theme.menu_height = 16 +theme.menu_width = 140 +theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" +theme.awesome_icon = theme.dir .. "/icons/awesome.png" +theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" +theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" +theme.layout_tile = theme.dir .. "/icons/tile.png" +theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" +theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" +theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" +theme.layout_fairv = theme.dir .. "/icons/fairv.png" +theme.layout_fairh = theme.dir .. "/icons/fairh.png" +theme.layout_spiral = theme.dir .. "/icons/spiral.png" +theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" +theme.layout_max = theme.dir .. "/icons/max.png" +theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" +theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" +theme.layout_floating = theme.dir .. "/icons/floating.png" +theme.widget_ac = theme.dir .. "/icons/ac.png" +theme.widget_battery = theme.dir .. "/icons/battery.png" +theme.widget_battery_low = theme.dir .. "/icons/battery_low.png" +theme.widget_battery_empty = theme.dir .. "/icons/battery_empty.png" +theme.widget_mem = theme.dir .. "/icons/mem.png" +theme.widget_cpu = theme.dir .. "/icons/cpu.png" +theme.widget_temp = theme.dir .. "/icons/temp.png" +theme.widget_net = theme.dir .. "/icons/net.png" +theme.widget_hdd = theme.dir .. "/icons/hdd.png" +theme.widget_music = theme.dir .. "/icons/note.png" +theme.widget_music_on = theme.dir .. "/icons/note_on.png" +theme.widget_music_pause = theme.dir .. "/icons/pause.png" +theme.widget_music_stop = theme.dir .. "/icons/stop.png" +theme.widget_vol = theme.dir .. "/icons/vol.png" +theme.widget_vol_low = theme.dir .. "/icons/vol_low.png" +theme.widget_vol_no = theme.dir .. "/icons/vol_no.png" +theme.widget_vol_mute = theme.dir .. "/icons/vol_mute.png" +theme.widget_mail = theme.dir .. "/icons/mail.png" +theme.widget_mail_on = theme.dir .. "/icons/mail_on.png" +theme.widget_task = theme.dir .. "/icons/task.png" +theme.widget_scissors = theme.dir .. "/icons/scissors.png" +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true +theme.useless_gap = 0 +theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" +theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" +theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" +theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" +theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" +theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" + +local markup = lain.util.markup +local separators = lain.util.separators + +-- Binary clock +local binclock = require("themes.powerarrow.binclock"){ + height = 16, + show_seconds = true, + color_active = theme.fg_normal, + color_inactive = theme.bg_focus +} + +-- Calendar +theme.cal = lain.widget.calendar({ + --cal = "cal --color=always", + attach_to = { binclock.widget }, + notification_preset = { + font = "xos4 Terminus 10", + fg = theme.fg_normal, + bg = theme.bg_normal + } +}) + +-- Taskwarrior +local task = wibox.widget.imagebox(theme.widget_task) +lain.widget.contrib.task.attach(task) +task:buttons(awful.util.table.join(awful.button({}, 1, lain.widget.contrib.task.prompt))) + +-- Scissors (xsel copy and paste) +local scissors = wibox.widget.imagebox(theme.widget_scissors) +scissors:buttons(awful.util.table.join(awful.button({}, 1, function() awful.spawn("xsel | xsel -i -b") end))) + +-- Mail IMAP check +local mailicon = wibox.widget.imagebox(theme.widget_mail) +--[[ commented because it needs to be set before use +mailicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.spawn(mail) end))) +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + settings = function() + if mailcount > 0 then + widget:set_text(" " .. mailcount .. " ") + mailicon:set_image(theme.widget_mail_on) + else + widget:set_text("") + mailicon:set_image(theme.widget_mail) + end + end +}) +--]] + +-- ALSA volume +theme.volume = lain.widget.alsabar({ + --togglechannel = "IEC958,3", + notification_preset = { font = "xos4 Terminus 10", fg = theme.fg_normal }, +}) + +-- MPD +local musicplr = awful.util.terminal .. " -title Music -g 130x34-320+16 -e ncmpcpp" +local mpdicon = wibox.widget.imagebox(theme.widget_music) +mpdicon:buttons(awful.util.table.join( + awful.button({ modkey }, 1, function () awful.spawn_with_shell(musicplr) end), + awful.button({ }, 1, function () awful.spawn_with_shell("mpc prev") end), + awful.button({ }, 2, function () awful.spawn_with_shell("mpc toggle") end), + awful.button({ }, 3, function () awful.spawn_with_shell("mpc next") end))) +theme.mpd = lain.widget.mpd({ + settings = function() + if mpd_now.state == "play" then + artist = " " .. mpd_now.artist .. " " + title = mpd_now.title .. " " + mpdicon:set_image(theme.widget_music_on) + widget:set_markup(markup.font(theme.font, markup("#FF8466", artist) .. " " .. title)) + elseif mpd_now.state == "pause" then + widget:set_markup(markup.font(theme.font, " mpd paused ")) + mpdicon:set_image(theme.widget_music_pause) + else + widget:set_text("") + mpdicon:set_image(theme.widget_music) + end + end +}) + +-- MEM +local memicon = wibox.widget.imagebox(theme.widget_mem) +local mem = lain.widget.mem({ + settings = function() + widget:set_markup(markup.font(theme.font, " " .. mem_now.used .. "MB ")) + end +}) + +-- CPU +local cpuicon = wibox.widget.imagebox(theme.widget_cpu) +local cpu = lain.widget.cpu({ + settings = function() + widget:set_markup(markup.font(theme.font, " " .. cpu_now.usage .. "% ")) + end +}) + +--[[ Coretemp (lm_sensors, per core) +local tempwidget = awful.widget.watch({awful.util.shell, '-c', 'sensors | grep Core'}, 30, +function(widget, stdout) + local temps = "" + for line in stdout:gmatch("[^\r\n]+") do + temps = temps .. line:match("+(%d+).*°C") .. "° " -- in Celsius + end + widget:set_markup(markup.font(theme.font, " " .. temps)) +end) +--]] +-- Coretemp (lain, average) +local temp = lain.widget.temp({ + settings = function() + widget:set_markup(markup.font(theme.font, " " .. coretemp_now .. "°C ")) + end +}) +--]] +local tempicon = wibox.widget.imagebox(theme.widget_temp) + +-- / fs +local fsicon = wibox.widget.imagebox(theme.widget_hdd) +theme.fs = lain.widget.fs({ + options = "--exclude-type=tmpfs", + notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "xos4 Terminus 10" }, + settings = function() + widget:set_markup(markup.font(theme.font, " " .. fs_now.available_gb .. "GB ")) + end +}) + +-- Battery +local baticon = wibox.widget.imagebox(theme.widget_battery) +local bat = lain.widget.bat({ + settings = function() + if bat_now.status ~= "N/A" then + if bat_now.ac_status == 1 then + widget:set_markup(markup.font(theme.font, " AC ")) + baticon:set_image(theme.widget_ac) + return + elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then + baticon:set_image(theme.widget_battery_empty) + elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then + baticon:set_image(theme.widget_battery_low) + else + baticon:set_image(theme.widget_battery) + end + widget:set_markup(markup.font(theme.font, " " .. bat_now.perc .. "% ")) + else + widget:set_markup() + baticon:set_image(theme.widget_ac) + end + end +}) + +-- Net +local neticon = wibox.widget.imagebox(theme.widget_net) +local net = lain.widget.net({ + settings = function() + widget:set_markup(markup.fontfg(theme.font, "#FEFEFE", " " .. net_now.received .. " ↓↑ " .. net_now.sent .. " ")) + end +}) + +-- Separators +local arrow = separators.arrow_left + +function theme.powerline_rl(cr, width, height) + local arrow_depth, offset = height/2, 0 + + -- Avoid going out of the (potential) clip area + if arrow_depth < 0 then + width = width + 2*arrow_depth + offset = -arrow_depth + end + + cr:move_to(offset + arrow_depth , 0 ) + cr:line_to(offset + width , 0 ) + cr:line_to(offset + width - arrow_depth , height/2 ) + cr:line_to(offset + width , height ) + cr:line_to(offset + arrow_depth , height ) + cr:line_to(offset , height/2 ) + + cr:close_path() +end + +local function pl(widget, bgcolor, padding) + return wibox.container.background(wibox.container.margin(widget, 16, 16), bgcolor, theme.powerline_rl) +end + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contains an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(awful.util.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 16, bg = theme.bg_normal, fg = theme.fg_normal }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + --spr, + s.mytaglist, + s.mypromptbox, + spr, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + wibox.container.margin(scissors, 4, 8), + --[[ using shapes + pl(wibox.widget { mpdicon, theme.mpd.widget, layout = wibox.layout.align.horizontal }, "#343434"), + pl(task, "#343434"), + --pl(wibox.widget { mailicon, mail and mail.widget, layout = wibox.layout.align.horizontal }, "#343434"), + pl(wibox.widget { memicon, mem.widget, layout = wibox.layout.align.horizontal }, "#777E76"), + pl(wibox.widget { cpuicon, cpu.widget, layout = wibox.layout.align.horizontal }, "#4B696D"), + pl(wibox.widget { tempicon, temp.widget, layout = wibox.layout.align.horizontal }, "#4B3B51"), + pl(wibox.widget { fsicon, theme.fs.widget, layout = wibox.layout.align.horizontal }, "#CB755B"), + pl(wibox.widget { baticon, bat.widget, layout = wibox.layout.align.horizontal }, "#8DAA9A"), + pl(wibox.widget { neticon, net.widget, layout = wibox.layout.align.horizontal }, "#C0C0A2"), + pl(binclock.widget, "#777E76"), + --]] + -- using separators + arrow(theme.bg_normal, "#343434"), + wibox.container.background(wibox.container.margin(wibox.widget { mailicon, mail and mail.widget, layout = wibox.layout.align.horizontal }, 4, 7), "#343434"), + arrow("#343434", theme.bg_normal), + wibox.container.background(wibox.container.margin(wibox.widget { mpdicon, theme.mpd.widget, layout = wibox.layout.align.horizontal }, 3, 6), theme.bg_focus), + arrow(theme.bg_normal, "#343434"), + wibox.container.background(wibox.container.margin(task, 3, 7), "#343434"), + arrow("#343434", "#777E76"), + wibox.container.background(wibox.container.margin(wibox.widget { memicon, mem.widget, layout = wibox.layout.align.horizontal }, 2, 3), "#777E76"), + arrow("#777E76", "#4B696D"), + wibox.container.background(wibox.container.margin(wibox.widget { cpuicon, cpu.widget, layout = wibox.layout.align.horizontal }, 3, 4), "#4B696D"), + arrow("#4B696D", "#4B3B51"), + wibox.container.background(wibox.container.margin(wibox.widget { tempicon, temp.widget, layout = wibox.layout.align.horizontal }, 4, 4), "#4B3B51"), + arrow("#4B3B51", "#CB755B"), + wibox.container.background(wibox.container.margin(wibox.widget { fsicon, theme.fs.widget, layout = wibox.layout.align.horizontal }, 3, 3), "#CB755B"), + arrow("#CB755B", "#8DAA9A"), + wibox.container.background(wibox.container.margin(wibox.widget { baticon, bat.widget, layout = wibox.layout.align.horizontal }, 3, 3), "#8DAA9A"), + arrow("#8DAA9A", "#C0C0A2"), + wibox.container.background(wibox.container.margin(wibox.widget { nil, neticon, net.widget, layout = wibox.layout.align.horizontal }, 3, 3), "#C0C0A2"), + arrow("#C0C0A2", "#777E76"), + wibox.container.background(wibox.container.margin(binclock.widget, 4, 8), "#777E76"), + arrow("#777E76", "alpha"), + --]] + s.mylayoutbox, + }, + } +end + +return theme diff --git a/themes/powerarrow/wall.png b/themes/powerarrow/wall.png new file mode 100644 index 0000000..c503913 Binary files /dev/null and b/themes/powerarrow/wall.png differ diff --git a/themes/rainbow/icons/vol_bg.png b/themes/rainbow/icons/vol_bg.png deleted file mode 100644 index 7778d33..0000000 Binary files a/themes/rainbow/icons/vol_bg.png and /dev/null differ diff --git a/themes/rainbow/theme.lua b/themes/rainbow/theme.lua index 90715f8..1efb073 100644 --- a/themes/rainbow/theme.lua +++ b/themes/rainbow/theme.lua @@ -1,73 +1,273 @@ --[[ - - Rainbow Awesome WM config 2.0 - github.com/copycat-killer - + + Rainbow Awesome WM theme 2.0 + github.com/copycat-killer + --]] -theme = {} +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local os = { getenv = os.getenv } -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/rainbow" -theme.wallpaper = theme.dir .. "/wall.png" - -theme.font = "Tamsyn 10.5" -theme.fg_normal = "#9E9E9E" -theme.fg_focus = "#EBEBFF" -theme.bg_normal = "#242424" -theme.bg_focus = "#242424" -theme.fg_urgent = "#000000" -theme.bg_urgent = "#FFFFFF" -theme.border_width = 1 -theme.border_normal = "#242424" -theme.border_focus = "#EBEBFF" -theme.taglist_fg_focus = "#EDEFFF" -theme.taglist_bg_focus = "#242424" -theme.menu_height = "16" -theme.menu_width = "150" - -theme.ocol = "" -theme.ccol = "" -theme.tasklist_sticky = theme.ocol .. "[S]" .. theme.ccol -theme.tasklist_ontop = theme.ocol .. "[T]" .. theme.ccol -theme.tasklist_floating = theme.ocol .. "[F]" .. theme.ccol -theme.tasklist_maximized_horizontal = theme.ocol .. "[M] " .. theme.ccol -theme.tasklist_maximized_vertical = "" -theme.tasklist_disable_icon = true - -theme.menu_awesome_icon = theme.dir .."/icons/awesome.png" -theme.submenu_icon = theme.dir .."/icons/submenu.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.vol_bg = theme.dir .. "/icons/vol_bg.png" - -theme.layout_txt_tile = "[t]" -theme.layout_txt_tileleft = "[l]" -theme.layout_txt_tilebottom = "[b]" -theme.layout_txt_tiletop = "[tt]" -theme.layout_txt_fairv = "[fv]" -theme.layout_txt_fairh = "[fh]" -theme.layout_txt_spiral = "[s]" -theme.layout_txt_dwindle = "[d]" -theme.layout_txt_max = "[m]" -theme.layout_txt_fullscreen = "[F]" -theme.layout_txt_magnifier = "[M]" -theme.layout_txt_floating = "[*]" +local theme = {} +theme.default_dir = require("awful.util").get_themes_dir() .. "default" +theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/rainbow" +theme.wallpaper = theme.dir .. "/wall.png" +theme.font = "Misc Tamsyn 10.5" +theme.fg_normal = "#9E9E9E" +theme.fg_focus = "#EBEBFF" +theme.bg_normal = "#242424" +theme.bg_focus = "#242424" +theme.fg_urgent = "#000000" +theme.bg_urgent = "#FFFFFF" +theme.border_width = 1 +theme.border_normal = "#242424" +theme.border_focus = "#EBEBFF" +theme.taglist_fg_focus = "#EDEFFF" +theme.taglist_bg_focus = "#242424" +theme.menu_height = 16 +theme.menu_width = 140 +theme.ocol = "" +theme.tasklist_sticky = theme.ocol .. "[S]" +theme.tasklist_ontop = theme.ocol .. "[T]" +theme.tasklist_floating = theme.ocol .. "[F]" +theme.tasklist_maximized_horizontal = theme.ocol .. "[M] " +theme.tasklist_maximized_vertical = "" +theme.tasklist_disable_icon = true +theme.awesome_icon = theme.dir .."/icons/awesome.png" +theme.menu_submenu_icon = theme.dir .."/icons/submenu.png" +theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" +theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" +theme.useless_gap = 8 +theme.layout_txt_tile = "[t]" +theme.layout_txt_tileleft = "[l]" +theme.layout_txt_tilebottom = "[b]" +theme.layout_txt_tiletop = "[tt]" +theme.layout_txt_fairv = "[fv]" +theme.layout_txt_fairh = "[fh]" +theme.layout_txt_spiral = "[s]" +theme.layout_txt_dwindle = "[d]" +theme.layout_txt_max = "[m]" +theme.layout_txt_fullscreen = "[F]" +theme.layout_txt_magnifier = "[M]" +theme.layout_txt_floating = "[*]" +theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png" +theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png" +theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png" +theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png" +theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png" +theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png" +theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png" +theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png" +theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png" +theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png" +theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png" -- lain related -theme.useless_gap_width = 10 -theme.layout_txt_cascade = "[cascade]" -theme.layout_txt_cascadetile = "[cascadetile]" -theme.layout_txt_centerwork = "[centerwork]" -theme.layout_txt_termfair = "[termfair]" -theme.layout_txt_centerfair = "[centerfair]" -theme.layout_txt_uselessfair = "[uf]" -theme.layout_txt_uselessfairh = "[ufh]" -theme.layout_txt_uselesspiral = "[us]" -theme.layout_txt_uselessdwindle = "[ud]" -theme.layout_txt_uselesstile = "[ut]" -theme.layout_txt_uselesstileleft = "[utl]" -theme.layout_txt_uselesstiletop = "[utt]" -theme.layout_txt_uselesstilebottom = "[utb]" +theme.layout_txt_cascade = "[cascade]" +theme.layout_txt_cascadetile = "[cascadetile]" +theme.layout_txt_centerwork = "[centerwork]" +theme.layout_txt_termfair = "[termfair]" +theme.layout_txt_centerfair = "[centerfair]" + +local markup = lain.util.markup +local white = theme.fg_focus +local gray = theme.fg_normal + +-- Textclock +local mytextclock = wibox.widget.textclock(markup(white, " %H:%M ")) +mytextclock.font = theme.font + +-- Calendar +lain.widget.calendar({ + attach_to = { mytextclock }, + notification_preset = { + font = "Misc Tamsyn 11", + fg = white, + bg = theme.bg_normal + } +}) + +--[[ Mail IMAP check +-- commented because it needs to be set before use +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + settings = function() + mail_notification_preset.fg = white + + mail = "" + count = "" + + if mailcount > 0 then + mail = "Mail " + count = mailcount .. " " + end + + widget:set_markup(markup.font(theme.font, markup(gray, mail) .. markup(white, count))) + end +}) +]] + +-- MPD +theme.mpd = lain.widget.mpd({ + settings = function() + mpd_notification_preset.fg = white + + artist = mpd_now.artist .. " " + title = mpd_now.title .. " " + + if mpd_now.state == "pause" then + artist = "mpd " + title = "paused " + elseif mpd_now.state == "stop" then + artist = "" + title = "" + end + + widget:set_markup(markup.font(theme.font, markup(gray, artist) .. markup(white, title))) + end +}) + +-- /home fs +theme.fs = lain.widget.fs({ + partition = "/home", + options = "--exclude-type=tmpfs", + notification_preset = { fg = white, bg = theme.bg_normal, font = "Misc Tamsyn 10.5" }, + settings = function() + hdd = "" + p = "" + + if tonumber(fs_now.used) >= 90 then + hdd = " Hdd " + p = fs_now.used .. " " + end + + widget:set_markup(markup.font(theme.font, markup(gray, hdd) .. markup(white, p))) + end +}) + +-- ALSA volume bar +theme.volume = lain.widget.alsabar({ + ticks = true, width = 67, + notification_preset = { font = theme.font } +}) +theme.volume.tooltip.wibox.fg = theme.fg_focus +theme.volume.tooltip.wibox.font = theme.font +theme.volume.bar:buttons(awful.util.table.join ( + awful.button({}, 1, function() + awful.spawn.with_shell(string.format("%s -e alsamixer", terminal)) + end), + awful.button({}, 2, function() + awful.spawn(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel)) + theme.volume.update() + end), + awful.button({}, 3, function() + awful.spawn(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel)) + theme.volume.update() + end), + awful.button({}, 4, function() + awful.spawn(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel)) + theme.volume.update() + end), + awful.button({}, 5, function() + awful.spawn(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel)) + theme.volume.update() + end) +)) +local volumebg = wibox.container.background(theme.volume.bar, "#585858", gears.shape.rectangle) +local volumewidget = wibox.container.margin(volumebg, 7, 7, 5, 5) + +-- Weather +theme.weather = lain.widget.weather({ + city_id = 2643743, -- placeholder (London) + notification_preset = { font = theme.font, fg = white } +}) + +-- Separators +local first = wibox.widget.textbox(markup.font("Misc Tamsyn 4", " ")) +local spr = wibox.widget.textbox(' ') + +local function update_txt_layoutbox(s) + -- Writes a string representation of the current layout in a textbox widget + local txt_l = theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))] or "" + s.mytxtlayoutbox:set_text(txt_l) +end + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + + -- Textual layoutbox + s.mytxtlayoutbox = wibox.widget.textbox(theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))]) + awful.tag.attached_connect_signal(s, "property::selected", function () update_txt_layoutbox(s) end) + awful.tag.attached_connect_signal(s, "property::layout", function () update_txt_layoutbox(s) end) + s.mytxtlayoutbox:buttons(awful.util.table.join( + awful.button({}, 1, function() awful.layout.inc(1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 18, bg = theme.bg_normal, fg = theme.fg_normal }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + first, + s.mytaglist, + spr, + s.mytxtlayoutbox, + --spr, + s.mypromptbox, + spr, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + spr, + theme.mpd.widget, + --mail.widget, + theme.fs.widget, + volumewidget, + mytextclock, + }, + } +end return theme diff --git a/themes/rainbow/wall.png b/themes/rainbow/wall.png index 3576ff2..7d0de67 100755 Binary files a/themes/rainbow/wall.png and b/themes/rainbow/wall.png differ diff --git a/themes/steamburn/icons/awesome.png b/themes/steamburn/icons/awesome.png new file mode 100644 index 0000000..a1fdc1c Binary files /dev/null and b/themes/steamburn/icons/awesome.png differ diff --git a/themes/steamburn/theme.lua b/themes/steamburn/theme.lua index 17d8fda..c97e420 100644 --- a/themes/steamburn/theme.lua +++ b/themes/steamburn/theme.lua @@ -1,60 +1,270 @@ --[[ - - Steamburn Awesome WM config 3.0 - github.com/copycat-killer - + + Steamburn Awesome WM theme 3.0 + github.com/copycat-killer + --]] -theme = {} +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local os = { getenv = os.getenv } -themes_dir = os.getenv("HOME") .. "/.config/awesome/themes/steamburn" -theme.wallpaper = themes_dir .. "/wall.png" - -theme.font = "Tamsyn 10.5" -theme.fg_normal = "#e2ccb0" -theme.fg_focus = "#d88166" -theme.fg_urgent = "#CC9393" -theme.bg_normal = "#140c0b" -theme.bg_focus = "#140c0b" -theme.bg_urgent = "#2a1f1e" -theme.border_width = 1 -theme.border_normal = "#302627" -theme.border_focus = "#c2745b" -theme.border_marked = "#CC9393" -theme.taglist_fg_focus = "#d88166" -theme.tasklist_bg_focus = "#140c0b" -theme.tasklist_fg_focus = "#d88166" -theme.menu_height = "16" -theme.menu_width = "140" - -theme.layout_txt_tile = "[t]" -theme.layout_txt_tileleft = "[l]" -theme.layout_txt_tilebottom = "[b]" -theme.layout_txt_tiletop = "[tt]" -theme.layout_txt_fairv = "[fv]" -theme.layout_txt_fairh = "[fh]" -theme.layout_txt_spiral = "[s]" -theme.layout_txt_dwindle = "[d]" -theme.layout_txt_max = "[m]" -theme.layout_txt_fullscreen = "[F]" -theme.layout_txt_magnifier = "[M]" -theme.layout_txt_floating = "[|]" - -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.tasklist_disable_icon = true -theme.tasklist_floating = "" -theme.tasklist_maximized_horizontal = "" -theme.tasklist_maximized_vertical = "" +local theme = {} +theme.zenburn_dir = require("awful.util").get_themes_dir() .. "zenburn" +theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/steamburn" +theme.wallpaper = theme.dir .. "/wall.png" +theme.font = "Misc Tamsyn 10.5" +theme.fg_normal = "#e2ccb0" +theme.fg_focus = "#d88166" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#140c0b" +theme.bg_focus = "#140c0b" +theme.bg_urgent = "#2a1f1e" +theme.border_width = 1 +theme.border_normal = "#302627" +theme.border_focus = "#c2745b" +theme.border_marked = "#CC9393" +theme.taglist_fg_focus = "#d88166" +theme.tasklist_bg_focus = "#140c0b" +theme.tasklist_fg_focus = "#d88166" +theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" +theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" +theme.menu_height = 16 +theme.menu_width = 140 +theme.awesome_icon = theme.dir .."/icons/awesome.png" +theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" +theme.layout_txt_tile = "[t]" +theme.layout_txt_tileleft = "[l]" +theme.layout_txt_tilebottom = "[b]" +theme.layout_txt_tiletop = "[tt]" +theme.layout_txt_fairv = "[fv]" +theme.layout_txt_fairh = "[fh]" +theme.layout_txt_spiral = "[s]" +theme.layout_txt_dwindle = "[d]" +theme.layout_txt_max = "[m]" +theme.layout_txt_fullscreen = "[F]" +theme.layout_txt_magnifier = "[M]" +theme.layout_txt_floating = "[|]" +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true +theme.useless_gap = 0 +theme.titlebar_close_button_normal = theme.zenburn_dir.."/titlebar/close_normal.png" +theme.titlebar_close_button_focus = theme.zenburn_dir.."/titlebar/close_focus.png" +theme.titlebar_minimize_button_normal = theme.zenburn_dir.."/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = theme.zenburn_dir.."/titlebar/minimize_focus.png" +theme.titlebar_ontop_button_normal_inactive = theme.zenburn_dir.."/titlebar/ontop_normal_inactive.png" +theme.titlebar_ontop_button_focus_inactive = theme.zenburn_dir.."/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_active = theme.zenburn_dir.."/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_active = theme.zenburn_dir.."/titlebar/ontop_focus_active.png" +theme.titlebar_sticky_button_normal_inactive = theme.zenburn_dir.."/titlebar/sticky_normal_inactive.png" +theme.titlebar_sticky_button_focus_inactive = theme.zenburn_dir.."/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_active = theme.zenburn_dir.."/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_active = theme.zenburn_dir.."/titlebar/sticky_focus_active.png" +theme.titlebar_floating_button_normal_inactive = theme.zenburn_dir.."/titlebar/floating_normal_inactive.png" +theme.titlebar_floating_button_focus_inactive = theme.zenburn_dir.."/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_active = theme.zenburn_dir.."/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_active = theme.zenburn_dir.."/titlebar/floating_focus_active.png" +theme.titlebar_maximized_button_normal_inactive = theme.zenburn_dir.."/titlebar/maximized_normal_inactive.png" +theme.titlebar_maximized_button_focus_inactive = theme.zenburn_dir.."/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_active = theme.zenburn_dir.."/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_active = theme.zenburn_dir.."/titlebar/maximized_focus_active.png" -- lain related -theme.layout_txt_termfair = "[termfair]" -theme.layout_txt_uselessfair = "[ufv]" -theme.layout_txt_uselessfairh = "[ufh]" -theme.layout_txt_uselessdwindle = "[ud]" -theme.layout_txt_uselesstile = "[ut]" +theme.layout_txt_termfair = "[termfair]" +theme.layout_txt_centerfair = "[centerfair]" + +local markup = lain.util.markup +local gray = "#94928F" + +-- Textclock +local mytextclock = wibox.widget.textclock(" %H:%M ") +mytextclock.font = theme.font + +-- Calendar +lain.widget.calendar({ + attach_to = { mytextclock }, + notification_preset = { + font = "Misc Tamsyn 11", + fg = theme.fg_normal, + bg = theme.bg_normal + } +}) + +--[[ Mail IMAP check +-- commented because it needs to be set before use +local mail = lain.widget.imap({ + timeout = 180, + server = "server", + mail = "mail", + password = "keyring get mail", + settings = function() + mail = "" + count = "" + + if mailcount > 0 then + mail = "Mail " + count = mailcount .. " " + end + + widget:set_markup(markup(gray, mail) .. count) + end +}) +--]] + +-- MPD +theme.mpd = lain.widget.mpd({ + settings = function() + artist = mpd_now.artist .. " " + title = mpd_now.title .. " " + + if mpd_now.state == "pause" then + artist = "mpd " + title = "paused " + elseif mpd_now.state == "stop" then + artist = "" + title = "" + end + + widget:set_markup(markup.font(theme.font, markup(gray, artist) .. title)) + end +}) + +-- CPU +local cpu = lain.widget.sysload({ + settings = function() + widget:set_markup(markup.font(theme.font, markup(gray, " Cpu ") .. load_1 .. " ")) + end +}) + +-- MEM +local mem = lain.widget.mem({ + settings = function() + widget:set_markup(markup.font(theme.font, markup(gray, " Mem ") .. mem_now.used .. " ")) + end +}) + +-- /home fs +theme.fs = lain.widget.fs({ + options = "--exclude-type=tmpfs", + partition = "/home", + notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Misc Tamsyn 10.5" }, +}) + +-- Battery +local bat = lain.widget.bat({ + settings = function() + bat_perc = bat_now.perc + if bat_now.ac_status == 1 then bat_perc = "Plug" end + widget:set_markup(markup.font(theme.font, markup(gray, " Bat ") .. bat_perc .. " ")) + end +}) + +-- Net checker +local net = lain.widget.net({ + settings = function() + if net_now.state == "up" then net_state = "On" + else net_state = "Off" end + widget:set_markup(markup.font(theme.font, markup(gray, " Net ") .. net_state .. " ")) + end +}) + +-- ALSA volume +theme.volume = lain.widget.alsa({ + settings = function() + header = " Vol " + vlevel = volume_now.level + + if volume_now.status == "off" then + vlevel = vlevel .. "M " + else + vlevel = vlevel .. " " + end + + widget:set_markup(markup.font(theme.font, markup(gray, header) .. vlevel)) + end +}) + +-- Weather +theme.weather = lain.widget.weather({ + city_id = 2643743, -- placeholder (London) +}) + +-- Separators +local first = wibox.widget.textbox(markup.font("Misc Tamsyn 4", " ")) +local spr = wibox.widget.textbox(' ') + +local function update_txt_layoutbox(s) + -- Writes a string representation of the current layout in a textbox widget + local txt_l = theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))] or "" + s.mytxtlayoutbox:set_text(txt_l) +end + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + + -- Textual layoutbox + s.mytxtlayoutbox = wibox.widget.textbox(theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))]) + awful.tag.attached_connect_signal(s, "property::selected", function () update_txt_layoutbox(s) end) + awful.tag.attached_connect_signal(s, "property::layout", function () update_txt_layoutbox(s) end) + s.mytxtlayoutbox:buttons(awful.util.table.join( + awful.button({}, 1, function() awful.layout.inc(1) 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 + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 18 }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + first, + s.mytaglist, + spr, + s.mytxtlayoutbox, + --spr, + s.mypromptbox, + spr, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.widget.systray(), + spr, + theme.mpd.widget, + --mail.widget, + cpu.widget, + mem.widget, + bat.widget, + net.widget, + theme.volume.widget, + mytextclock + }, + } +end return theme diff --git a/themes/steamburn/wall.png b/themes/steamburn/wall.png index 21efa45..638681c 100644 Binary files a/themes/steamburn/wall.png and b/themes/steamburn/wall.png differ diff --git a/themes/vertex/icons/awesome.png b/themes/vertex/icons/awesome.png new file mode 100644 index 0000000..7bb940d Binary files /dev/null and b/themes/vertex/icons/awesome.png differ diff --git a/themes/vertex/icons/bat-000-charging.png b/themes/vertex/icons/bat-000-charging.png new file mode 100644 index 0000000..f225aa1 Binary files /dev/null and b/themes/vertex/icons/bat-000-charging.png differ diff --git a/themes/vertex/icons/bat-000.png b/themes/vertex/icons/bat-000.png new file mode 100644 index 0000000..a87a68e Binary files /dev/null and b/themes/vertex/icons/bat-000.png differ diff --git a/themes/vertex/icons/bat-020-charging.png b/themes/vertex/icons/bat-020-charging.png new file mode 100644 index 0000000..30efa91 Binary files /dev/null and b/themes/vertex/icons/bat-020-charging.png differ diff --git a/themes/vertex/icons/bat-020.png b/themes/vertex/icons/bat-020.png new file mode 100644 index 0000000..40fdef5 Binary files /dev/null and b/themes/vertex/icons/bat-020.png differ diff --git a/themes/vertex/icons/bat-040-charging.png b/themes/vertex/icons/bat-040-charging.png new file mode 100644 index 0000000..0f3962a Binary files /dev/null and b/themes/vertex/icons/bat-040-charging.png differ diff --git a/themes/vertex/icons/bat-040.png b/themes/vertex/icons/bat-040.png new file mode 100644 index 0000000..6eb007d Binary files /dev/null and b/themes/vertex/icons/bat-040.png differ diff --git a/themes/vertex/icons/bat-060-charging.png b/themes/vertex/icons/bat-060-charging.png new file mode 100644 index 0000000..2a8e115 Binary files /dev/null and b/themes/vertex/icons/bat-060-charging.png differ diff --git a/themes/vertex/icons/bat-060.png b/themes/vertex/icons/bat-060.png new file mode 100644 index 0000000..5883885 Binary files /dev/null and b/themes/vertex/icons/bat-060.png differ diff --git a/themes/vertex/icons/bat-080-charging.png b/themes/vertex/icons/bat-080-charging.png new file mode 100644 index 0000000..225fa2e Binary files /dev/null and b/themes/vertex/icons/bat-080-charging.png differ diff --git a/themes/vertex/icons/bat-080.png b/themes/vertex/icons/bat-080.png new file mode 100644 index 0000000..d3fb971 Binary files /dev/null and b/themes/vertex/icons/bat-080.png differ diff --git a/themes/vertex/icons/bat-100-charging.png b/themes/vertex/icons/bat-100-charging.png new file mode 100644 index 0000000..03262cd Binary files /dev/null and b/themes/vertex/icons/bat-100-charging.png differ diff --git a/themes/vertex/icons/bat-100.png b/themes/vertex/icons/bat-100.png new file mode 100644 index 0000000..81831c8 Binary files /dev/null and b/themes/vertex/icons/bat-100.png differ diff --git a/themes/vertex/icons/bat-charged.png b/themes/vertex/icons/bat-charged.png new file mode 100644 index 0000000..3446740 Binary files /dev/null and b/themes/vertex/icons/bat-charged.png differ diff --git a/themes/vertex/icons/ethernet-connected.png b/themes/vertex/icons/ethernet-connected.png new file mode 100644 index 0000000..6c2c214 Binary files /dev/null and b/themes/vertex/icons/ethernet-connected.png differ diff --git a/themes/vertex/icons/ethernet-disconnected.png b/themes/vertex/icons/ethernet-disconnected.png new file mode 100644 index 0000000..9ce5d23 Binary files /dev/null and b/themes/vertex/icons/ethernet-disconnected.png differ diff --git a/themes/vertex/icons/panel.png b/themes/vertex/icons/panel.png new file mode 100644 index 0000000..2f429e5 Binary files /dev/null and b/themes/vertex/icons/panel.png differ diff --git a/themes/vertex/icons/square_sel.png b/themes/vertex/icons/square_sel.png new file mode 100644 index 0000000..c17eb50 Binary files /dev/null and b/themes/vertex/icons/square_sel.png differ diff --git a/themes/vertex/icons/square_unsel.png b/themes/vertex/icons/square_unsel.png new file mode 100644 index 0000000..f599d0b Binary files /dev/null and b/themes/vertex/icons/square_unsel.png differ diff --git a/themes/vertex/icons/volume-high.png b/themes/vertex/icons/volume-high.png new file mode 100644 index 0000000..a714794 Binary files /dev/null and b/themes/vertex/icons/volume-high.png differ diff --git a/themes/vertex/icons/volume-low.png b/themes/vertex/icons/volume-low.png new file mode 100644 index 0000000..3810a3a Binary files /dev/null and b/themes/vertex/icons/volume-low.png differ diff --git a/themes/vertex/icons/volume-medium.png b/themes/vertex/icons/volume-medium.png new file mode 100644 index 0000000..16f932b Binary files /dev/null and b/themes/vertex/icons/volume-medium.png differ diff --git a/themes/vertex/icons/volume-muted-blocked.png b/themes/vertex/icons/volume-muted-blocked.png new file mode 100644 index 0000000..5d049ce Binary files /dev/null and b/themes/vertex/icons/volume-muted-blocked.png differ diff --git a/themes/vertex/icons/volume-muted.png b/themes/vertex/icons/volume-muted.png new file mode 100644 index 0000000..b6b276b Binary files /dev/null and b/themes/vertex/icons/volume-muted.png differ diff --git a/themes/vertex/icons/volume-off.png b/themes/vertex/icons/volume-off.png new file mode 100644 index 0000000..8a6d8c5 Binary files /dev/null and b/themes/vertex/icons/volume-off.png differ diff --git a/themes/vertex/icons/wireless-disconnected.png b/themes/vertex/icons/wireless-disconnected.png new file mode 100644 index 0000000..8a2bc24 Binary files /dev/null and b/themes/vertex/icons/wireless-disconnected.png differ diff --git a/themes/vertex/icons/wireless-full.png b/themes/vertex/icons/wireless-full.png new file mode 100644 index 0000000..29d40a6 Binary files /dev/null and b/themes/vertex/icons/wireless-full.png differ diff --git a/themes/vertex/icons/wireless-high.png b/themes/vertex/icons/wireless-high.png new file mode 100644 index 0000000..b3622ec Binary files /dev/null and b/themes/vertex/icons/wireless-high.png differ diff --git a/themes/vertex/icons/wireless-low.png b/themes/vertex/icons/wireless-low.png new file mode 100644 index 0000000..1d06946 Binary files /dev/null and b/themes/vertex/icons/wireless-low.png differ diff --git a/themes/vertex/icons/wireless-medium.png b/themes/vertex/icons/wireless-medium.png new file mode 100644 index 0000000..6bd0ec5 Binary files /dev/null and b/themes/vertex/icons/wireless-medium.png differ diff --git a/themes/vertex/icons/wireless-none.png b/themes/vertex/icons/wireless-none.png new file mode 100644 index 0000000..0d43617 Binary files /dev/null and b/themes/vertex/icons/wireless-none.png differ diff --git a/themes/vertex/theme.lua b/themes/vertex/theme.lua new file mode 100644 index 0000000..7b5f6dc --- /dev/null +++ b/themes/vertex/theme.lua @@ -0,0 +1,461 @@ + +--[[ + + Vertex Awesome WM theme + github.com/copycat-killer + +--]] + +local gears = require("gears") +local lain = require("lain") +local awful = require("awful") +local wibox = require("wibox") +local math, string, tag, tonumber, type, os = math, string, tag, tonumber, type, os + +local theme = {} +theme.default_dir = require("awful.util").get_themes_dir() .. "default" +theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/vertex/icons" +theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/vertex/wall.png" +theme.font = "Roboto Bold 10" +theme.taglist_font = "FontAwesome 17" +theme.fg_normal = "#FFFFFF" +theme.fg_focus = "#6A95EB" +theme.bg_focus = "#303030" +theme.bg_normal = "#242424" +theme.fg_urgent = "#CC9393" +theme.bg_urgent = "#006B8E" +theme.border_width = 4 +theme.border_normal = "#252525" +theme.border_focus = "#7CA2EE" +theme.tooltip_border_color = theme.fg_focus +theme.tooltip_border_width = theme.border_width +theme.menu_height = 24 +theme.menu_width = 140 +theme.awesome_icon = theme.icon_dir .. "/awesome.png" +theme.taglist_squares_sel = theme.icon_dir .. "/square_sel.png" +theme.taglist_squares_unsel = theme.icon_dir .. "/square_unsel.png" +theme.panelbg = theme.icon_dir .. "/panel.png" +theme.bat000charging = theme.icon_dir .. "/bat-000-charging.png" +theme.bat000 = theme.icon_dir .. "/bat-000.png" +theme.bat020charging = theme.icon_dir .. "/bat-020-charging.png" +theme.bat020 = theme.icon_dir .. "/bat-020.png" +theme.bat040charging = theme.icon_dir .. "/bat-040-charging.png" +theme.bat040 = theme.icon_dir .. "/bat-040.png" +theme.bat060charging = theme.icon_dir .. "/bat-060-charging.png" +theme.bat060 = theme.icon_dir .. "/bat-060.png" +theme.bat080charging = theme.icon_dir .. "/bat-080-charging.png" +theme.bat080 = theme.icon_dir .. "/bat-080.png" +theme.bat100charging = theme.icon_dir .. "/bat-100-charging.png" +theme.bat100 = theme.icon_dir .. "/bat-100.png" +theme.batcharged = theme.icon_dir .. "/bat-charged.png" +theme.ethon = theme.icon_dir .. "/ethernet-connected.png" +theme.ethoff = theme.icon_dir .. "/ethernet-disconnected.png" +theme.volhigh = theme.icon_dir .. "/volume-high.png" +theme.vollow = theme.icon_dir .. "/volume-low.png" +theme.volmed = theme.icon_dir .. "/volume-medium.png" +theme.volmutedblocked = theme.icon_dir .. "/volume-muted-blocked.png" +theme.volmuted = theme.icon_dir .. "/volume-muted.png" +theme.voloff = theme.icon_dir .. "/volume-off.png" +theme.wifidisc = theme.icon_dir .. "/wireless-disconnected.png" +theme.wififull = theme.icon_dir .. "/wireless-full.png" +theme.wifihigh = theme.icon_dir .. "/wireless-high.png" +theme.wifilow = theme.icon_dir .. "/wireless-low.png" +theme.wifimed = theme.icon_dir .. "/wireless-medium.png" +theme.wifinone = theme.icon_dir .. "/wireless-none.png" +theme.layout_fairh = theme.default_dir.."/layouts/fairhw.png" +theme.layout_fairv = theme.default_dir.."/layouts/fairvw.png" +theme.layout_floating = theme.default_dir.."/layouts/floatingw.png" +theme.layout_magnifier = theme.default_dir.."/layouts/magnifierw.png" +theme.layout_max = theme.default_dir.."/layouts/maxw.png" +theme.layout_fullscreen = theme.default_dir.."/layouts/fullscreenw.png" +theme.layout_tilebottom = theme.default_dir.."/layouts/tilebottomw.png" +theme.layout_tileleft = theme.default_dir.."/layouts/tileleftw.png" +theme.layout_tile = theme.default_dir.."/layouts/tilew.png" +theme.layout_tiletop = theme.default_dir.."/layouts/tiletopw.png" +theme.layout_spiral = theme.default_dir.."/layouts/spiralw.png" +theme.layout_dwindle = theme.default_dir.."/layouts/dwindlew.png" +theme.layout_cornernw = theme.default_dir.."/layouts/cornernww.png" +theme.layout_cornerne = theme.default_dir.."/layouts/cornernew.png" +theme.layout_cornersw = theme.default_dir.."/layouts/cornersww.png" +theme.layout_cornerse = theme.default_dir.."/layouts/cornersew.png" +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true +theme.useless_gap = 10 +theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png" +theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png" +theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png" +theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png" +theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png" +theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png" +theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png" +theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png" +theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png" +theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png" +theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png" + +-- http://fontawesome.io/cheatsheet +awful.util.tagnames = { " ", " ", " ", " ", " ", " ", " ", " ", " " } + +local markup = lain.util.markup + +-- Clock +--os.setlocale(os.getenv("LANG")) -- to localize the clock +local mytextclock = wibox.widget.textclock(markup("#FFFFFF", "%a %d %b, %H:%M")) +mytextclock.font = theme.font +lain.widget.calendar({ + attach_to = { mytextclock }, + notification_preset = { + fg = "#FFFFFF", + bg = theme.bg_normal, + position = "top_middle", + font = "Monospace 10" + } +}) + +-- Battery +local baticon = wibox.widget.imagebox(theme.bat000) +local battooltip = awful.tooltip({ + objects = { baticon }, + margin_leftright = 15, + margin_topbottom = 12 +}) +battooltip.wibox.fg = theme.fg_normal +battooltip.textbox.font = theme.font +battooltip.timeout = 0 +battooltip:set_shape(function(cr, width, height) + gears.shape.infobubble(cr, width, height, corner_radius, arrow_size, width - 35) +end) +local bat = lain.widget.bat({ + settings = function() + local index, perc = "bat", tonumber(bat_now.perc) or 0 + + if perc <= 7 then + index = index .. "000" + elseif perc <= 20 then + index = index .. "020" + elseif perc <= 40 then + index = index .. "040" + elseif perc <= 60 then + index = index .. "060" + elseif perc <= 80 then + index = index .. "080" + elseif perc <= 100 then + index = index .. "100" + end + + if bat_now.ac_status == 1 then + index = index .. "charging" + end + + baticon:set_image(theme[index]) + battooltip:set_markup(string.format("\n%s%%, %s", bat_now.perc, bat_now.time)) + end +}) + +-- MPD +theme.mpd = lain.widget.mpd({ + music_dir = "/mnt/storage/Downloads/Music", + settings = function() + if mpd_now.state == "play" then + title = mpd_now.title + artist = " " .. mpd_now.artist .. " " + elseif mpd_now.state == "pause" then + title = "mpd " + artist = "paused " + else + title = "" + artist = "" + end + + widget:set_markup(markup.font(theme.font, title .. markup(theme.fg_focus, artist))) + end +}) + +-- ALSA volume +local volicon = wibox.widget.imagebox() +theme.volume = lain.widget.alsabar({ + --togglechannel = "IEC958,3", + notification_preset = { font = "Monospace 12", fg = theme.fg_normal }, + settings = function() + local index, perc = "", tonumber(volume_now.level) or 0 + + if volume_now.status == "off" then + index = "volmutedblocked" + else + if perc <= 5 then + index = "volmuted" + elseif perc <= 25 then + index = "vollow" + elseif perc <= 75 then + index = "volmed" + else + index = "volhigh" + end + end + + volicon:set_image(theme[index]) + end +}) +volicon:buttons(awful.util.table.join ( + awful.button({}, 1, function() + awful.spawn.with_shell(string.format("%s -e alsamixer", awful.util.terminal)) + end), + awful.button({}, 2, function() + awful.spawn(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel)) + theme.volume.notify() + end), + awful.button({}, 3, function() + awful.spawn(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel)) + theme.volume.notify() + end), + awful.button({}, 4, function() + awful.spawn(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel)) + theme.volume.notify() + end), + awful.button({}, 5, function() + awful.spawn(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel)) + theme.volume.notify() + end) +)) + +-- Wifi carrier and signal strength +local wificon = wibox.widget.imagebox() +local wifitooltip = awful.tooltip({ + objects = { wificon }, + margin_leftright = 15, + margin_topbottom = 15 +}) +wifitooltip.wibox.fg = theme.fg_normal +wifitooltip.textbox.font = theme.font +wifitooltip.timeout = 0 +wifitooltip:set_shape(function(cr, width, height) + gears.shape.infobubble(cr, width, height, corner_radius, arrow_size, width - 120) +end) +local mywifisig = lain.widget.watch({ + cmd = { awful.util.shell, "-c", "awk 'NR==3 {printf(\"%d-%.0f\\n\",$2, $3*10/7)}' /proc/net/wireless; iw dev wlan0 link" }, + settings = function() + local carrier, perc = output:match("(%d)-(%d+)") + local tiptext = output:gsub("(%d)-(%d+)", ""):gsub("%s+$", "") + + if carrier == "1" then + wificon:set_image(theme.wifidisc) + wifitooltip:set_markup("No carrier") + else + perc = tonumber(perc) + if perc <= 5 then + wificon:set_image(theme.wifinone) + elseif perc <= 25 then + wificon:set_image(theme.wifilow) + elseif perc <= 50 then + wificon:set_image(theme.wifimed) + elseif perc <= 75 then + wificon:set_image(theme.wifihigh) + else + wificon:set_image(theme.wififull) + end + wifitooltip:set_markup(tiptext) + end + end +}) +wificon:connect_signal("button::press", function() awful.spawn(string.format("%s -e wavemon", awful.util.terminal)) end) + +-- Weather +theme.weather = lain.widget.weather({ + city_id = 2643743, -- placeholder (London) + notification_preset = { font = "Monospace 10" }, + settings = function() + units = math.floor(weather_now["main"]["temp"]) + widget:set_markup(" " .. markup.font(theme.font, units .. "°C") .. " ") + end +}) + +-- Launcher +local mylauncher = awful.widget.button({image = theme.awesome_icon}) +mylauncher:connect_signal("button::press", function() awful.util.mymainmenu:toggle() end) + +-- Separators +local space = wibox.widget.textbox(" ") +local rspace1 = wibox.widget.textbox() +local rspace0 = wibox.widget.textbox() +local rspace2 = wibox.widget.textbox() +local rspace3 = wibox.widget.textbox() +local tspace1 = wibox.widget.textbox() +tspace1.forced_width = 18 +rspace1.forced_width = 16 +rspace0.forced_width = 18 +rspace2.forced_width = 19 +rspace3.forced_width = 21 + +local lspace1 = wibox.widget.textbox() +local lspace2 = wibox.widget.textbox() +local lspace3 = wibox.widget.textbox() +lspace1.forced_height = 18 +lspace2.forced_height = 10 +lspace3.forced_height = 16 + +local barcolor = gears.color({ + type = "linear", + from = { 0, 46 }, + to = { 46, 46 }, + stops = { {0, theme.bg_focus}, {0.9, "#457be7"} } +}) + +local barcolor2 = gears.color({ + type = "linear", + from = { 0, 46 }, + to = { 46, 46 }, + stops = { {0, "#323232"}, {1, theme.bg_normal} } +}) + +local dockshape = function(cr, width, height) + gears.shape.partially_rounded_rect(cr, width, height, false, true, true, false, 6) +end + +function theme.vertical_wibox(s) + -- Create the vertical wibox + s.dockheight = (40 * s.workarea.height)/100 + + s.myleftwibox = wibox({ screen = s, x=0, y=s.workarea.height/2 - s.dockheight/2, width = 6, height = s.dockheight, fg = theme.fg_normal, bg = barcolor2, ontop = true, visible = true, type = "dock" }) + + if s.index > 1 and s.myleftwibox.y == 0 then + s.myleftwibox.y = screen[1].myleftwibox.y + end + + -- Add widgets to the vertical wibox + s.myleftwibox:setup { + layout = wibox.layout.align.vertical, + { + layout = wibox.layout.fixed.vertical, + lspace1, + s.mytaglist, + lspace2, + s.layoutb, + wibox.container.margin(mylauncher, 5, 8, 13, 0), + }, + } + + -- Add toggling functionalities + s.docktimer = gears.timer{ timeout = 2 } + s.docktimer:connect_signal("timeout", function() + local s = awful.screen.focused() + s.myleftwibox.width = 6 + s.layoutb.visible = false + mylauncher.visible = false + if s.docktimer.started then + s.docktimer:stop() + end + end) + tag.connect_signal("property::selected", function(t) + local s = t.screen or awful.screen.focused() + s.myleftwibox.width = 46 + s.layoutb.visible = true + mylauncher.visible = true + gears.surface.apply_shape_bounding(s.myleftwibox, dockshape) + if not s.docktimer.started then + s.docktimer:start() + end + end) + + s.myleftwibox:connect_signal("mouse::leave", function() + local s = awful.screen.focused() + s.myleftwibox.width = 6 + s.layoutb.visible = false + mylauncher.visible = false + end) + + s.myleftwibox:connect_signal("mouse::enter", function() + local s = awful.screen.focused() + s.myleftwibox.width = 46 + s.layoutb.visible = true + mylauncher.visible = true + gears.surface.apply_shape_bounding(s.myleftwibox, dockshape) + end) +end + + +function theme.at_screen_connect(s) + -- Quake application + s.quake = lain.util.quake({ app = awful.util.terminal, border = theme.border_width }) + + -- If wallpaper is a function, call it with the screen + if type(theme.wallpaper) == "function" then + theme.wallpaper = theme.wallpaper(s) + end + gears.wallpaper.maximized(theme.wallpaper, s, true) + + -- Tags + awful.tag(awful.util.tagnames, s, awful.layout.layouts) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + s.mypromptbox.bg = "#00000000" + + -- Create an imagebox widget which will contains an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(awful.util.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) 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))) + s.layoutb = wibox.container.margin(s.mylayoutbox, 8, 11, 3, 3) + + -- Create a taglist widget + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons, { + font = theme.taglist_font, + shape = gears.shape.rectangle, + spacing = 10, + square_unsel = theme.square_unsel, + bg_focus = barcolor + }, nil, wibox.layout.fixed.vertical()) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.focused, awful.util.tasklist_buttons, { bg_focus = "#00000000" }) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s, height = 25, bg = gears.color.create_png_pattern(theme.panelbg) }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + s.mypromptbox, + tspace1, + wibox.container.constraint(s.mytasklist, "exact", s.workarea.width/2.6), + }, + { -- Middle widgets + layout = wibox.layout.flex.horizontal, + space, + mytextclock, + }, + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + wibox.container.constraint(wibox.widget { nil, nil, theme.mpd.widget, layout = wibox.layout.align.horizontal }, "exact", s.workarea.width/3), + rspace0, + theme.weather.icon, + theme.weather.widget, + rspace1, + wificon, + rspace0, + volicon, + rspace2, + baticon, + rspace3, + wibox.widget.systray(), + }, + } + + gears.timer.delayed_call(theme.vertical_wibox, s) +end + +return theme diff --git a/themes/vertex/wall.png b/themes/vertex/wall.png new file mode 100644 index 0000000..53ea95e Binary files /dev/null and b/themes/vertex/wall.png differ