-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
components/platform: using labwc based desktop environment
- Loading branch information
1 parent
168166f
commit 84ac765
Showing
13 changed files
with
867 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
swaybg -i /usr/share/backgrounds/default.jpg >/dev/null 2>&1 & | ||
sfwbar >/dev/null 2>&1 & | ||
swayidle -w \ | ||
timeout 300 'swaylock -f -c 000000' \ | ||
timeout 600 'wlopm --off \*' \ | ||
resume 'wlopm --on \*' \ | ||
before-sleep 'swaylock -f -c 000000' >/dev/null 2>&1 & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
MOZ_ENABLE_WAYLAND=1 | ||
_JAVA_AWT_WM_NONREPARENTING=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<openbox_menu> | ||
<!-- Note: for localization support of menu items "client-menu" has to be removed here --> | ||
<menu id="client-menu"> | ||
<item label="Minimize"> | ||
<action name="Iconify" /> | ||
</item> | ||
<item label="Maximize"> | ||
<action name="ToggleMaximize" /> | ||
</item> | ||
<item label="Fullscreen"> | ||
<action name="ToggleFullscreen" /> | ||
</item> | ||
<item label="Roll Up/Down"> | ||
<action name="ToggleShade" /> | ||
</item> | ||
<item label="Decorations"> | ||
<action name="ToggleDecorations" /> | ||
</item> | ||
<item label="Always on Top"> | ||
<action name="ToggleAlwaysOnTop" /> | ||
</item> | ||
<!-- | ||
Any menu with the id "workspaces" will be hidden | ||
if there is only a single workspace available. | ||
--> | ||
<menu id="workspaces" label="Workspace"> | ||
<item label="Move Left"> | ||
<action name="SendToDesktop" to="left" /> | ||
</item> | ||
<item label="Move Right"> | ||
<action name="SendToDesktop" to="right" /> | ||
</item> | ||
<separator /> | ||
<item label="Always on Visible Workspace"> | ||
<action name="ToggleOmnipresent" /> | ||
</item> | ||
</menu> | ||
<!-- | ||
openbox default workspace selector | ||
to use replace above workspace menu with the example below | ||
the label is required, but you can change the text. | ||
<menu id="client-send-to-menu" label="Send to..." /> | ||
--> | ||
<item label="Close"> | ||
<action name="Close" /> | ||
</item> | ||
</menu> | ||
|
||
<menu id="root-menu"> | ||
<!-- Make client-list-combined-menu a submenu of root-menu | ||
You must supply a label or it will not appear in root-menu --> | ||
<!-- | ||
<menu id="client-list-combined-menu" label="Running..." /> | ||
--> | ||
<item label="Web browser"> | ||
<action name="Execute" command="firefox" /> | ||
</item> | ||
<item label="Terminal"> | ||
<action name="Execute" command="foot" /> | ||
</item> | ||
<item label="Reconfigure"> | ||
<action name="Reconfigure" /> | ||
</item> | ||
<item label="Exit"> | ||
<action name="Exit" /> | ||
</item> | ||
<item label="Poweroff"> | ||
<action name="Execute" command="systemctl -i poweroff" /> | ||
</item> | ||
</menu> | ||
|
||
<menu id="some-custom-menu"> | ||
<!-- | ||
Creates menu title. | ||
To create an empty header with no text, | ||
set label=" ", not label="" | ||
--> | ||
<separator label="custom menu" /> | ||
<item label="Reconfigure"> | ||
<action name="Reconfigure" /> | ||
</item> | ||
<item label="Exit"> | ||
<action name="Exit" /> | ||
</item> | ||
</menu> | ||
|
||
</openbox_menu> |
Oops, something went wrong.