Readme and screenshots

This commit is contained in:
Yessiest 2022-09-08 22:13:17 +04:00
parent 7c6b496f35
commit ead1184a5b
5 changed files with 8 additions and 5 deletions

View File

@ -10,6 +10,10 @@ Thanks to the ethically questionable decision of employing JSON to Widget Layout
#### Current default theme, Reno98 #### Current default theme, Reno98
![Totally not windows 98 trust me it's legally distinct](https://512mb.org/git/Yessiest/reno/raw/branch/master/extra/screenshots/reno98.png) ![Totally not windows 98 trust me it's legally distinct](https://512mb.org/git/Yessiest/reno/raw/branch/master/extra/screenshots/reno98.png)
#### An iteration on the look of Ubuntu with Ambiance theme
![Totally not ubuntu guys this how can't you see that](https://512mb.org/git/Yessiest/reno/raw/branch/master/extra/screenshots/unity.png)
## Installation ## Installation
The installation process is not much different from the previous iteration, except this time the window manager does not crash if you don't install luapam. Instead, the lock widget will simply refuse to operate. The installation process is not much different from the previous iteration, except this time the window manager does not crash if you don't install luapam. Instead, the lock widget will simply refuse to operate.

BIN
extra/screenshots/unity.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

View File

@ -2,8 +2,7 @@
"list": [ "list": [
{"widget": "widgets.base.popuptitle", {"widget": "widgets.base.popuptitle",
"options":{ "options":{
"icon":"icons/reno98.png", "title":"Reno Unity"
"title":"Reno 98"
} }
}, },
{"widget": "widgets.base.tagswitcher", {"widget": "widgets.base.tagswitcher",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 718 B

View File

@ -278,7 +278,7 @@ theme.widgets = {
titlebar = { titlebar = {
root_shape = function(cr,width,height) root_shape = function(cr,width,height)
return gears.shape.partially_rounded_rect(cr,width,height, return gears.shape.partially_rounded_rect(cr,width,height,
true,true,false,false,7) end, true,true,false,false,6) end,
root_bg_focus = theme.titlebar_bg_focus, root_bg_focus = theme.titlebar_bg_focus,
root_bg_normal = theme.titlebar_bg_normal, root_bg_normal = theme.titlebar_bg_normal,
top = 2, top = 2,
@ -528,7 +528,7 @@ theme.widgets = {
root:set_bg(theme.titlebar_bg_focus) root:set_bg(theme.titlebar_bg_focus)
root:set_shape(function(cr,width,height) root:set_shape(function(cr,width,height)
return gears.shape.partially_rounded_rect(cr,width,height, return gears.shape.partially_rounded_rect(cr,width,height,
true,true,false,false,7) end) true,true,false,false,6) end)
end, end,
onunfocus = function(titlebar) onunfocus = function(titlebar)
@ -536,7 +536,7 @@ theme.widgets = {
root:set_bg(theme.titlebar_bg_normal) root:set_bg(theme.titlebar_bg_normal)
root:set_shape(function(cr,width,height) root:set_shape(function(cr,width,height)
return gears.shape.partially_rounded_rect(cr,width,height, return gears.shape.partially_rounded_rect(cr,width,height,
true,true,false,false,7) end) true,true,false,false,6) end)
end, end,
bg_focus = "#00000000", bg_focus = "#00000000",
bg_normal = "#00000000", bg_normal = "#00000000",