mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2024-12-22 19:22:32 +00:00
powerarrow-darker modular, closes #147
This commit is contained in:
parent
827e9d2408
commit
6f7bdaa310
2
lain
2
lain
|
@ -1 +1 @@
|
||||||
Subproject commit 83b96b3c3ada021e47d6ef1ad48c03710f0dc24a
|
Subproject commit 555b872d16393774089df3b3453000571a73a3dd
|
|
@ -7,6 +7,9 @@
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
-- {{{ Required libraries
|
-- {{{ Required libraries
|
||||||
|
local awesome, client, screen = awesome, client, screen
|
||||||
|
local string, os, tostring, tonumber, type = string, os, tostring, tonumber, type
|
||||||
|
|
||||||
local gears = require("gears")
|
local gears = require("gears")
|
||||||
local awful = require("awful")
|
local awful = require("awful")
|
||||||
require("awful.autofocus")
|
require("awful.autofocus")
|
||||||
|
@ -40,7 +43,7 @@ do
|
||||||
end
|
end
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
-- {{{ Autostart applications
|
-- {{{ Autostart windowless processes
|
||||||
local function run_once(cmd)
|
local function run_once(cmd)
|
||||||
findme = cmd
|
findme = cmd
|
||||||
firstspace = cmd:find(" ")
|
firstspace = cmd:find(" ")
|
||||||
|
@ -58,10 +61,10 @@ run_once("unclutter -root")
|
||||||
local chosen_theme = "multicolor"
|
local chosen_theme = "multicolor"
|
||||||
local modkey = "Mod4"
|
local modkey = "Mod4"
|
||||||
local altkey = "Mod1"
|
local altkey = "Mod1"
|
||||||
local editor = os.getenv("EDITOR") or "nano" or "vi"
|
|
||||||
local terminal = "urxvtc" or "xterm"
|
local terminal = "urxvtc" or "xterm"
|
||||||
local browser = "firefox"
|
local editor = os.getenv("EDITOR") or "nano" or "vi"
|
||||||
local gui_editor = "gvim"
|
local gui_editor = "gvim"
|
||||||
|
local browser = "firefox"
|
||||||
local graphics = "gimp"
|
local graphics = "gimp"
|
||||||
|
|
||||||
awful.util.terminal = terminal
|
awful.util.terminal = terminal
|
||||||
|
@ -83,7 +86,64 @@ awful.layout.layouts = {
|
||||||
-- awful.layout.suit.corner.ne,
|
-- awful.layout.suit.corner.ne,
|
||||||
-- awful.layout.suit.corner.sw,
|
-- awful.layout.suit.corner.sw,
|
||||||
-- awful.layout.suit.corner.se,
|
-- awful.layout.suit.corner.se,
|
||||||
|
-- lain.layout.cascade,
|
||||||
|
-- lain.layout.cascade.tile,
|
||||||
|
-- lain.layout.centerwork,
|
||||||
|
-- lain.layout.centerwork.horizontal,
|
||||||
|
-- lain.layout.termfair,
|
||||||
|
-- lain.layout.termfair.center,
|
||||||
}
|
}
|
||||||
|
awful.util.taglist_buttons = awful.util.table.join(
|
||||||
|
awful.button({ }, 1, function(t) t:view_only() end),
|
||||||
|
awful.button({ modkey }, 1, function(t)
|
||||||
|
if client.focus then
|
||||||
|
client.focus:move_to_tag(t)
|
||||||
|
end
|
||||||
|
end),
|
||||||
|
awful.button({ }, 3, awful.tag.viewtoggle),
|
||||||
|
awful.button({ modkey }, 3, function(t)
|
||||||
|
if client.focus then
|
||||||
|
client.focus:toggle_tag(t)
|
||||||
|
end
|
||||||
|
end),
|
||||||
|
awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
|
||||||
|
awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
|
||||||
|
)
|
||||||
|
awful.util.tasklist_buttons = awful.util.table.join(
|
||||||
|
awful.button({ }, 1, function (c)
|
||||||
|
if c == client.focus then
|
||||||
|
c.minimized = true
|
||||||
|
else
|
||||||
|
-- Without this, the following
|
||||||
|
-- :isvisible() makes no sense
|
||||||
|
c.minimized = false
|
||||||
|
if not c:isvisible() and c.first_tag then
|
||||||
|
c.first_tag:view_only()
|
||||||
|
end
|
||||||
|
-- This will also un-minimize
|
||||||
|
-- the client, if needed
|
||||||
|
client.focus = c
|
||||||
|
c:raise()
|
||||||
|
end
|
||||||
|
end),
|
||||||
|
awful.button({ }, 3, function()
|
||||||
|
local instance = nil
|
||||||
|
|
||||||
|
return function ()
|
||||||
|
if instance and instance.wibox.visible then
|
||||||
|
instance:hide()
|
||||||
|
instance = nil
|
||||||
|
else
|
||||||
|
instance = awful.menu.clients({ theme = { width = 250 } })
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end),
|
||||||
|
awful.button({ }, 4, function ()
|
||||||
|
awful.client.focus.byidx(1)
|
||||||
|
end),
|
||||||
|
awful.button({ }, 5, function ()
|
||||||
|
awful.client.focus.byidx(-1)
|
||||||
|
end))
|
||||||
|
|
||||||
lain.layout.termfair.nmaster = 3
|
lain.layout.termfair.nmaster = 3
|
||||||
lain.layout.termfair.ncol = 1
|
lain.layout.termfair.ncol = 1
|
||||||
|
@ -114,7 +174,7 @@ local mymainmenu = freedesktop.menu.build({
|
||||||
--menubar.utils.terminal = terminal -- Set the Menubar terminal for applications that require it
|
--menubar.utils.terminal = terminal -- Set the Menubar terminal for applications that require it
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
-- {{{ Wibox
|
-- {{{ Screen
|
||||||
-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution)
|
-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution)
|
||||||
screen.connect_signal("property::geometry", function(s)
|
screen.connect_signal("property::geometry", function(s)
|
||||||
-- Wallpaper
|
-- Wallpaper
|
||||||
|
@ -488,8 +548,7 @@ awful.rules.rules = {
|
||||||
properties = { screen = 1, tag = screen[1].tags[1] } },
|
properties = { screen = 1, tag = screen[1].tags[1] } },
|
||||||
|
|
||||||
{ rule = { class = "Gimp", role = "gimp-image-window" },
|
{ rule = { class = "Gimp", role = "gimp-image-window" },
|
||||||
properties = { maximized_horizontal = true,
|
properties = { maximized = true } },
|
||||||
maximized_vertical = true } },
|
|
||||||
}
|
}
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,7 @@ local gears = require("gears")
|
||||||
local lain = require("lain")
|
local lain = require("lain")
|
||||||
local awful = require("awful")
|
local awful = require("awful")
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
local os = { getenv = os.getenv,
|
local os = { getenv = os.getenv, setlocale = os.setlocale }
|
||||||
setlocale = os.setlocale }
|
|
||||||
|
|
||||||
local theme = {}
|
local theme = {}
|
||||||
theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor"
|
theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor"
|
||||||
|
@ -92,8 +91,6 @@ theme.titlebar_maximized_button_focus_inactive = theme.confdir .. "/icons/title
|
||||||
theme.titlebar_maximized_button_normal_active = theme.confdir .. "/icons/titlebar/maximized_normal_active.png"
|
theme.titlebar_maximized_button_normal_active = theme.confdir .. "/icons/titlebar/maximized_normal_active.png"
|
||||||
theme.titlebar_maximized_button_focus_active = theme.confdir .. "/icons/titlebar/maximized_focus_active.png"
|
theme.titlebar_maximized_button_focus_active = theme.confdir .. "/icons/titlebar/maximized_focus_active.png"
|
||||||
|
|
||||||
--{{{ Widgets and wibar
|
|
||||||
|
|
||||||
local markup = lain.util.markup
|
local markup = lain.util.markup
|
||||||
|
|
||||||
-- Textclock
|
-- Textclock
|
||||||
|
@ -251,59 +248,6 @@ theme.mpd = lain.widgets.mpd({
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Create a wibox for each screen and add it
|
-- Create a wibox for each screen and add it
|
||||||
local taglist_buttons = awful.util.table.join(
|
|
||||||
awful.button({ }, 1, function(t) t:view_only() end),
|
|
||||||
awful.button({ modkey }, 1, function(t)
|
|
||||||
if client.focus then
|
|
||||||
client.focus:move_to_tag(t)
|
|
||||||
end
|
|
||||||
end),
|
|
||||||
awful.button({ }, 3, awful.tag.viewtoggle),
|
|
||||||
awful.button({ modkey }, 3, function(t)
|
|
||||||
if client.focus then
|
|
||||||
client.focus:toggle_tag(t)
|
|
||||||
end
|
|
||||||
end),
|
|
||||||
awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
|
|
||||||
awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
|
|
||||||
)
|
|
||||||
|
|
||||||
local tasklist_buttons = awful.util.table.join(
|
|
||||||
awful.button({ }, 1, function (c)
|
|
||||||
if c == client.focus then
|
|
||||||
c.minimized = true
|
|
||||||
else
|
|
||||||
-- Without this, the following
|
|
||||||
-- :isvisible() makes no sense
|
|
||||||
c.minimized = false
|
|
||||||
if not c:isvisible() and c.first_tag then
|
|
||||||
c.first_tag:view_only()
|
|
||||||
end
|
|
||||||
-- This will also un-minimize
|
|
||||||
-- the client, if needed
|
|
||||||
client.focus = c
|
|
||||||
c:raise()
|
|
||||||
end
|
|
||||||
end),
|
|
||||||
awful.button({ }, 3, function()
|
|
||||||
local instance = nil
|
|
||||||
|
|
||||||
return function ()
|
|
||||||
if instance and instance.wibox.visible then
|
|
||||||
instance:hide()
|
|
||||||
instance = nil
|
|
||||||
else
|
|
||||||
instance = awful.menu.clients({ theme = { width = 250 } })
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end),
|
|
||||||
awful.button({ }, 4, function ()
|
|
||||||
awful.client.focus.byidx(1)
|
|
||||||
end),
|
|
||||||
awful.button({ }, 5, function ()
|
|
||||||
awful.client.focus.byidx(-1)
|
|
||||||
end))
|
|
||||||
|
|
||||||
awful.screen.connect_for_each_screen(function(s)
|
awful.screen.connect_for_each_screen(function(s)
|
||||||
-- Quake application
|
-- Quake application
|
||||||
s.quake = lain.util.quake({ app = awful.util.terminal })
|
s.quake = lain.util.quake({ app = awful.util.terminal })
|
||||||
|
@ -334,7 +278,7 @@ awful.screen.connect_for_each_screen(function(s)
|
||||||
s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, tasklist_buttons)
|
s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, tasklist_buttons)
|
||||||
|
|
||||||
-- Create the wibox
|
-- Create the wibox
|
||||||
s.mywibox = awful.wibar({ position = "top", screen = s, height = 20 })
|
s.mywibox = awful.wibar({ position = "top", screen = s, height = 20, bg = theme.bg_normal, fg = theme.fg_normal })
|
||||||
|
|
||||||
-- Add widgets to the wibox
|
-- Add widgets to the wibox
|
||||||
s.mywibox:setup {
|
s.mywibox:setup {
|
||||||
|
@ -378,7 +322,7 @@ awful.screen.connect_for_each_screen(function(s)
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Create the bottom wibox
|
-- Create the bottom wibox
|
||||||
s.mybottomwibox = awful.wibar({ position = "bottom", screen = s, border_width = 0, height = 20 })
|
s.mybottomwibox = awful.wibar({ position = "bottom", screen = s, border_width = 0, height = 20, bg = theme.bg_normal, fg = theme.fg_normal })
|
||||||
|
|
||||||
-- Add widgets to the bottom wibox
|
-- Add widgets to the bottom wibox
|
||||||
s.mybottomwibox:setup {
|
s.mybottomwibox:setup {
|
||||||
|
|
BIN
themes/powerarrow-darker/icons/centerfair.png
Normal file
BIN
themes/powerarrow-darker/icons/centerfair.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 179 B |
BIN
themes/powerarrow-darker/icons/centerwork.png
Normal file
BIN
themes/powerarrow-darker/icons/centerwork.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 195 B |
BIN
themes/powerarrow-darker/icons/centerworkh.png
Normal file
BIN
themes/powerarrow-darker/icons/centerworkh.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 195 B |
BIN
themes/powerarrow-darker/icons/termfair.png
Normal file
BIN
themes/powerarrow-darker/icons/termfair.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 972 B |
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
--[[
|
--[[
|
||||||
|
|
||||||
Powerarrow Darker Awesome WM config 2.0
|
Powerarrow Darker Awesome WM theme 2.0
|
||||||
github.com/copycat-killer
|
github.com/copycat-killer
|
||||||
|
|
||||||
--]]
|
--]]
|
||||||
|
@ -13,10 +13,8 @@ local wibox = require("wibox")
|
||||||
local os = { getenv = os.getenv }
|
local os = { getenv = os.getenv }
|
||||||
|
|
||||||
local theme = {}
|
local theme = {}
|
||||||
|
|
||||||
theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-darker"
|
theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-darker"
|
||||||
theme.wallpaper = theme.dir .. "/wall.png"
|
theme.wallpaper = theme.dir .. "/wall.png"
|
||||||
|
|
||||||
theme.font = "Terminus 9"
|
theme.font = "Terminus 9"
|
||||||
theme.fg_normal = "#DDDDFF"
|
theme.fg_normal = "#DDDDFF"
|
||||||
theme.fg_focus = "#EA6F81"
|
theme.fg_focus = "#EA6F81"
|
||||||
|
@ -32,11 +30,9 @@ theme.tasklist_bg_focus = "#1A1A1A"
|
||||||
theme.titlebar_bg_focus = theme.bg_focus
|
theme.titlebar_bg_focus = theme.bg_focus
|
||||||
theme.titlebar_bg_normal = theme.bg_normal
|
theme.titlebar_bg_normal = theme.bg_normal
|
||||||
theme.titlebar_fg_focus = theme.fg_focus
|
theme.titlebar_fg_focus = theme.fg_focus
|
||||||
|
|
||||||
theme.menu_height = 16
|
theme.menu_height = 16
|
||||||
theme.menu_width = 140
|
theme.menu_width = 140
|
||||||
theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
|
theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
|
||||||
|
|
||||||
theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
|
theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
|
||||||
theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
|
theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
|
||||||
theme.layout_tile = theme.dir .. "/icons/tile.png"
|
theme.layout_tile = theme.dir .. "/icons/tile.png"
|
||||||
|
@ -69,12 +65,9 @@ theme.widget_vol_no = theme.dir .. "/icons/vol_no.pn
|
||||||
theme.widget_vol_mute = theme.dir .. "/icons/vol_mute.png"
|
theme.widget_vol_mute = theme.dir .. "/icons/vol_mute.png"
|
||||||
theme.widget_mail = theme.dir .. "/icons/mail.png"
|
theme.widget_mail = theme.dir .. "/icons/mail.png"
|
||||||
theme.widget_mail_on = theme.dir .. "/icons/mail_on.png"
|
theme.widget_mail_on = theme.dir .. "/icons/mail_on.png"
|
||||||
|
|
||||||
theme.tasklist_plain_task_name = true
|
theme.tasklist_plain_task_name = true
|
||||||
theme.tasklist_disable_icon = true
|
theme.tasklist_disable_icon = true
|
||||||
|
|
||||||
theme.useless_gap = 0
|
theme.useless_gap = 0
|
||||||
|
|
||||||
theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png"
|
theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png"
|
||||||
theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png"
|
theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png"
|
||||||
theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png"
|
theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png"
|
||||||
|
@ -94,12 +87,11 @@ theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/
|
||||||
theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png"
|
theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png"
|
||||||
theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png"
|
theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png"
|
||||||
|
|
||||||
-- {{{ Wibox
|
|
||||||
local markup = lain.util.markup
|
local markup = lain.util.markup
|
||||||
local separators = lain.util.separators
|
local separators = lain.util.separators
|
||||||
|
|
||||||
|
-- Textclock
|
||||||
local clockicon = wibox.widget.imagebox(theme.widget_clock)
|
local clockicon = wibox.widget.imagebox(theme.widget_clock)
|
||||||
--local mytextclock = wibox.widget.textclock(" %a %d %b %H:%M")
|
|
||||||
local clock = lain.widgets.abase({
|
local clock = lain.widgets.abase({
|
||||||
timeout = 60,
|
timeout = 60,
|
||||||
cmd = " date +'%a %d %b %R'",
|
cmd = " date +'%a %d %b %R'",
|
||||||
|
@ -108,8 +100,8 @@ local clock = lain.widgets.abase({
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
-- calendar
|
-- Calendar
|
||||||
lain.widgets.calendar.attach(mytextclock, {
|
lain.widgets.calendar.attach(clock.widget, {
|
||||||
notification_preset = {
|
notification_preset = {
|
||||||
font = "Terminus 10",
|
font = "Terminus 10",
|
||||||
fg = theme.fg_normal,
|
fg = theme.fg_normal,
|
||||||
|
@ -252,57 +244,18 @@ local arrl_dl = separators.arrow_left(theme.bg_focus, "alpha")
|
||||||
local arrl_ld = separators.arrow_left("alpha", theme.bg_focus)
|
local arrl_ld = separators.arrow_left("alpha", theme.bg_focus)
|
||||||
|
|
||||||
-- Create a wibox for each screen and add it
|
-- Create a wibox for each screen and add it
|
||||||
local taglist_buttons = awful.util.table.join(
|
|
||||||
awful.button({ }, 1, function(t) t:view_only() end),
|
|
||||||
awful.button({ modkey }, 1, function(t)
|
|
||||||
if client.focus then
|
|
||||||
client.focus:move_to_tag(t)
|
|
||||||
end
|
|
||||||
end),
|
|
||||||
awful.button({ }, 3, awful.tag.viewtoggle),
|
|
||||||
awful.button({ modkey }, 3, function(t)
|
|
||||||
if client.focus then
|
|
||||||
client.focus:toggle_tag(t)
|
|
||||||
end
|
|
||||||
end),
|
|
||||||
awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
|
|
||||||
awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
|
|
||||||
)
|
|
||||||
|
|
||||||
local tasklist_buttons = awful.util.table.join(
|
|
||||||
awful.button({ }, 1, function (c)
|
|
||||||
if c == client.focus then
|
|
||||||
c.minimized = true
|
|
||||||
else
|
|
||||||
-- Without this, the following
|
|
||||||
-- :isvisible() makes no sense
|
|
||||||
c.minimized = false
|
|
||||||
if not c:isvisible() and c.first_tag then
|
|
||||||
c.first_tag:view_only()
|
|
||||||
end
|
|
||||||
-- This will also un-minimize
|
|
||||||
-- the client, if needed
|
|
||||||
client.focus = c
|
|
||||||
c:raise()
|
|
||||||
end
|
|
||||||
end),
|
|
||||||
awful.button({ }, 3, client_menu_toggle_fn()),
|
|
||||||
awful.button({ }, 4, function ()
|
|
||||||
awful.client.focus.byidx(1)
|
|
||||||
end),
|
|
||||||
awful.button({ }, 5, function ()
|
|
||||||
awful.client.focus.byidx(-1)
|
|
||||||
end))
|
|
||||||
|
|
||||||
awful.screen.connect_for_each_screen(function(s)
|
awful.screen.connect_for_each_screen(function(s)
|
||||||
-- Quake application
|
-- Quake application
|
||||||
s.quake = lain.util.quake({ app = terminal })
|
s.quake = lain.util.quake({ app = awful.util.terminal })
|
||||||
|
|
||||||
-- Wallpaper
|
-- If wallpaper is a function, call it with the screen
|
||||||
set_wallpaper(s)
|
if type(wallpaper) == "function" then
|
||||||
|
theme.wallpaper = theme.wallpaper(s)
|
||||||
|
end
|
||||||
|
gears.wallpaper.maximized(theme.wallpaper, s, true)
|
||||||
|
|
||||||
-- Tags
|
-- Tags
|
||||||
awful.tag(tagnames, s, awful.layout.layouts)
|
awful.tag(awful.util.tagnames, s, awful.layout.layouts)
|
||||||
|
|
||||||
-- Create a promptbox for each screen
|
-- Create a promptbox for each screen
|
||||||
s.mypromptbox = awful.widget.prompt()
|
s.mypromptbox = awful.widget.prompt()
|
||||||
|
@ -321,7 +274,7 @@ awful.screen.connect_for_each_screen(function(s)
|
||||||
s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, tasklist_buttons)
|
s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, tasklist_buttons)
|
||||||
|
|
||||||
-- Create the wibox
|
-- Create the wibox
|
||||||
s.mywibox = awful.wibar({ position = "top", screen = s, height = 18 })
|
s.mywibox = awful.wibar({ position = "top", screen = s, height = 18, bg = theme.bg_normal, fg = theme.fg_normal })
|
||||||
|
|
||||||
-- Add widgets to the wibox
|
-- Add widgets to the wibox
|
||||||
s.mywibox:setup {
|
s.mywibox:setup {
|
||||||
|
@ -367,7 +320,6 @@ awful.screen.connect_for_each_screen(function(s)
|
||||||
wibox.container.background(net.widget, theme.bg_focus),
|
wibox.container.background(net.widget, theme.bg_focus),
|
||||||
arrl_dl,
|
arrl_dl,
|
||||||
clock.widget,
|
clock.widget,
|
||||||
--mytextclock,
|
|
||||||
spr,
|
spr,
|
||||||
arrl_ld,
|
arrl_ld,
|
||||||
wibox.container.background(s.mylayoutbox, theme.bg_focus),
|
wibox.container.background(s.mylayoutbox, theme.bg_focus),
|
||||||
|
|
Loading…
Reference in a new issue