Skip to content

Commit d9a2120

Browse files
committed
index.md: add screenshot
Also add a page describing the screenshot, e.g. that xfce4-panel and pcmanfm-qt --desktop are used.
1 parent 0c44b8c commit d9a2120

4 files changed

Lines changed: 83 additions & 2 deletions

File tree

44 KB
Loading

deploy/img/scrot0-landing-page.png

98 KB
Loading

src/index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@ It is lightweight and independent with a focus on simply stacking windows well,
55
and rendering some window decorations. It relies on clients for panels,
66
screenshots, wallpapers, and so on to create a full desktop environment.
77

8-
- [Screenshots](screenshots.html)
9-
- [Videos](videos.html)
8+
[<a href="screenshots.html">screenshots</a>]
9+
[<a href="videos.html">videos</a>]
10+
11+
<a href="obligatory-screenshot2.html">
12+
<img src="img/scrot0-landing-page-small.png" width="640" height="360" />
13+
</a>
1014

1115
[Wayland]: https://wayland.freedesktop.org/
1216
[Openbox]: http://openbox.org/

src/obligatory-screenshot2.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Obligatory Screenshot
2+
3+
The screenshot was created with the following desktop components and themes:
4+
5+
1. [pcmanfm-qt --desktop](https://github.com/lxqt/pcmanfm-qt) for the background color (`#161616`) and desktop icons
6+
2. [xfce4-panel]
7+
3. [labwc-tweaks] configuration tool
8+
4. [labwc-menu-generator] to generate the content for the built-in compositor menu
9+
5. [labTeallach] compositor theme
10+
6. [WhiteSur-opaqueDark] Kvantum theme for Qt applications
11+
7. [Papirus] icon theme
12+
13+
[pcmanfm-qt --desktop]: https://github.com/lxqt/pcmanfm-qt
14+
[xfce4-panel]: https://gitlab.xfce.org/xfce/xfce4-panel
15+
[labwc-tweaks]: https://github.com/labwc/labwc-tweaks
16+
[labwc-menu-generator]: https://github.com/labwc/labwc-menu-generator
17+
[labTeallach]: https://github.com/labwc/labwc-themes/tree/master/labTeallach/labwc
18+
[WhiteSur-opaqueDark]: https://github.com/vinceliuice/WhiteSur-kde/tree/master/Kvantum/WhiteSur-opaque
19+
[Papirus]: https://github.com/PapirusDevelopmentTeam/papirus-icon-theme
20+
21+
Full size image <a href="img/scrot0-landing-page.png">here</a>
22+
23+
The compositor root-menu was defined by the files below.
24+
25+
`~/.config/labwc/menu.xml`
26+
27+
```
28+
<openbox_menu>
29+
<menu id="root-menu" label="" execute="menu.sh"/>
30+
</openbox_menu>
31+
```
32+
33+
`~/bin/menu.sh`
34+
35+
```
36+
#!/bin/sh
37+
38+
printf '%b\n' '
39+
<openbox_pipe_menu>
40+
41+
<item label="Web Browser" name.action="Execute" command.action="firefox" icon="firefox" />
42+
<item label="Terminal" name.action="Execute" command.action="foot" icon="utilities-terminal" />
43+
<item label="File Manager" name.action="Execute" command.action="pcmanfm-qt" icon="system-file-manager" />
44+
<item label="Tweaks" name.action="Execute" command.action="labwc-tweaks" icon="configure" />
45+
46+
<separator />'
47+
48+
labwc-menu-generator -b -I -t foot
49+
50+
printf '%b\n' '
51+
<separator />
52+
53+
<menu id="help" label="Help" icon="help">
54+
<separator label="Online Help" />
55+
<item label="labwc.github.io" name.action="Execute" command.action="firefox https://labwc.github.io" icon="applications-development-web" />
56+
57+
<separator label="Man Pages" />
58+
<item label="labwc(1)" name.action="Execute" command.action="firefox https://labwc.github.io/labwc.1.html" icon="deepin-manual" />
59+
<item label="labwc-config(5)" name.action="Execute" command.action="firefox https://labwc.github.io/labwc-config.5.html" icon="deepin-manual" />
60+
<item label="labwc-theme(5)" name.action="Execute" command.action="firefox https://labwc.github.io/labwc-theme.5.html" icon="deepin-manual" />
61+
<item label="labwc-menu(5)" name.action="Execute" command.action="firefox https://labwc.github.io/labwc-menu.5.html" icon="deepin-manual" />
62+
<item label="labwc-actions(5)" name.action="Execute" command.action="firefox https://labwc.github.io/labwc-actions.5.html" icon="deepin-manual" />
63+
<item label="labnag(1)" name.action="Execute" command.action="firefox https://labwc.github.io/labnag.1.html" icon="deepin-manual" />
64+
</menu>
65+
66+
<menu id="Preferences" label="Preferences" icon="applications-engineering">
67+
<item label="Edit rc.xml" name.action="Execute" command.action="featherpad ~/.config/labwc/rc.xml" icon="text-x-generic" />
68+
<item label="Edit autostart" name.action="Execute" command.action="featherpad ~/.config/labwc/autostart" icon="text-x-generic" />
69+
</menu>
70+
71+
<menu id="Exit" label="Exit" icon="application-exit">
72+
<item label="Reconfigure" name.action="Reconfigure" icon="labwc" />
73+
<item label="Logout" name.action="Exit" icon="application-exit" />
74+
</menu>
75+
76+
</openbox_pipe_menu>'
77+
```

0 commit comments

Comments
 (0)