|
| 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