Small restructure

This commit is contained in:
Dave Davenport 2015-12-11 16:45:13 +01:00
parent 382a76f6eb
commit df424b7d1f
6 changed files with 8 additions and 2 deletions

View file

@ -19,6 +19,8 @@ rofi.color-urgent: argb:00000000, #F99157 , argb:00000000, #
rofi.color-active: argb:00000000, #6699CC , argb:00000000, #6699CC , #1B2B34
! Color scheme window
rofi.color-window: argb:ee222222, #FAC863 , #FAC863
! Separator style (none, dash, solid)
rofi.separator-style: solid
```
# blue
## Screenshot

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -11,3 +11,5 @@ rofi.color-urgent: argb:00000000, #F99157 , argb:00000000, #
rofi.color-active: argb:00000000, #6699CC , argb:00000000, #6699CC , #1B2B34
! Color scheme window
rofi.color-window: argb:ee222222, #FAC863 , #FAC863
! Separator style (none, dash, solid)
rofi.separator-style: solid

View file

@ -8,9 +8,11 @@ echo "" > README.md
# Fill it
echo "# Rofi Themes: " >> README.md
echo "" >> README.md
for a in *.theme
for a in Themes/*.theme
do
NAME=${a%.theme}
FILE=$(basename $a)
echo "File: ${FILE}"
NAME=${FILE%.theme}
IMAGE="Screenshots/${NAME}.png"
echo "# ${NAME}" >> README.md
if [ ${a} -nt ${IMAGE} ]