diff --git a/dot.config/awesome/lain b/dot.config/awesome/lain new file mode 120000 index 0000000..db39c0b --- /dev/null +++ b/dot.config/awesome/lain @@ -0,0 +1 @@ +/home/nk/src/pkg/awesome/lain \ No newline at end of file diff --git a/dot.config/awesome/rc.lua b/dot.config/awesome/rc.lua new file mode 100644 index 0000000..4c6eb1a --- /dev/null +++ b/dot.config/awesome/rc.lua @@ -0,0 +1,553 @@ +-- Standard awesome library +local gears = require("gears") +local awful = require("awful") +require("awful.autofocus") +-- Widget and layout library +local wibox = require("wibox") +-- Theme handling library +local beautiful = require("beautiful") +-- Notification library +local naughty = require("naughty") +local menubar = require("menubar") +local hotkeys_popup = require("awful.hotkeys_popup").widget +-- Enable hotkeys help widget for VIM and other apps +-- when client with a matching name is opened: +require("awful.hotkeys_popup.keys") + +-- {{{ Error handling +-- Check if awesome encountered an error during startup and fell back to +-- another config (This code will only ever execute for the fallback config) +if awesome.startup_errors then + naughty.notify({ preset = naughty.config.presets.critical, + title = "Oops, there were errors during startup!", + text = awesome.startup_errors }) +end + +-- Handle runtime errors after startup +do + local in_error = false + awesome.connect_signal("debug::error", function (err) + -- Make sure we don't go into an endless error loop + 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 +-- }}} + +-- {{{ Variable definitions +-- Themes define colours, icons, font and wallpapers. +config_dir = ("/home/nk/.config/awesome/") +themes_dir = (config_dir .. "theme/") +beautiful.init(themes_dir .. "theme.lua") + +-- This is used later as the default terminal and editor to run. +terminal = "st" +editor = os.getenv("EDITOR") or "nano" +editor_cmd = terminal .. " -e " .. editor + +-- Default modkey. +modkey = "Mod4" -- aka windows key + +-- Table of layouts to cover with awful.layout.inc, order matters. +awful.layout.layouts = { + awful.layout.suit.tile, + awful.layout.suit.tile.bottom, + awful.layout.suit.fair, + awful.layout.suit.fair.horizontal, + awful.layout.suit.max.fullscreen, + awful.layout.suit.floating, +} +-- }}} + +-- {{{ Helper functions +local function client_menu_toggle_fn() + 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 +-- }}} + +-- {{{ Menu +-- Create a launcher widget and a main menu +myawesomemenu = { + { "hotkeys", function() return false, hotkeys_popup.show_help end}, + { "manual", terminal .. " -e man awesome" }, + { "edit config", editor_cmd .. " " .. awesome.conffile }, + { "restart", awesome.restart }, + { "quit", function() awesome.quit() end} +} + +mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon }, + { "open terminal", terminal } + } + }) + +mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, + menu = mymainmenu }) + +-- Menubar configuration +menubar.utils.terminal = terminal -- Set the terminal for applications that require it +-- }}} + +-- Keyboard map indicator and switcher +mykeyboardlayout = awful.widget.keyboardlayout() + +-- {{{ Wibar +-- Create a textclock widget +mytextclock = wibox.widget.textclock() + +-- Create a wibox for each screen and add it +local taglist_buttons = gears.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) + ) + +local tasklist_buttons = gears.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, client_menu_toggle_fn()), + awful.button({ }, 4, function () + awful.client.focus.byidx(1) + end), + awful.button({ }, 5, function () + awful.client.focus.byidx(-1) + end)) + +local function set_wallpaper(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 + +-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) +screen.connect_signal("property::geometry", set_wallpaper) + +local tags = { "𐄙", "𐄚", "𐄛", "𐄜", "𐄝", "𐄞", "𐄟", "𐄠", "𐄡", "𐄢" } + +awful.screen.connect_for_each_screen(function(s) + -- Wallpaper + set_wallpaper(s) + + -- Each screen has its own tag table. + awful.tag(tags, s, awful.layout.layouts[1]) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contain an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(gears.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, taglist_buttons) + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, tasklist_buttons) + + -- Create the wibox + s.mywibox = awful.wibar({ position = "top", screen = s }) + + -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + mylauncher, + s.mytaglist, + s.mypromptbox, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + mykeyboardlayout, + wibox.widget.systray(), + mytextclock, + s.mylayoutbox, + }, + } +end) +-- }}} + +-- {{{ Mouse bindings +root.buttons(gears.table.join( + awful.button({ }, 3, function () mymainmenu:toggle() end), + awful.button({ }, 4, awful.tag.viewnext), + awful.button({ }, 5, awful.tag.viewprev) +)) +-- }}} + +-- {{{ Key bindings +globalkeys = gears.table.join( + awful.key({ modkey, }, "s", hotkeys_popup.show_help, + {description="show help", group="awesome"}), + 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"}), + + awful.key({ modkey, }, "j", + function () + awful.client.focus.byidx( 1) + end, + {description = "focus next by index", group = "client"} + ), + awful.key({ modkey, }, "k", + function () + awful.client.focus.byidx(-1) + end, + {description = "focus previous by index", group = "client"} + ), + awful.key({ modkey, }, "w", function () 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"}), + + -- 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({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end, + {description = "increase master width factor", group = "layout"}), + awful.key({ modkey, }, "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"}), + + -- 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"}), + -- Menubar + awful.key({ modkey }, "p", function() menubar.show() end, + {description = "show the menubar", group = "launcher"}) +) + +clientkeys = gears.table.join( + 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 = "(un)maximize", group = "client"}), + awful.key({ modkey, "Control" }, "m", + function (c) + c.maximized_vertical = not c.maximized_vertical + c:raise() + end , + {description = "(un)maximize vertically", group = "client"}), + awful.key({ modkey, "Shift" }, "m", + function (c) + c.maximized_horizontal = not c.maximized_horizontal + c:raise() + end , + {description = "(un)maximize horizontally", group = "client"}) +) + +-- Bind all key numbers to tags. +-- Be careful: we use keycodes to make it work on any keyboard layout. +-- This should map on the top row of your keyboard, usually 1 to 9. +for i = 1, 9 do + globalkeys = gears.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 = gears.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 + } + }, + + -- Floating clients. + { rule_any = { + instance = { + "DTA", -- Firefox addon DownThemAll. + "copyq", -- Includes session name in class. + }, + class = { + "Arandr", + "Gpick", + "Kruler", + "MessageWin", -- kalarm. + "Sxiv", + "Wpa_gui", + "pinentry", + "veromix", + "xtightvncviewer"}, + + name = { + "Event Tester", -- xev. + }, + role = { + "AlarmWindow", -- Thunderbird's calendar. + "pop-up", -- e.g. Google Chrome's (detached) Developer Tools. + } + }, properties = { floating = true, titlebars_enabled = true }}, + + -- No titlebars to normal clients and dialogs + { rule_any = {type = { "normal", "dialog" } + }, properties = { titlebars_enabled = false } + }, + + { rule = { class = "st" }, + properties = { screen = 1, tag = tags[1] } }, + { rule = { class = "Firefox" }, + properties = { screen = 1, tag = tags[2] } }, + { rule = { class = "Chromium" }, + properties = { screen = 1, tag = tags[3] } }, +} +-- }}} + +-- {{{ 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) + -- buttons for the titlebar + local buttons = gears.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) : 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) + +client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) +client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) +-- }}} diff --git a/dot.config/awesome/theme b/dot.config/awesome/theme new file mode 120000 index 0000000..449a380 --- /dev/null +++ b/dot.config/awesome/theme @@ -0,0 +1 @@ +themes/zenburnish/ \ No newline at end of file diff --git a/dot.config/awesome/themes/powerarrow/icons/Mathematica_Icon.png b/dot.config/awesome/themes/powerarrow/icons/Mathematica_Icon.png new file mode 100644 index 0000000..87f4e8a Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/Mathematica_Icon.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/PeaZip.png b/dot.config/awesome/themes/powerarrow/icons/PeaZip.png new file mode 100644 index 0000000..67e9366 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/PeaZip.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/PyCharm_16.png b/dot.config/awesome/themes/powerarrow/icons/PyCharm_16.png new file mode 100644 index 0000000..607f2c3 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/PyCharm_16.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/SublimeText.png b/dot.config/awesome/themes/powerarrow/icons/SublimeText.png new file mode 100644 index 0000000..fe53a8f Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/SublimeText.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/SublimeText2old.png b/dot.config/awesome/themes/powerarrow/icons/SublimeText2old.png new file mode 100644 index 0000000..e2ce9b4 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/SublimeText2old.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/TeXworks.png b/dot.config/awesome/themes/powerarrow/icons/TeXworks.png new file mode 100644 index 0000000..ac4baf4 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/TeXworks.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/accept.png b/dot.config/awesome/themes/powerarrow/icons/accept.png new file mode 100644 index 0000000..05ab7b5 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/accept.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/accessories-calculator.png b/dot.config/awesome/themes/powerarrow/icons/accessories-calculator.png new file mode 100644 index 0000000..0da5452 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/accessories-calculator.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/acroread.png b/dot.config/awesome/themes/powerarrow/icons/acroread.png new file mode 100644 index 0000000..6a44a3b Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/acroread.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/activity_monitor.png b/dot.config/awesome/themes/powerarrow/icons/activity_monitor.png new file mode 100644 index 0000000..6710866 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/activity_monitor.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/add.png b/dot.config/awesome/themes/powerarrow/icons/add.png new file mode 100644 index 0000000..60a7a29 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/add.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/android.png b/dot.config/awesome/themes/powerarrow/icons/android.png new file mode 100644 index 0000000..4c6f541 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/android.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/android_hdpi.png b/dot.config/awesome/themes/powerarrow/icons/android_hdpi.png new file mode 100644 index 0000000..b1d5ba6 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/android_hdpi.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/anki.png b/dot.config/awesome/themes/powerarrow/icons/anki.png new file mode 100644 index 0000000..5700121 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/anki.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/applications_office.png b/dot.config/awesome/themes/powerarrow/icons/applications_office.png new file mode 100644 index 0000000..92d351e Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/applications_office.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/assembler_icon.png b/dot.config/awesome/themes/powerarrow/icons/assembler_icon.png new file mode 100644 index 0000000..cd273e8 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/assembler_icon.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/audacious.png b/dot.config/awesome/themes/powerarrow/icons/audacious.png new file mode 100644 index 0000000..0037b2b Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/audacious.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/books_brown.png b/dot.config/awesome/themes/powerarrow/icons/books_brown.png new file mode 100644 index 0000000..53c8676 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/books_brown.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/calendar4.png b/dot.config/awesome/themes/powerarrow/icons/calendar4.png new file mode 100644 index 0000000..358ad37 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/calendar4.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/cancel.png b/dot.config/awesome/themes/powerarrow/icons/cancel.png new file mode 100644 index 0000000..51951e6 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/cancel.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/celestia.png b/dot.config/awesome/themes/powerarrow/icons/celestia.png new file mode 100644 index 0000000..324ed4b Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/celestia.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/cherrytree.png b/dot.config/awesome/themes/powerarrow/icons/cherrytree.png new file mode 100644 index 0000000..aeea849 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/cherrytree.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/chromium.png b/dot.config/awesome/themes/powerarrow/icons/chromium.png new file mode 100644 index 0000000..5e7fc6b Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/chromium.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/creative_suite.png b/dot.config/awesome/themes/powerarrow/icons/creative_suite.png new file mode 100644 index 0000000..2b0689d Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/creative_suite.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/cupsprinter.png b/dot.config/awesome/themes/powerarrow/icons/cupsprinter.png new file mode 100644 index 0000000..911a262 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/cupsprinter.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/databases.png b/dot.config/awesome/themes/powerarrow/icons/databases.png new file mode 100644 index 0000000..1ef46e9 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/databases.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/deadbeef.png b/dot.config/awesome/themes/powerarrow/icons/deadbeef.png new file mode 100644 index 0000000..6e64aab Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/deadbeef.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/djvulibre-djview4.png b/dot.config/awesome/themes/powerarrow/icons/djvulibre-djview4.png new file mode 100644 index 0000000..141cc2f Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/djvulibre-djview4.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/dlang.png b/dot.config/awesome/themes/powerarrow/icons/dlang.png new file mode 100644 index 0000000..bc288a4 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/dlang.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/docsmenu.png b/dot.config/awesome/themes/powerarrow/icons/docsmenu.png new file mode 100644 index 0000000..ab3c54d Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/docsmenu.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/dropbox.png b/dot.config/awesome/themes/powerarrow/icons/dropbox.png new file mode 100644 index 0000000..9357b50 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/dropbox.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/dwb.png b/dot.config/awesome/themes/powerarrow/icons/dwb.png new file mode 100644 index 0000000..a119ada Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/dwb.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/eclipse.png b/dot.config/awesome/themes/powerarrow/icons/eclipse.png new file mode 100644 index 0000000..600213d Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/eclipse.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/emacs.png b/dot.config/awesome/themes/powerarrow/icons/emacs.png new file mode 100644 index 0000000..2d0b55e Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/emacs.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/emblem_multimedia.png b/dot.config/awesome/themes/powerarrow/icons/emblem_multimedia.png new file mode 100644 index 0000000..dde0955 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/emblem_multimedia.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/erlang.png b/dot.config/awesome/themes/powerarrow/icons/erlang.png new file mode 100644 index 0000000..2d0b819 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/erlang.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/file-manager.png b/dot.config/awesome/themes/powerarrow/icons/file-manager.png new file mode 100644 index 0000000..90552df Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/file-manager.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/filezilla.png b/dot.config/awesome/themes/powerarrow/icons/filezilla.png new file mode 100644 index 0000000..6e68bd1 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/filezilla.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/firefox.png b/dot.config/awesome/themes/powerarrow/icons/firefox.png new file mode 100644 index 0000000..6fb84e6 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/firefox.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/fontypython.png b/dot.config/awesome/themes/powerarrow/icons/fontypython.png new file mode 100644 index 0000000..f942721 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/fontypython.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/free42.png b/dot.config/awesome/themes/powerarrow/icons/free42.png new file mode 100644 index 0000000..834b0c4 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/free42.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/gajim.png b/dot.config/awesome/themes/powerarrow/icons/gajim.png new file mode 100644 index 0000000..9dac865 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/gajim.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/ghex.png b/dot.config/awesome/themes/powerarrow/icons/ghex.png new file mode 100644 index 0000000..01be13b Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/ghex.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/gimp.png b/dot.config/awesome/themes/powerarrow/icons/gimp.png new file mode 100644 index 0000000..2c1935f Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/gimp.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/gksu-root-terminal.png b/dot.config/awesome/themes/powerarrow/icons/gksu-root-terminal.png new file mode 100644 index 0000000..b21d8b0 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/gksu-root-terminal.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/gnome-terminal.png b/dot.config/awesome/themes/powerarrow/icons/gnome-terminal.png new file mode 100644 index 0000000..b356855 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/gnome-terminal.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/goldendict.png b/dot.config/awesome/themes/powerarrow/icons/goldendict.png new file mode 100644 index 0000000..96dcfad Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/goldendict.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/gparted.png b/dot.config/awesome/themes/powerarrow/icons/gparted.png new file mode 100644 index 0000000..ac99f09 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/gparted.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/gpick.png b/dot.config/awesome/themes/powerarrow/icons/gpick.png new file mode 100644 index 0000000..11e212d Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/gpick.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/graphics.png b/dot.config/awesome/themes/powerarrow/icons/graphics.png new file mode 100644 index 0000000..a7b86d4 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/graphics.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/gtk-recordmydesktop.png b/dot.config/awesome/themes/powerarrow/icons/gtk-recordmydesktop.png new file mode 100644 index 0000000..eee581f Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/gtk-recordmydesktop.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/gucharmap.png b/dot.config/awesome/themes/powerarrow/icons/gucharmap.png new file mode 100644 index 0000000..1a1fbaf Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/gucharmap.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/hammer_screwdriver.png b/dot.config/awesome/themes/powerarrow/icons/hammer_screwdriver.png new file mode 100644 index 0000000..b0d6062 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/hammer_screwdriver.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/html.png b/dot.config/awesome/themes/powerarrow/icons/html.png new file mode 100644 index 0000000..7ec46a5 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/html.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/icon.png b/dot.config/awesome/themes/powerarrow/icons/icon.png new file mode 100644 index 0000000..f6f384c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/icon.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/ideaCE.png b/dot.config/awesome/themes/powerarrow/icons/ideaCE.png new file mode 100644 index 0000000..3bbe293 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/ideaCE.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/ideaUE.png b/dot.config/awesome/themes/powerarrow/icons/ideaUE.png new file mode 100644 index 0000000..2080ca3 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/ideaUE.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/inkscape.png b/dot.config/awesome/themes/powerarrow/icons/inkscape.png new file mode 100644 index 0000000..e4aed92 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/inkscape.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/kchmviewer.png b/dot.config/awesome/themes/powerarrow/icons/kchmviewer.png new file mode 100644 index 0000000..8896943 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/kchmviewer.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/kdiff3.png b/dot.config/awesome/themes/powerarrow/icons/kdiff3.png new file mode 100644 index 0000000..f6a83b2 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/kdiff3.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/keyboard.png b/dot.config/awesome/themes/powerarrow/icons/keyboard.png new file mode 100644 index 0000000..501bcf6 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/keyboard.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/leafpad.png b/dot.config/awesome/themes/powerarrow/icons/leafpad.png new file mode 100644 index 0000000..71225d1 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/leafpad.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/libreoffice-base.png b/dot.config/awesome/themes/powerarrow/icons/libreoffice-base.png new file mode 100644 index 0000000..3465f32 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/libreoffice-base.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/libreoffice-calc.png b/dot.config/awesome/themes/powerarrow/icons/libreoffice-calc.png new file mode 100644 index 0000000..3f1f4ae Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/libreoffice-calc.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/libreoffice-draw.png b/dot.config/awesome/themes/powerarrow/icons/libreoffice-draw.png new file mode 100644 index 0000000..94bc2aa Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/libreoffice-draw.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/libreoffice-impress.png b/dot.config/awesome/themes/powerarrow/icons/libreoffice-impress.png new file mode 100644 index 0000000..75d94f0 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/libreoffice-impress.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/libreoffice-math.png b/dot.config/awesome/themes/powerarrow/icons/libreoffice-math.png new file mode 100644 index 0000000..17c9ffd Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/libreoffice-math.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/libreoffice-writer.png b/dot.config/awesome/themes/powerarrow/icons/libreoffice-writer.png new file mode 100644 index 0000000..1aacbb5 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/libreoffice-writer.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/linguist.png b/dot.config/awesome/themes/powerarrow/icons/linguist.png new file mode 100644 index 0000000..4f7c897 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/linguist.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/linux.png b/dot.config/awesome/themes/powerarrow/icons/linux.png new file mode 100644 index 0000000..7451bbf Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/linux.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/luakit.png b/dot.config/awesome/themes/powerarrow/icons/luakit.png new file mode 100644 index 0000000..3697901 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/luakit.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/meld.png b/dot.config/awesome/themes/powerarrow/icons/meld.png new file mode 100644 index 0000000..88c6cb4 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/meld.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/multiple_monitors.png b/dot.config/awesome/themes/powerarrow/icons/multiple_monitors.png new file mode 100644 index 0000000..5e5ab0f Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/multiple_monitors.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/nucleus24.png b/dot.config/awesome/themes/powerarrow/icons/nucleus24.png new file mode 100644 index 0000000..861ef62 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/nucleus24.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/nvidia-settings.png b/dot.config/awesome/themes/powerarrow/icons/nvidia-settings.png new file mode 100644 index 0000000..d670dac Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/nvidia-settings.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/opera.png b/dot.config/awesome/themes/powerarrow/icons/opera.png new file mode 100644 index 0000000..2e45fd3 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/opera.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/pgadmin3.png b/dot.config/awesome/themes/powerarrow/icons/pgadmin3.png new file mode 100644 index 0000000..8157c38 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/pgadmin3.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr0.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr0.png new file mode 100644 index 0000000..7e9a39a Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr0.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr1.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr1.png new file mode 100644 index 0000000..953e80e Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr1.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr2.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr2.png new file mode 100644 index 0000000..ae30d92 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr2.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr3.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr3.png new file mode 100644 index 0000000..d8d4631 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr3.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr4.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr4.png new file mode 100644 index 0000000..4b70245 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr4.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr5.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr5.png new file mode 100644 index 0000000..164699c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr5.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr6.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr6.png new file mode 100644 index 0000000..2a54879 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr6.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr7.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr7.png new file mode 100644 index 0000000..2f5a569 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr7.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr8.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr8.png new file mode 100644 index 0000000..40c7b2c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr8.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr9.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr9.png new file mode 100644 index 0000000..badb3fe Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arr9.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl.png new file mode 100644 index 0000000..3213526 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_dl.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_dl.png new file mode 100644 index 0000000..d243eec Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_dl.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_dl_sf.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_dl_sf.png new file mode 100644 index 0000000..34a71a8 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_dl_sf.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_ld.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_ld.png new file mode 100644 index 0000000..359fcdd Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_ld.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_ld_sf.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_ld_sf.png new file mode 100644 index 0000000..a28b7ab Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_ld_sf.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_sf.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_sf.png new file mode 100644 index 0000000..e188920 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrl_sf.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrone.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrone.png new file mode 100644 index 0000000..00ffe9c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/arrone.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/awesome-icon.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/awesome-icon.png new file mode 100644 index 0000000..4cabb6c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/awesome-icon.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/battery.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/battery.png new file mode 100644 index 0000000..38e3900 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/battery.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/cal.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/cal.png new file mode 100644 index 0000000..cc7cca5 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/cal.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/chat.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/chat.png new file mode 100644 index 0000000..e3494db Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/chat.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/clear.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/clear.png new file mode 100644 index 0000000..83e2258 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/clear.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/close_focus.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/close_focus.png new file mode 100644 index 0000000..e9b4179 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/close_focus.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/close_normal.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/close_normal.png new file mode 100644 index 0000000..cb0c3fa Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/close_normal.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/cpu.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/cpu.png new file mode 100644 index 0000000..b7f26a3 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/cpu.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/cpu_clear.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/cpu_clear.png new file mode 100644 index 0000000..c8b2fb7 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/cpu_clear.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/dict.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/dict.png new file mode 100644 index 0000000..ade96ff Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/dict.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/dict_clear.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/dict_clear.png new file mode 100644 index 0000000..80871b8 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/dict_clear.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating.png new file mode 100644 index 0000000..bc96a6a Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_focus_active.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_focus_active.png new file mode 100644 index 0000000..0f9ee0d Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_focus_active.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_focus_inactive.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_focus_inactive.png new file mode 100644 index 0000000..d254a73 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_focus_inactive.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_normal_active.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_normal_active.png new file mode 100644 index 0000000..c5ce3de Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_normal_active.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_normal_inactive.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_normal_inactive.png new file mode 100644 index 0000000..850b602 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floating_normal_inactive.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/floatingm.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floatingm.png new file mode 100644 index 0000000..e2a3548 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/floatingm.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/hdd.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/hdd.png new file mode 100644 index 0000000..17bdabd Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/hdd.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/hdd_clear.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/hdd_clear.png new file mode 100644 index 0000000..190921c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/hdd_clear.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/mail.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/mail.png new file mode 100644 index 0000000..bc557a5 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/mail.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_focus_active.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_focus_active.png new file mode 100644 index 0000000..7e8498a Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_focus_active.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_focus_inactive.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_focus_inactive.png new file mode 100644 index 0000000..f684470 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_focus_inactive.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_normal_active.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_normal_active.png new file mode 100644 index 0000000..4aa4196 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_normal_active.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_normal_inactive.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_normal_inactive.png new file mode 100644 index 0000000..bfe01a3 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/maximized_normal_inactive.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/mem.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/mem.png new file mode 100644 index 0000000..1e6306d Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/mem.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/music.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/music.png new file mode 100644 index 0000000..df47227 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/music.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/net.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/net.png new file mode 100644 index 0000000..7770d53 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/net.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_focus_active.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_focus_active.png new file mode 100644 index 0000000..86e61b7 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_focus_active.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_focus_inactive.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_focus_inactive.png new file mode 100644 index 0000000..286d439 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_focus_inactive.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_normal_active.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_normal_active.png new file mode 100644 index 0000000..fcee772 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_normal_active.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_normal_inactive.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_normal_inactive.png new file mode 100644 index 0000000..a628626 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/ontop_normal_inactive.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/scissors.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/scissors.png new file mode 100644 index 0000000..68bf003 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/scissors.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/square_sel.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/square_sel.png new file mode 100755 index 0000000..675b033 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/square_sel.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/square_unsel.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/square_unsel.png new file mode 100755 index 0000000..7561801 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/square_unsel.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_focus_active.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_focus_active.png new file mode 100644 index 0000000..b10e604 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_focus_active.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_focus_inactive.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_focus_inactive.png new file mode 100644 index 0000000..22d7453 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_focus_inactive.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_normal_active.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_normal_active.png new file mode 100644 index 0000000..aad079e Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_normal_active.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_normal_inactive.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_normal_inactive.png new file mode 100644 index 0000000..5f3e655 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/sticky_normal_inactive.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/submenu.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/submenu.png new file mode 100755 index 0000000..10ca014 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/submenu.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/task.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/task.png new file mode 100644 index 0000000..5d44909 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/task.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/temp.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/temp.png new file mode 100644 index 0000000..3d8392f Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/temp.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/tile.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/tile.png new file mode 100644 index 0000000..cbbebf1 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/tile.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/tilebottom.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/tilebottom.png new file mode 100644 index 0000000..5b79cf2 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/tilebottom.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/tileleft.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/tileleft.png new file mode 100644 index 0000000..74e4b8a Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/tileleft.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/powerarrow/tiletop.png b/dot.config/awesome/themes/powerarrow/icons/powerarrow/tiletop.png new file mode 100644 index 0000000..1669837 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/powerarrow/tiletop.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/processor.png b/dot.config/awesome/themes/powerarrow/icons/processor.png new file mode 100644 index 0000000..e6d4ebf Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/processor.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/project.png b/dot.config/awesome/themes/powerarrow/icons/project.png new file mode 100644 index 0000000..0e4313c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/project.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/projects.png b/dot.config/awesome/themes/powerarrow/icons/projects.png new file mode 100644 index 0000000..2408911 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/projects.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/qalculate.png b/dot.config/awesome/themes/powerarrow/icons/qalculate.png new file mode 100644 index 0000000..fdde4fc Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/qalculate.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/qbittorrent.png b/dot.config/awesome/themes/powerarrow/icons/qbittorrent.png new file mode 100644 index 0000000..cff0194 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/qbittorrent.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/qpdfview.png b/dot.config/awesome/themes/powerarrow/icons/qpdfview.png new file mode 100644 index 0000000..029bd08 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/qpdfview.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/qtassistant.png b/dot.config/awesome/themes/powerarrow/icons/qtassistant.png new file mode 100644 index 0000000..4f7c897 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/qtassistant.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/qtcreator.png b/dot.config/awesome/themes/powerarrow/icons/qtcreator.png new file mode 100644 index 0000000..4f7c897 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/qtcreator.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/quiterss.png b/dot.config/awesome/themes/powerarrow/icons/quiterss.png new file mode 100644 index 0000000..d85f0c8 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/quiterss.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/reboot.png b/dot.config/awesome/themes/powerarrow/icons/reboot.png new file mode 100644 index 0000000..aa1f46e Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/reboot.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/rosetta.png b/dot.config/awesome/themes/powerarrow/icons/rosetta.png new file mode 100644 index 0000000..425436c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/rosetta.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/ruby.png b/dot.config/awesome/themes/powerarrow/icons/ruby.png new file mode 100644 index 0000000..ade05e3 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/ruby.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/rubymine.png b/dot.config/awesome/themes/powerarrow/icons/rubymine.png new file mode 100644 index 0000000..070ae62 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/rubymine.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/safety_helmet.png b/dot.config/awesome/themes/powerarrow/icons/safety_helmet.png new file mode 100644 index 0000000..fc9f209 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/safety_helmet.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/scantailor.png b/dot.config/awesome/themes/powerarrow/icons/scantailor.png new file mode 100644 index 0000000..534e367 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/scantailor.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/screengrab.png b/dot.config/awesome/themes/powerarrow/icons/screengrab.png new file mode 100644 index 0000000..12d7f37 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/screengrab.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/shutdown.png b/dot.config/awesome/themes/powerarrow/icons/shutdown.png new file mode 100644 index 0000000..b4baadc Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/shutdown.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/sigil.png b/dot.config/awesome/themes/powerarrow/icons/sigil.png new file mode 100644 index 0000000..3e124e7 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/sigil.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/skype.png b/dot.config/awesome/themes/powerarrow/icons/skype.png new file mode 100644 index 0000000..af11c56 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/skype.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/stellarium.png b/dot.config/awesome/themes/powerarrow/icons/stellarium.png new file mode 100644 index 0000000..35e6501 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/stellarium.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/sun_java.png b/dot.config/awesome/themes/powerarrow/icons/sun_java.png new file mode 100644 index 0000000..1f0b6f1 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/sun_java.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/task.png b/dot.config/awesome/themes/powerarrow/icons/task.png new file mode 100644 index 0000000..737a379 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/task.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/task_done.png b/dot.config/awesome/themes/powerarrow/icons/task_done.png new file mode 100644 index 0000000..334e699 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/task_done.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/teamview.png b/dot.config/awesome/themes/powerarrow/icons/teamview.png new file mode 100644 index 0000000..d3690af Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/teamview.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/text-editor.png b/dot.config/awesome/themes/powerarrow/icons/text-editor.png new file mode 100644 index 0000000..5da4cea Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/text-editor.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/text-x-c++.png b/dot.config/awesome/themes/powerarrow/icons/text-x-c++.png new file mode 100644 index 0000000..47e8b1e Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/text-x-c++.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/text-x-c.png b/dot.config/awesome/themes/powerarrow/icons/text-x-c.png new file mode 100644 index 0000000..12adaa3 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/text-x-c.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/text-x-java.png b/dot.config/awesome/themes/powerarrow/icons/text-x-java.png new file mode 100644 index 0000000..63b8683 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/text-x-java.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/text-x-javascript.png b/dot.config/awesome/themes/powerarrow/icons/text-x-javascript.png new file mode 100644 index 0000000..af1a475 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/text-x-javascript.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/text-x-python.png b/dot.config/awesome/themes/powerarrow/icons/text-x-python.png new file mode 100644 index 0000000..0aaffd1 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/text-x-python.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/text-x-sql.png b/dot.config/awesome/themes/powerarrow/icons/text-x-sql.png new file mode 100644 index 0000000..b3b1467 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/text-x-sql.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/text-xml.png b/dot.config/awesome/themes/powerarrow/icons/text-xml.png new file mode 100644 index 0000000..83a83df Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/text-xml.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/thunderbird.png b/dot.config/awesome/themes/powerarrow/icons/thunderbird.png new file mode 100644 index 0000000..a42c87c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/thunderbird.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/tinymount.png b/dot.config/awesome/themes/powerarrow/icons/tinymount.png new file mode 100644 index 0000000..ff9705c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/tinymount.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/tkdiff.png b/dot.config/awesome/themes/powerarrow/icons/tkdiff.png new file mode 100644 index 0000000..f800bdf Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/tkdiff.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/tool_box.png b/dot.config/awesome/themes/powerarrow/icons/tool_box.png new file mode 100644 index 0000000..da93772 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/tool_box.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/transbinclock.png b/dot.config/awesome/themes/powerarrow/icons/transbinclock.png new file mode 100644 index 0000000..5cbe641 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/transbinclock.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/umplayer.png b/dot.config/awesome/themes/powerarrow/icons/umplayer.png new file mode 100644 index 0000000..7d4b507 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/umplayer.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/unetbootin.png b/dot.config/awesome/themes/powerarrow/icons/unetbootin.png new file mode 100644 index 0000000..d402c5f Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/unetbootin.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/usb.png b/dot.config/awesome/themes/powerarrow/icons/usb.png new file mode 100644 index 0000000..d99d184 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/usb.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/usb10.png b/dot.config/awesome/themes/powerarrow/icons/usb10.png new file mode 100644 index 0000000..beadbd4 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/usb10.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/vidalia_icon.png b/dot.config/awesome/themes/powerarrow/icons/vidalia_icon.png new file mode 100644 index 0000000..d41b504 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/vidalia_icon.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/virtualbox.png b/dot.config/awesome/themes/powerarrow/icons/virtualbox.png new file mode 100644 index 0000000..4413d2a Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/virtualbox.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/vlc.png b/dot.config/awesome/themes/powerarrow/icons/vlc.png new file mode 100644 index 0000000..aec7160 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/vlc.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/vym.png b/dot.config/awesome/themes/powerarrow/icons/vym.png new file mode 100644 index 0000000..92afbdf Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/vym.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/web.png b/dot.config/awesome/themes/powerarrow/icons/web.png new file mode 100644 index 0000000..c929052 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/web.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/weechat.png b/dot.config/awesome/themes/powerarrow/icons/weechat.png new file mode 100644 index 0000000..4fe3e8c Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/weechat.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/wicd.png b/dot.config/awesome/themes/powerarrow/icons/wicd.png new file mode 100644 index 0000000..5d946ff Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/wicd.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/windows.png b/dot.config/awesome/themes/powerarrow/icons/windows.png new file mode 100644 index 0000000..57baaac Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/windows.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/wmsmixer.png b/dot.config/awesome/themes/powerarrow/icons/wmsmixer.png new file mode 100644 index 0000000..91774d9 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/wmsmixer.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/xfburn.png b/dot.config/awesome/themes/powerarrow/icons/xfburn.png new file mode 100644 index 0000000..bd54ad2 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/xfburn.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/xfe-root.png b/dot.config/awesome/themes/powerarrow/icons/xfe-root.png new file mode 100644 index 0000000..19a8fea Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/xfe-root.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/xfe.png b/dot.config/awesome/themes/powerarrow/icons/xfe.png new file mode 100644 index 0000000..4fc4ae0 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/xfe.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/xfw.xpm b/dot.config/awesome/themes/powerarrow/icons/xfw.xpm new file mode 100644 index 0000000..57b4726 --- /dev/null +++ b/dot.config/awesome/themes/powerarrow/icons/xfw.xpm @@ -0,0 +1,379 @@ +/* XPM */ +static char * xfw_xpm[] = { +"32 32 344 2", +" c None", +". c #070906", +"+ c #4B4C4B", +"@ c #545553", +"# c #4C4E4C", +"$ c #494B49", +"% c #484A48", +"& c #484B48", +"* c #454545", +"= c #454645", +"- c #40413E", +"; c #40413F", +"> c #3B3C3B", +", c #36353A", +"' c #414241", +") c #1B1B1B", +"! c #000000", +"~ c #121312", +"{ c #FDFFFA", +"] c #FFFFFF", +"^ c #C9C8CA", +"/ c #424342", +"( c #0C0D0C", +"_ c #F8FAF7", +": c #F2F4F1", +"< c #EDEFEC", +"[ c #ECEEEB", +"} c #E9EBE8", +"| c #EEF0EC", +"1 c #EEF0ED", +"2 c #EAECE9", +"3 c #E9ECE8", +"4 c #F1EEF2", +"5 c #414342", +"6 c #05050B", +"7 c #080908", +"8 c #DFE3DE", +"9 c #DADED9", +"0 c #D9DCD8", +"a c #D9DDD8", +"b c #DADDD9", +"c c #D8DAD7", +"d c #D9DBD8", +"e c #D4D6D3", +"f c #D3D5D2", +"g c #E3E5E2", +"h c #E6E3E8", +"i c #505151", +"j c #060706", +"k c #EFF1EE", +"l c #DBDFDA", +"m c #DCDEDB", +"n c #D5D8D4", +"o c #D5D9D4", +"p c #D5D6D4", +"q c #D5D7D4", +"r c #CFD1CE", +"s c #D0D2CF", +"t c #CED0CD", +"u c #DFE1DE", +"v c #FBFDFC", +"w c #C6C9C8", +"x c #E1E4E3", +"y c #E4E6E4", +"z c #D9DBDB", +"A c #3D3E3C", +"B c #FDFEFB", +"C c #E0E2DF", +"D c #DADCD9", +"E c #DADBD9", +"F c #D2D4D2", +"G c #E3E5E4", +"H c #F8FCFD", +"I c #96979C", +"J c #9FA1A9", +"K c #B3B4B7", +"L c #B5B5B7", +"M c #5D5E5F", +"N c #FEFFFF", +"O c #B9BDB9", +"P c #88854C", +"Q c #897D4C", +"R c #D4D8D0", +"S c #7B7E7E", +"T c #EEF1ED", +"U c #E7E9E5", +"V c #E2E4DF", +"W c #E1E2DE", +"X c #E1E3DF", +"Y c #DEE0DE", +"Z c #D9DBD9", +"` c #F5F7F7", +" . c #E6EAF1", +".. c #BCB373", +"+. c #E7D362", +"@. c #D0B037", +"#. c #999264", +"$. c #FDFFFF", +"%. c #7F8281", +"&. c #FBFDFA", +"*. c #D6D9D5", +"=. c #CBCDC9", +"-. c #D2D5D3", +";. c #FAFCFD", +">. c #BBBDB7", +",. c #CFC762", +"'. c #CEB043", +"). c #C2A84A", +"!. c #908556", +"~. c #EFF3F7", +"{. c #7D8180", +"]. c #FEFFFC", +"^. c #DCDFDB", +"/. c #DBDDDA", +"(. c #DBDDDB", +"_. c #D6DAD5", +":. c #D4D6D4", +"<. c #D3D5D3", +"[. c #DEE1E0", +"}. c #F1F5FD", +"|. c #A3A26E", +"1. c #E6D560", +"2. c #CEB146", +"3. c #9F8836", +"4. c #8E8F86", +"5. c #777A7B", +"6. c #FBFEFA", +"7. c #CFD2CF", +"8. c #F5F8F9", +"9. c #B7BDBD", +"0. c #D8D06B", +"a. c #D6BC52", +"b. c #BFA340", +"c. c #82753E", +"d. c #D9DDE4", +"e. c #767979", +"f. c #050605", +"g. c #F6F8F5", +"h. c #CED0CE", +"i. c #CCCECA", +"j. c #C9CBC8", +"k. c #D5D9D7", +"l. c #FBFEFF", +"m. c #F1F5FB", +"n. c #ADAD7E", +"o. c #E4D165", +"p. c #C9A93C", +"q. c #B19C4B", +"r. c #79735F", +"s. c #757777", +"t. c #F0F2EF", +"u. c #EFF2EF", +"v. c #EDEEEB", +"w. c #EEEEEB", +"x. c #EBEDEA", +"y. c #EAECEA", +"z. c #F0F2F1", +"A. c #C0C2BF", +"B. c #C6BC53", +"C. c #D5B94D", +"D. c #CDAF43", +"E. c #746222", +"F. c #BEBFC0", +"G. c #747675", +"H. c #FCFEFB", +"I. c #F5F7F4", +"J. c #F1F3F0", +"K. c #F0F3F0", +"L. c #FBFDFD", +"M. c #F0F3F5", +"N. c #A19F6F", +"O. c #F3E482", +"P. c #CBAC3D", +"Q. c #AC9136", +"R. c #817951", +"S. c #E3E8ED", +"T. c #737574", +"U. c #EFF2EE", +"V. c #D2D4D0", +"W. c #CDCFCA", +"X. c #CDCFCB", +"Y. c #CACCC9", +"Z. c #C9CCC9", +"`. c #C6C7C4", +" + c #C6C7C5", +".+ c #EEEFED", +"++ c #E3E6E6", +"@+ c #9D9E80", +"#+ c #FEF9E1", +"$+ c #97853D", +"%+ c #88877D", +"&+ c #727473", +"*+ c #F6F9F5", +"=+ c #D6D8D5", +"-+ c #D1D3D0", +";+ c #D0D2D0", +">+ c #CFD1CF", +",+ c #CFD1D0", +"'+ c #BDBDAF", +")+ c #8D8666", +"!+ c #D2D5D7", +"~+ c #727472", +"{+ c #FCFFFB", +"]+ c #D8DBD7", +"^+ c #D7D9D6", +"/+ c #F1F4F1", +"(+ c #C2C4C3", +"_+ c #D2D5D4", +":+ c #D5D8C5", +"<+ c #8B8D89", +"[+ c #F7FAF9", +"}+ c #F9FCFB", +"|+ c #717472", +"1+ c #F7F9F6", +"2+ c #CCCECB", +"3+ c #CBCDCA", +"4+ c #CBCDCB", +"5+ c #F7F9F7", +"6+ c #AEAFAE", +"7+ c #747475", +"8+ c #C4C3C4", +"9+ c #767875", +"0+ c #DEE0DF", +"a+ c #FBFDFB", +"b+ c #F8FAF8", +"c+ c #050604", +"d+ c #DEE0DD", +"e+ c #DDDFDC", +"f+ c #E6E8E5", +"g+ c #FEFFFD", +"h+ c #9B9D9A", +"i+ c #3A3939", +"j+ c #E1E3E1", +"k+ c #FDFFFD", +"l+ c #F4F6F4", +"m+ c #F4F6F1", +"n+ c #CFD1CD", +"o+ c #CDCFCC", +"p+ c #D0D2CE", +"q+ c #D2D4D1", +"r+ c #8B8C8B", +"s+ c #3B3B3A", +"t+ c #D0D1CD", +"u+ c #F4F6F3", +"v+ c #FFFFFE", +"w+ c #050603", +"x+ c #FDFFFC", +"y+ c #F9FBF8", +"z+ c #FCFEFA", +"A+ c #040503", +"B+ c #AAA9AB", +"C+ c #929696", +"D+ c #ECEEEA", +"E+ c #F7F9F5", +"F+ c #9B9C9E", +"G+ c #6A696A", +"H+ c #6D6C6D", +"I+ c #CACAC9", +"J+ c #FBFCF9", +"K+ c #F8F9F5", +"L+ c #D1D4D0", +"M+ c #FAFCF9", +"N+ c #5E5E60", +"O+ c #1E1E1E", +"P+ c #5A5D5B", +"Q+ c #303330", +"R+ c #F5F8F4", +"S+ c #40403F", +"T+ c #595B59", +"U+ c #A1A1A0", +"V+ c #5C5E5C", +"W+ c #88898A", +"X+ c #AAAAAC", +"Y+ c #717070", +"Z+ c #0F0D12", +"`+ c #2F302F", +" @ c #6B6C71", +".@ c #DADAD7", +"+@ c #0D0D0E", +"@@ c #757477", +"#@ c #646365", +"$@ c #9E9E9D", +"%@ c #A9ABA8", +"&@ c #D3D2D1", +"*@ c #BABBB9", +"=@ c #4C4D4E", +"-@ c #CFD0CC", +";@ c #737573", +">@ c #070806", +",@ c #F8FAF6", +"'@ c #545555", +")@ c #121313", +"!@ c #A5A5A4", +"~@ c #1F1F23", +"{@ c #DADBD8", +"]@ c #676966", +"^@ c #6F6E70", +"/@ c #676967", +"(@ c #0B090A", +"_@ c #626562", +":@ c #777679", +"<@ c #757775", +"[@ c #0C0D0A", +"}@ c #747679", +"|@ c #C5C7C7", +"1@ c #C7C9C8", +"2@ c #6D6D70", +"3@ c #C4C5C3", +"4@ c #75777B", +"5@ c #CACBCA", +"6@ c #2A2A2F", +"7@ c #D0D1D0", +"8@ c #818181", +"9@ c #656265", +"0@ c #7B7D7B", +"a@ c #0E0F0E", +"b@ c #E1E2E1", +"c@ c #E1E1E0", +"d@ c #CDCDCB", +"e@ c #EEEFEB", +"f@ c #C5C5C7", +"g@ c #FAFDF9", +"h@ c #F0F0ED", +"i@ c #F9FCF8", +"j@ c #F7FBF6", +"k@ c #F7FAF6", +"l@ c #FBFEF9", +"m@ c #828582", +"n@ c #2D2B2B", +"o@ c #353735", +"p@ c #353634", +"q@ c #343432", +"r@ c #303230", +"s@ c #343532", +"t@ c #333432", +"u@ c #292A2B", +"v@ c #2D2F2D", +"w@ c #2E302E", +"x@ c #343533", +"y@ c #323532", +"z@ c #313331", +"A@ c #2F312F", +"B@ c #3B3C3A", +"C@ c #262626", +" ", +" ", +" . + @ # $ % & * = = = - ; > > > > > > , ' ) ! ", +" ~ { ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ^ / ", +" ( _ ] : < [ [ < } } | 1 2 2 2 2 3 } : ] ] 4 ] 5 6 ", +" 7 : ] 8 9 0 a b c d d e e e e e f f g ] ] h ] ] i ", +" j k ] l m n n o e e p q q r s r r t u ] v w x y z A ", +" j 1 B C D d E D D D D n n n o n f F G ] H I J K L M ", +" j 1 ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] N ] ] O P Q R ] S ", +" j T ] U V W X X X Y u V u u D D Z ` ] ...+.@.#.$.%. ", +" j k &.D *.n n e e r r r r r =.=.-.;.] >.,.'.).!.~.{. ", +" j k ].^.m /.(.*.*._.q q q q :.<.[.] }.|.1.2.3.4.] 5. ", +" j k 6.D q e q q q 7.s s s r r :.8.] 9.0.a.b.c.d.] e. ", +" f.k g.q r h.r r r r r s r i.j.k.l.m.n.o.p.q.r.] ] s. ", +" f.k ] g.t.u.t.v.v.w.w.x.x.2 y.z.] A.B.C.D.E.F.] ] G. ", +" f.k ] H.g.I.t.g.t.t.J.K.t.v.t.L.M.N.O.P.Q.R.S.] ] T. ", +" f.U.g.V.s r W.X.X.Y.Y.Y.Z.`. +.+++@+] #+$+%+] ] ] &+ ", +" f.t.*+=+-+s ;+-+-+-+-+;+7.i.>+] ,+'+] ] )+!+] ] ] ~+ ", +" f.t.{+m 0 ]+]+^+^+^+^+=+s q /+] (+_+] :+<+[+}+] ] |+ ", +" f.t.1+-+2+3+4+2+2+2+3+3+Y.q 5+] 6+7+8+9+0+a+b+] ] |+ ", +" c+t.] g d+e+e+d+d+d+d+e+m f+g+] h+! i+j+k+l+g.g+] ~+ ", +" c+U.m+-+n+2+o+o+o+o+p+o+q+g+] ] r+s+t+] _ u+g.v+] ~+ ", +" w+3 ] _ &.&.1+1+x+_ _ x+g+] v+] C j.] g+y+z+1+g+] ~+ ", +" A+} ] ] =+B+] ] C+D+E+F+G+F+] H+I+] J+K+g.L+M+v+] ~+ ", +" A+3 ] ] N+O+] P+Q+R+S+T+3+e+T ! U+] V+W+X+Y+] ] ] ~+ ", +" c+2 ] ] m Z+`+ @y+.@+@@@#@$@g.! %@&@! *@=@-@g+] ] ;@ ", +" >@1 ] ] ,@'@)@q ] !@~@{@1 : ] ]@^@/@(@_@:@] H.] ] <@ ", +" [@M+] ] }@|@1@2@] 3@4@] ] ] ] 5@6@7@8@9@M+] ] ] ] 0@ ", +" a@b@] c@d@] ] e@] c@f@v+].x+v+g@h@] i@1+] j@k@l@] m@ ", +" ! n@o@p@q@r@r@Q+r@s@t@u@v@v@w@r@x@y@y@z@A@v@v@r@B@C@ ", +" ", +" "}; diff --git a/dot.config/awesome/themes/powerarrow/icons/xmag.png b/dot.config/awesome/themes/powerarrow/icons/xmag.png new file mode 100644 index 0000000..6fe311b Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/xmag.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/xmind.png b/dot.config/awesome/themes/powerarrow/icons/xmind.png new file mode 100644 index 0000000..2848087 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/xmind.png differ diff --git a/dot.config/awesome/themes/powerarrow/icons/xnview_2.png b/dot.config/awesome/themes/powerarrow/icons/xnview_2.png new file mode 100644 index 0000000..26f1174 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/icons/xnview_2.png differ diff --git a/dot.config/awesome/themes/powerarrow/theme.lua b/dot.config/awesome/themes/powerarrow/theme.lua new file mode 100644 index 0000000..4f608eb --- /dev/null +++ b/dot.config/awesome/themes/powerarrow/theme.lua @@ -0,0 +1,283 @@ + --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- +--{{ Awesome Powerarrow theme by Rom Ockee - based on Awesome Zenburn and Need_Aspirin themes }}--- + --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- + +green = "#7fb219" +cyan = "#7f4de6" +red = "#e04613" +lblue = "#6c9eab" +dblue = "#00ccff" +black = "#3f3f3f" +lgrey = "#d2d2d2" +dgrey = "#333333" +white = "#ffffff" + +theme = {} + +theme.wallpaper_cmd = { "awsetbg /home/nk/Wallpapers/a5c0f8fc5c87c495638cceca4f52a274.png" } + +-- theme.font = "Terminus 9" +theme.font = "monofur for powerline 12" +theme.fg_normal = "#AAAAAA" +theme.fg_focus = "#F0DFAF" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#222222" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +theme.border_width = "0" +theme.border_normal = "#3F3F3F" +theme.border_focus = "#6F6F6F" +theme.border_marked = "#CC9393" +theme.titlebar_bg_focus = "#3F3F3F" +theme.titlebar_bg_normal = "#3F3F3F" +theme.binclock_bg = "#777e76" +theme.binclock_fga = "#CCCCCC" +theme.binclock_fgi = "#444444" +-- theme.taglist_bg_focus = black +theme.taglist_fg_focus = dblue +theme.tasklist_bg_focus = "#222222" +theme.tasklist_fg_focus = dblue +theme.textbox_widget_as_label_font_color = white +theme.textbox_widget_margin_top = 1 +theme.text_font_color_1 = green +theme.text_font_color_2 = dblue +theme.text_font_color_3 = white +theme.notify_font_color_1 = green +theme.notify_font_color_2 = dblue +theme.notify_font_color_3 = black +theme.notify_font_color_4 = white +theme.notify_font = "monofur for powerline 14" +theme.notify_fg = theme.fg_normal +theme.notify_bg = theme.bg_normal +theme.notify_border = theme.border_focus +theme.awful_widget_bckgrd_color = dgrey +theme.awful_widget_border_color = dgrey +theme.awful_widget_color = dblue +theme.awful_widget_gradien_color_1 = orange +theme.awful_widget_gradien_color_2 = orange +theme.awful_widget_gradien_color_3 = orange +theme.awful_widget_height = 14 +theme.awful_widget_margin_top = 2 + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- [taglist|tasklist]_[bg|fg]_[focus|urgent] +-- titlebar_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- Example: +-- theme.taglist_bg_focus = "#CC9393" +-- }}} + +-- {{{ Widgets +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +-- theme.fg_widget = "#AECF96" +-- theme.fg_center_widget = "#88A175" +-- theme.fg_end_widget = "#FF5656" +-- theme.bg_widget = "#494B4F" +-- theme.border_widget = "#3F3F3F" + +theme.mouse_finder_color = "#CC9393" +-- mouse_finder_[timeout|animate_timeout|radius|factor] + +-- theme.menu_bg_normal = "" +-- theme.menu_bg_focus = "" +-- theme.menu_fg_normal = "" +-- theme.menu_fg_focus = "" +-- theme.menu_border_color = "" +-- theme.menu_border_width = "" +theme.menu_height = "16" +theme.menu_width = "140" + +--{{--- Theme icons ------------------------------------------------------------------------------------------ + +theme.awesome_icon = themes_dir .. "icons/powerarrow/awesome-icon.png" +theme.clear_icon = themes_dir .. "icons/powerarrow/clear.png" +-- theme.clear_icon = themes_dir .. "icons/powerarrow/llauncher.png" +theme.menu_submenu_icon = themes_dir .. "icons/powerarrow/submenu.png" +theme.tasklist_floating_icon = themes_dir .. "icons/powerarrow/floatingm.png" +theme.titlebar_close_button_focus = themes_dir .. "icons/powerarrow/close_focus.png" +theme.titlebar_close_button_normal = themes_dir .. "icons/powerarrow/close_normal.png" +theme.titlebar_ontop_button_focus_active = themes_dir .. "icons/powerarrow/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = themes_dir .. "icons/powerarrow/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = themes_dir .. "icons/powerarrow/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = themes_dir .. "icons/powerarrow/ontop_normal_inactive.png" +theme.titlebar_sticky_button_focus_active = themes_dir .. "icons/powerarrow/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = themes_dir .. "icons/powerarrow/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = themes_dir .. "icons/powerarrow/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = themes_dir .. "icons/powerarrow/sticky_normal_inactive.png" +theme.titlebar_floating_button_focus_active = themes_dir .. "icons/powerarrow/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = themes_dir .. "icons/powerarrow/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = themes_dir .. "icons/powerarrow/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = themes_dir .. "icons/powerarrow/floating_normal_inactive.png" +theme.titlebar_maximized_button_focus_active = themes_dir .. "icons/powerarrow/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = themes_dir .. "icons/powerarrow/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = themes_dir .. "icons/powerarrow/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = themes_dir .. "icons/powerarrow/maximized_normal_inactive.png" +theme.taglist_squares_sel = themes_dir .. "icons/powerarrow/square_sel.png" +theme.taglist_squares_unsel = themes_dir .. "icons/powerarrow/square_unsel.png" +theme.layout_floating = themes_dir .. "icons/powerarrow/floating.png" +theme.layout_tile = themes_dir .. "icons/powerarrow/tile.png" +theme.layout_tileleft = themes_dir .. "icons/powerarrow/tileleft.png" +theme.layout_tilebottom = themes_dir .. "icons/powerarrow/tilebottom.png" +theme.layout_tiletop = themes_dir .. "icons/powerarrow/tiletop.png" +theme.widget_battery = themes_dir .. "icons/powerarrow/battery.png" +theme.widget_mem = themes_dir .. "icons/powerarrow/mem.png" +theme.widget_cpu = themes_dir .. "icons/powerarrow/cpu.png" +theme.widget_temp = themes_dir .. "icons/powerarrow/temp.png" +theme.widget_net = themes_dir .. "icons/powerarrow/net.png" +theme.widget_hdd = themes_dir .. "icons/powerarrow/hdd.png" +theme.widget_music = themes_dir .. "icons/powerarrow/music.png" +theme.widget_task = themes_dir .. "icons/powerarrow/task.png" +theme.widget_mail = themes_dir .. "icons/powerarrow/mail.png" +theme.arr1 = themes_dir .. "icons/powerarrow/arr1.png" +theme.arr2 = themes_dir .. "icons/powerarrow/arr2.png" +theme.arr3 = themes_dir .. "icons/powerarrow/arr3.png" +theme.arr4 = themes_dir .. "icons/powerarrow/arr4.png" +theme.arr5 = themes_dir .. "icons/powerarrow/arr5.png" +theme.arr6 = themes_dir .. "icons/powerarrow/arr6.png" +theme.arr7 = themes_dir .. "icons/powerarrow/arr7.png" +theme.arr8 = themes_dir .. "icons/powerarrow/arr8.png" +theme.arr9 = themes_dir .. "icons/powerarrow/arr9.png" +theme.arr0 = themes_dir .. "icons/powerarrow/arr0.png" + +--{{--- User icons ------------------------------------------------------------------------------------------ + +theme.goldendict_icon = themes_dir .. "icons/goldendict.png" +theme.books_icon = themes_dir .. "icons/books_brown.png" +theme.xfe_icon = themes_dir .. "icons/xfe.png" +theme.xferoot_icon = themes_dir .. "icons/xfe-root.png" +theme.htop_icon = themes_dir .. "icons/activity_monitor.png" +theme.audacious_icon = themes_dir .. "icons/audacious.png" +theme.deadbeef_icon = themes_dir .. "icons/deadbeef.png" +theme.vlc_icon = themes_dir .. "icons/vlc.png" +theme.xfburn_icon = themes_dir .. "icons/xfburn.png" +theme.myedu_icon = themes_dir .. "icons/nucleus24.png" +theme.ideaCE_icon = themes_dir .. "icons/ideaCE.png" +theme.ideaUE_icon = themes_dir .. "icons/ideaUE.png" +theme.pycharm_icon = themes_dir .. "icons/PyCharm_16.png" +theme.emacs_icon = themes_dir .. "icons/emacs.png" +theme.sublime_icon = themes_dir .. "icons/SublimeText2old.png" +theme.eclipse_icon = themes_dir .. "icons/eclipse.png" +theme.galculator_icon = themes_dir .. "icons/accessories-calculator.png" +theme.spacefm_icon = themes_dir .. "icons/file-manager.png" +theme.gedit_icon = themes_dir .. "icons/text-editor.png" +theme.terminal_icon = themes_dir .. "icons/gnome-terminal.png" +theme.terminalroot_icon = themes_dir .. "icons/gksu-root-terminal.png" +theme.system_icon = themes_dir .. "icons/processor.png" +theme.android_icon = themes_dir .. "icons/android_hdpi.png" +theme.gcolor_icon = themes_dir .. "icons/icon.png" +theme.gimp_icon = themes_dir .. "icons/gimp.png" +theme.inkscape_icon = themes_dir .. "icons/inkscape.png" +theme.recordmydesktop_icon = themes_dir .. "icons/gtk-recordmydesktop.png" +theme.screengrab_icon = themes_dir .. "icons/screengrab.png" +theme.xmag_icon = themes_dir .. "icons/xmag.png" +theme.mydevmenu_icon = themes_dir .. "icons/safety_helmet.png" +theme.mymultimediamenu_icon = themes_dir .. "icons/emblem_multimedia.png" +theme.mygraphicsmenu_icon = themes_dir .. "icons/graphics.png" +theme.nvidia_icon = themes_dir .. "icons/nvidia-settings.png" +theme.myofficemenu_icon = themes_dir .. "icons/applications_office.png" +theme.mytoolsmenu_icon = themes_dir .. "icons/tool_box.png" +theme.mywebmenu_icon = themes_dir .. "icons/web.png" +theme.mysettingsmenu_icon = themes_dir .. "icons/hammer_screwdriver.png" +-- theme.celestia_icon = themes_dir .. "icons/celestia.png" +-- theme.geogebra_icon = themes_dir .. "icons/geogebra.png" +theme.rosetta_icon = themes_dir .. "icons/rosetta.png" +theme.stellarium_icon = themes_dir .. "icons/stellarium.png" +theme.mathematica_icon = themes_dir .. "icons/Mathematica_Icon.png" +theme.acroread_icon = themes_dir .. "icons/acroread.png" +theme.djview_icon = themes_dir .. "icons/djvulibre-djview4.png" +theme.kchmviewer_icon = themes_dir .. "icons/kchmviewer.png" +theme.leafpad_icon = themes_dir .. "icons/leafpad.png" +theme.librebase_icon = themes_dir .. "icons/libreoffice-base.png" +theme.librecalc_icon = themes_dir .. "icons/libreoffice-calc.png" +theme.libredraw_icon = themes_dir .. "icons/libreoffice-draw.png" +theme.libreimpress_icon = themes_dir .. "icons/libreoffice-impress.png" +theme.libremath_icon = themes_dir .. "icons/libreoffice-math.png" +theme.librewriter_icon = themes_dir .. "icons/libreoffice-writer.png" +theme.gparted_icon = themes_dir .. "icons/gparted.png" +theme.peazip_icon = themes_dir .. "icons/PeaZip.png" +theme.teamviewer_icon = themes_dir .. "icons/teamview.png" +theme.virtualbox_icon = themes_dir .. "icons/virtualbox.png" +-- theme.vmware_icon = themes_dir .. "icons/vmware-workstation.png" +theme.unetbootin_icon = themes_dir .. "icons/unetbootin.png" +theme.cups_icon = themes_dir .. "icons/cupsprinter.png" +theme.java_icon = themes_dir .. "icons/sun_java.png" +theme.qt_icon = themes_dir .. "icons/qtassistant.png" +theme.filezilla_icon = themes_dir .. "icons/filezilla.png" +theme.firefox_icon = themes_dir .. "icons/firefox.png" +theme.thunderbird_icon = themes_dir .. "icons/thunderbird.png" +theme.luakit_icon = themes_dir .. "icons/luakit.png" +theme.gajim_icon = themes_dir .. "icons/gajim.png" +theme.skype_icon = themes_dir .. "icons/skype.png" +theme.vidalia_icon = themes_dir .. "icons/vidalia_icon.png" +theme.weechat_icon = themes_dir .. "icons/weechat.png" +theme.meld_icon = themes_dir .. "icons/meld.png" +theme.umplayer_icon = themes_dir .. "icons/umplayer.png" +theme.qalculate_icon = themes_dir .. "icons/qalculate.png" +theme.wicd_icon = themes_dir .. "icons/wicd.png" +theme.opera_icon = themes_dir .. "icons/opera.png" +theme.qtcreator_icon = themes_dir .. "icons/qtcreator.png" +theme.florence_icon = themes_dir .. "icons/keyboard.png" +theme.texworks_icon = themes_dir .. "icons/TeXworks.png" +theme.vym_icon = themes_dir .. "icons/vym.png" +theme.wmsmixer_icon = themes_dir .. "icons/wmsmixer.png" +theme.cherrytree_icon = themes_dir .. "icons/cherrytree.png" +theme.scantailor_icon = themes_dir .. "icons/scantailor.png" +theme.gucharmap_icon = themes_dir .. "icons/gucharmap.png" +theme.sigil_icon = themes_dir .. "icons/sigil.png" +theme.dwb_icon = themes_dir .. "icons/dwb.png" +theme.qpdfview_icon = themes_dir .. "icons/qpdfview.png" +theme.ghex_icon = themes_dir .. "icons/ghex.png" +theme.qtlinguist_icon = themes_dir .. "icons/linguist.png" +theme.xfw_icon = themes_dir .. "icons/xfw.xpm" +theme.free42_icon = themes_dir .. "icons/free42.png" +theme.fontypython_icon = themes_dir .. "icons/fontypython.png" +theme.windows_icon = themes_dir .. "icons/windows.png" +theme.tinymount_icon = themes_dir .. "icons/tinymount.png" +theme.pgadmin3_icon = themes_dir .. "icons/pgadmin3.png" +theme.chromium_icon = themes_dir .. "icons/chromium.png" +theme.dropbox_icon = themes_dir .. "icons/dropbox.png" +theme.gpick_icon = themes_dir .. "icons/gpick.png" +theme.projects_icon = themes_dir .. "icons/projects.png" +theme.qbittorrent_icon = themes_dir .. "icons/qbittorrent.png" +theme.tkdiff_icon = themes_dir .. "icons/tkdiff.png" +theme.kdiff3_icon = themes_dir .. "icons/kdiff3.png" +theme.rubymine_icon = themes_dir .. "icons/rubymine.png" +theme.multiplemonitors_icon = themes_dir .. "icons/multiple_monitors.png" +theme.xnview_icon = themes_dir .. "icons/xnview_2.png" +theme.mystuffmenu_icon = themes_dir .. "icons/creative_suite.png" +theme.assembler_icon = themes_dir .. "icons/assembler_icon.png" +theme.dlang_icon = themes_dir .. "icons/dlang.png" +theme.erlang_icon = themes_dir .. "icons/erlang.png" +theme.databases_icon = themes_dir .. "icons/databases.png" +theme.ruby_icon = themes_dir .. "icons/ruby.png" +theme.linux_icon = themes_dir .. "icons/linux.png" +theme.html_icon = themes_dir .. "icons/html.png" +theme.androidmobile_icon = themes_dir .. "icons/android.png" +theme.quiterss_icon = themes_dir .. "icons/quiterss.png" +theme.anki_icon = themes_dir .. "icons/anki.png" +theme.binclock_bgicon = themes_dir .. "icons/transbinclock.png" +theme.task_icon = themes_dir .. "icons/task.png" +theme.task_done_icon = themes_dir .. "icons/task_done.png" +theme.project_icon = themes_dir .. "icons/project.png" +theme.udisks_glue = themes_dir .. "icons/usb10.png" +theme.usb = themes_dir .. "icons/usb.png" +theme.calendar_icon = themes_dir .. "icons/calendar4.png" +theme.cdrom = themes_dir .. "icons/disc.png" +theme.docsmenu_icon = themes_dir .. "icons/docsmenu.png" +theme.xmind_icon = themes_dir .. "icons/xmind.png" +theme.c_icon = themes_dir .. "icons/text-x-c.png" +theme.js_icon = themes_dir .. "icons/text-x-javascript.png" +theme.py_icon = themes_dir .. "icons/text-x-python.png" +theme.learning_icon = themes_dir .. "icons/add.png" +theme.cpp_icon = themes_dir .. "icons/text-x-c++.png" +theme.markup_icon = themes_dir .. "icons/text-xml.png" + +--{{---------------------------------------------------------------------------- + +return theme + + diff --git a/dot.config/awesome/themes/powerarrow/wallpapers/wallpaper-2552963.jpg b/dot.config/awesome/themes/powerarrow/wallpapers/wallpaper-2552963.jpg new file mode 100644 index 0000000..c503913 Binary files /dev/null and b/dot.config/awesome/themes/powerarrow/wallpapers/wallpaper-2552963.jpg differ diff --git a/dot.config/awesome/themes/zenburnish/awesome-icon.png b/dot.config/awesome/themes/zenburnish/awesome-icon.png new file mode 100644 index 0000000..70978d3 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/awesome-icon.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/cornerne.png b/dot.config/awesome/themes/zenburnish/layouts/cornerne.png new file mode 100644 index 0000000..63960bc Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/cornerne.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/cornernw.png b/dot.config/awesome/themes/zenburnish/layouts/cornernw.png new file mode 100644 index 0000000..cafd5ef Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/cornernw.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/cornerse.png b/dot.config/awesome/themes/zenburnish/layouts/cornerse.png new file mode 100644 index 0000000..67b143b Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/cornerse.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/cornersw.png b/dot.config/awesome/themes/zenburnish/layouts/cornersw.png new file mode 100644 index 0000000..292b23f Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/cornersw.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/dwindle.png b/dot.config/awesome/themes/zenburnish/layouts/dwindle.png new file mode 100644 index 0000000..1aa4bf2 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/dwindle.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/fairh.png b/dot.config/awesome/themes/zenburnish/layouts/fairh.png new file mode 100644 index 0000000..e176bb3 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/fairh.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/fairv.png b/dot.config/awesome/themes/zenburnish/layouts/fairv.png new file mode 100644 index 0000000..7c0a92c Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/fairv.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/floating.png b/dot.config/awesome/themes/zenburnish/layouts/floating.png new file mode 100644 index 0000000..a399092 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/floating.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/fullscreen.png b/dot.config/awesome/themes/zenburnish/layouts/fullscreen.png new file mode 100644 index 0000000..a0c795c Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/fullscreen.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/magnifier.png b/dot.config/awesome/themes/zenburnish/layouts/magnifier.png new file mode 100644 index 0000000..bca6db9 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/magnifier.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/max.png b/dot.config/awesome/themes/zenburnish/layouts/max.png new file mode 100644 index 0000000..96a237a Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/max.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/spiral.png b/dot.config/awesome/themes/zenburnish/layouts/spiral.png new file mode 100644 index 0000000..8f5aeed Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/spiral.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/tile.png b/dot.config/awesome/themes/zenburnish/layouts/tile.png new file mode 100644 index 0000000..3fcc904 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/tile.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/tilebottom.png b/dot.config/awesome/themes/zenburnish/layouts/tilebottom.png new file mode 100644 index 0000000..dfe7832 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/tilebottom.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/tileleft.png b/dot.config/awesome/themes/zenburnish/layouts/tileleft.png new file mode 100644 index 0000000..c5decfd Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/tileleft.png differ diff --git a/dot.config/awesome/themes/zenburnish/layouts/tiletop.png b/dot.config/awesome/themes/zenburnish/layouts/tiletop.png new file mode 100644 index 0000000..b251661 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/layouts/tiletop.png differ diff --git a/dot.config/awesome/themes/zenburnish/taglist/squarefz.png b/dot.config/awesome/themes/zenburnish/taglist/squarefz.png new file mode 100644 index 0000000..0927720 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/taglist/squarefz.png differ diff --git a/dot.config/awesome/themes/zenburnish/taglist/squarez.png b/dot.config/awesome/themes/zenburnish/taglist/squarez.png new file mode 100644 index 0000000..9b41c26 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/taglist/squarez.png differ diff --git a/dot.config/awesome/themes/zenburnish/theme.lua b/dot.config/awesome/themes/zenburnish/theme.lua new file mode 100644 index 0000000..ba2a21a --- /dev/null +++ b/dot.config/awesome/themes/zenburnish/theme.lua @@ -0,0 +1,138 @@ +------------------------------- +-- "Zenburn" awesome theme -- +-- By Adrian C. (anrxc) -- +------------------------------- + +local themes_dir = require("gears.filesystem").get_themes_dir() +local xresources = require("beautiful.xresources") +local dpi = xresources.apply_dpi +local xrdb = xresources.get_current_theme() + +-- {{{ Main +local theme = {} +theme.wallpaper = "/home/nk/Wallpapers/a5c0f8fc5c87c495638cceca4f52a274.png" +-- }}} + +-- {{{ Styles +theme.font = "monofur for powerline 12" + +-- {{{ Colors +theme.fg_normal = "#DCDCCC" +theme.fg_focus = "#F0DFAF" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#3F3F3F" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +theme.bg_systray = theme.bg_normal +-- }}} + +-- {{{ Borders +theme.useless_gap = dpi(0) +theme.border_width = dpi(2) +theme.border_normal = "#3F3F3F" +theme.border_focus = "#6F6F6F" +theme.border_marked = "#CC9393" +-- }}} + +-- {{{ Titlebars +theme.titlebar_bg_focus = "#3F3F3F" +theme.titlebar_bg_normal = "#3F3F3F" +-- }}} + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- [taglist|tasklist]_[bg|fg]_[focus|urgent|occupied|empty|volatile] +-- titlebar_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- Example: +--theme.taglist_bg_focus = "#CC9393" +-- }}} + +-- {{{ Widgets +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.fg_widget = "#AECF96" +--theme.fg_center_widget = "#88A175" +--theme.fg_end_widget = "#FF5656" +--theme.bg_widget = "#494B4F" +--theme.border_widget = "#3F3F3F" +-- }}} + +-- {{{ Mouse finder +theme.mouse_finder_color = "#CC9393" +-- mouse_finder_[timeout|animate_timeout|radius|factor] +-- }}} + +-- {{{ Menu +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] +theme.menu_height = dpi(15) +theme.menu_width = dpi(100) +-- }}} + +-- {{{ Icons +-- {{{ Taglist +theme.taglist_squares_sel = themes_dir .. "zenburn/taglist/squarefz.png" +theme.taglist_squares_unsel = themes_dir .. "zenburn/taglist/squarez.png" +--theme.taglist_squares_resize = "false" +-- }}} + +-- {{{ Misc +theme.awesome_icon = themes_dir .. "zenburn/awesome-icon.png" +theme.menu_submenu_icon = themes_dir .. "default/submenu.png" +-- }}} + +-- {{{ Layout +theme.layout_tile = themes_dir .. "zenburn/layouts/tile.png" +theme.layout_tileleft = themes_dir .. "zenburn/layouts/tileleft.png" +theme.layout_tilebottom = themes_dir .. "zenburn/layouts/tilebottom.png" +theme.layout_tiletop = themes_dir .. "zenburn/layouts/tiletop.png" +theme.layout_fairv = themes_dir .. "zenburn/layouts/fairv.png" +theme.layout_fairh = themes_dir .. "zenburn/layouts/fairh.png" +theme.layout_spiral = themes_dir .. "zenburn/layouts/spiral.png" +theme.layout_dwindle = themes_dir .. "zenburn/layouts/dwindle.png" +theme.layout_max = themes_dir .. "zenburn/layouts/max.png" +theme.layout_fullscreen = themes_dir .. "zenburn/layouts/fullscreen.png" +theme.layout_magnifier = themes_dir .. "zenburn/layouts/magnifier.png" +theme.layout_floating = themes_dir .. "zenburn/layouts/floating.png" +theme.layout_cornernw = themes_dir .. "zenburn/layouts/cornernw.png" +theme.layout_cornerne = themes_dir .. "zenburn/layouts/cornerne.png" +theme.layout_cornersw = themes_dir .. "zenburn/layouts/cornersw.png" +theme.layout_cornerse = themes_dir .. "zenburn/layouts/cornerse.png" +-- }}} + +-- {{{ Titlebar +theme.titlebar_close_button_focus = themes_dir .. "zenburn/titlebar/close_focus.png" +theme.titlebar_close_button_normal = themes_dir .. "zenburn/titlebar/close_normal.png" + +theme.titlebar_minimize_button_normal = themes_dir .. "default/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = themes_dir .. "default/titlebar/minimize_focus.png" + +theme.titlebar_ontop_button_focus_active = themes_dir .. "zenburn/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = themes_dir .. "zenburn/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = themes_dir .. "zenburn/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = themes_dir .. "zenburn/titlebar/ontop_normal_inactive.png" + +theme.titlebar_sticky_button_focus_active = themes_dir .. "zenburn/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = themes_dir .. "zenburn/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = themes_dir .. "zenburn/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = themes_dir .. "zenburn/titlebar/sticky_normal_inactive.png" + +theme.titlebar_floating_button_focus_active = themes_dir .. "zenburn/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = themes_dir .. "zenburn/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = themes_dir .. "zenburn/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = themes_dir .. "zenburn/titlebar/floating_normal_inactive.png" + +theme.titlebar_maximized_button_focus_active = themes_dir .. "zenburn/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = themes_dir .. "zenburn/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = themes_dir .. "zenburn/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = themes_dir .. "zenburn/titlebar/maximized_normal_inactive.png" +-- }}} +-- }}} + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/dot.config/awesome/themes/zenburnish/titlebar/close_focus.png b/dot.config/awesome/themes/zenburnish/titlebar/close_focus.png new file mode 100644 index 0000000..e9b4179 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/close_focus.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/close_normal.png b/dot.config/awesome/themes/zenburnish/titlebar/close_normal.png new file mode 100644 index 0000000..da60e65 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/close_normal.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/floating_focus_active.png b/dot.config/awesome/themes/zenburnish/titlebar/floating_focus_active.png new file mode 100644 index 0000000..0f9ee0d Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/floating_focus_active.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/floating_focus_inactive.png b/dot.config/awesome/themes/zenburnish/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..aea1fb5 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/floating_focus_inactive.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/floating_normal_active.png b/dot.config/awesome/themes/zenburnish/titlebar/floating_normal_active.png new file mode 100644 index 0000000..2316e00 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/floating_normal_active.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/floating_normal_inactive.png b/dot.config/awesome/themes/zenburnish/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..699d1db Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/floating_normal_inactive.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/maximized_focus_active.png b/dot.config/awesome/themes/zenburnish/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..7e8498a Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/maximized_focus_active.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/maximized_focus_inactive.png b/dot.config/awesome/themes/zenburnish/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..3445dc5 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/maximized_focus_inactive.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/maximized_normal_active.png b/dot.config/awesome/themes/zenburnish/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..5a2c30e Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/maximized_normal_active.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/maximized_normal_inactive.png b/dot.config/awesome/themes/zenburnish/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..5f63cf6 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/maximized_normal_inactive.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/ontop_focus_active.png b/dot.config/awesome/themes/zenburnish/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..86e61b7 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/ontop_focus_active.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/ontop_focus_inactive.png b/dot.config/awesome/themes/zenburnish/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..db80b22 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/ontop_focus_inactive.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/ontop_normal_active.png b/dot.config/awesome/themes/zenburnish/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..ebee120 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/ontop_normal_active.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/ontop_normal_inactive.png b/dot.config/awesome/themes/zenburnish/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..cce23b2 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/ontop_normal_inactive.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/sticky_focus_active.png b/dot.config/awesome/themes/zenburnish/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..b10e604 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/sticky_focus_active.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/sticky_focus_inactive.png b/dot.config/awesome/themes/zenburnish/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..7796a59 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/sticky_focus_inactive.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/sticky_normal_active.png b/dot.config/awesome/themes/zenburnish/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..27d585b Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/sticky_normal_active.png differ diff --git a/dot.config/awesome/themes/zenburnish/titlebar/sticky_normal_inactive.png b/dot.config/awesome/themes/zenburnish/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..d877fe6 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/titlebar/sticky_normal_inactive.png differ diff --git a/dot.config/awesome/themes/zenburnish/zenburn-background.png b/dot.config/awesome/themes/zenburnish/zenburn-background.png new file mode 100644 index 0000000..1eb9437 Binary files /dev/null and b/dot.config/awesome/themes/zenburnish/zenburn-background.png differ diff --git a/dot.config/awesome/vicious b/dot.config/awesome/vicious new file mode 120000 index 0000000..4864b95 --- /dev/null +++ b/dot.config/awesome/vicious @@ -0,0 +1 @@ +/home/nk/src/pkg/awesome/vicious \ No newline at end of file