1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 20:41:22 +00:00

.gitmodules updated

This commit is contained in:
copycat-killer 2017-02-01 20:16:15 +01:00
parent 047e50adb5
commit 829474d355
3 changed files with 30 additions and 10 deletions

2
.gitmodules vendored
View file

@ -4,4 +4,4 @@
[submodule "freedesktop"]
path = freedesktop
url = git@github.com:copycat-killer/awesome-freedesktop.git
url = git://github.com/copycat-killer/awesome-freedesktop.git

2
lain

@ -1 +1 @@
Subproject commit b14eff9b1e5558b3d3ea47d5e6ac9d6db3d265de
Subproject commit 1555e239eb42953d6d16b04f09d4d19083fa5119

View file

@ -12,6 +12,7 @@ local awful = require("awful")
local wibox = require("wibox")
local theme_assets = require("beautiful.theme_assets")
local math, string, tonumber, os = math, string, tonumber, os
local client = client
local theme = {}
theme.default_dir = require("awful.util").get_themes_dir() .. "default"
@ -113,6 +114,7 @@ local markup = lain.util.markup
local mytextclock = wibox.widget.textclock(markup("#FFFFFF", "%a %d %b, %H:%M"))
mytextclock.font = theme.font
lain.widgets.calendar({
cal = "/usr/bin/cal --color=always",
attach_to = { mytextclock },
notification_preset = {
fg = "#FFFFFF",
@ -326,7 +328,7 @@ function theme.at_screen_connect(s)
layout = wibox.layout.fixed.horizontal,
s.mypromptbox,
tspace1,
wibox.container.constraint(s.mytasklist, "min", s.workarea.width/4),
wibox.container.constraint(wibox.container.constraint(s.mytasklist, "min", s.workarea.width/4), "max", s.workarea.width/4),
},
{ -- Middle widgets
layout = wibox.layout.flex.horizontal,
@ -402,4 +404,22 @@ function theme.at_screen_connect(s)
end)
end
--[[
client.connect_signal("property::width",function(c)
if c.shape ~= gears.shape.rounded_rect then
c.shape = gears.shape.rounded_rect
end
end)
client.connect_signal("property::height",function(c)
if c.shape ~= gears.shape.rounded_rect then
c.shape = gears.shape.rounded_rect
end
end)
client.connect_signal("property::width",function(c)
if c.shape ~= gears.shape.rounded_rect then
c.shape = gears.shape.rounded_rect
end
end)
--]]
return theme