Browse Source

Readme and screenshots

master
Yessiest 2 years ago
parent
commit
ead1184a5b
  1. 4
      README.md
  2. BIN
      extra/screenshots/unity.png
  3. 3
      themes/unity/config/root_menu.json
  4. BIN
      themes/unity/icons/reno98.png
  5. 6
      themes/unity/theme.lua

4
README.md

@ -10,6 +10,10 @@ Thanks to the ethically questionable decision of employing JSON to Widget Layout
#### 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)
#### 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
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

After

Width: 1920  |  Height: 1080  |  Size: 272 KiB

3
themes/unity/config/root_menu.json

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

BIN
themes/unity/icons/reno98.png

Before

Width: 48  |  Height: 48  |  Size: 718 B

6
themes/unity/theme.lua

@ -278,7 +278,7 @@ theme.widgets = {
titlebar = {
root_shape = function(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_normal = theme.titlebar_bg_normal,
top = 2,
@ -528,7 +528,7 @@ theme.widgets = {
root:set_bg(theme.titlebar_bg_focus)
root:set_shape(function(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,
onunfocus = function(titlebar)
@ -536,7 +536,7 @@ theme.widgets = {
root:set_bg(theme.titlebar_bg_normal)
root:set_shape(function(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,
bg_focus = "#00000000",
bg_normal = "#00000000",

Loading…
Cancel
Save