1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-12-22 19:22:32 +00:00

#74: moved to lain as new submodule

This commit is contained in:
luke bonham 2015-01-30 14:26:01 +01:00
parent 632accdb1f
commit b183ea3a89
3 changed files with 4 additions and 102 deletions

2
lain

@ -1 +1 @@
Subproject commit 6796803a40fd31c05566dad437a54f4e995a4c8f
Subproject commit c37514124a09ecd9532ca15a86e31aa4c15e46e2

View file

@ -15,8 +15,6 @@ local beautiful = require("beautiful")
local naughty = require("naughty")
local drop = require("scratchdrop")
local lain = require("lain")
local separators = require("separators")
-- }}}
-- {{{ Error handling
@ -112,6 +110,7 @@ mymainmenu = awful.menu.new({ items = require("menugen").build_menu(),
-- {{{ Wibox
markup = lain.util.markup
separators = lain.util.separators
-- Textclock
clockicon = wibox.widget.imagebox(beautiful.widget_clock)
@ -247,8 +246,8 @@ netwidget = lain.widgets.net({
spr = wibox.widget.textbox(' ')
arrl = wibox.widget.imagebox()
arrl:set_image(beautiful.arrl)
arrl_dl = separators:left(beautiful.bg_focus, "alpha")
arrl_ld = separators:left("alpha", beautiful.bg_focus)
arrl_dl = separators.arrow_left(beautiful.bg_focus, "alpha")
arrl_ld = separators.arrow_left("alpha", beautiful.bg_focus)
-- Create a wibox for each screen and add it
mywibox = {}

View file

@ -1,97 +0,0 @@
local wibox = require("wibox")
local beautiful = require("beautiful")
local gears = require("gears")
local naughty = require("naughty")
local separators = {}
local height = beautiful.awful_widget_height or 0
local width = beautiful.separators_width or 9
-- Back
function separators:right(col1, col2)
local widget = wibox.widget.base.make_widget()
widget.fit = function(m, w, h)
return width, height
end
widget.draw = function(mycross, wibox, cr, width, height)
if col2 ~= "alpha" then
cr:set_source_rgb(gears.color.parse_color(col2))
cr:new_path()
cr:move_to(0, 0)
cr:line_to(width, height/2)
cr:line_to(width, 0)
cr:close_path()
cr:fill()
cr:new_path()
cr:move_to(0, height)
cr:line_to(width, height/2)
cr:line_to(width, height)
cr:close_path()
cr:fill()
end
if col1 ~= "alpha" then
cr:set_source_rgb(gears.color.parse_color(col1))
cr:new_path()
cr:move_to(0, 0)
cr:line_to(width, height/2)
cr:line_to(0, height)
cr:close_path()
cr:fill()
end
end
return widget
end
-- Normal
function separators:left(col1, col2)
local widget = wibox.widget.base.make_widget()
widget.fit = function(m, w, h)
return width, height
end
widget.draw = function(mycross, wibox, cr, width, height)
if col1 ~= "alpha" then
cr:set_source_rgb(gears.color.parse_color(col1))
cr:new_path()
cr:move_to(width, 0)
cr:line_to(0, height/2)
cr:line_to(0, 0)
cr:close_path()
cr:fill()
cr:new_path()
cr:move_to(width, height)
cr:line_to(0, height/2)
cr:line_to(0, height)
cr:close_path()
cr:fill()
end
if col2 ~= "alpha" then
cr:new_path()
cr:move_to(width, 0)
cr:line_to(0, height/2)
cr:line_to(width, height)
cr:close_path()
cr:set_source_rgb(gears.color.parse_color(col2))
cr:fill()
end
end
return widget
end
return separators