first commit

This commit is contained in:
Stefan Hacker
2026-02-13 08:15:17 +01:00
commit 475ed08b94
8 changed files with 202 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
firefox &
+14
View File
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="root-menu" label="Menu">
<item label="Firefox">
<action name="Execute">
<execute>firefox</execute>
</action>
</item>
<separator/>
<item label="Logoff">
<action name="Exit"/>
</item>
</menu>
</openbox_menu>
+34
View File
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<openbox_config xmlns="http://openbox.org/3.4/rc">
<resistance>
<strength>10</strength>
<screen_edge_strength>20</screen_edge_strength>
</resistance>
<focus>
<focusNew>yes</focusNew>
<followMouse>no</followMouse>
</focus>
<theme>
<name>Clearlooks</name>
</theme>
<menu>
<file>menu.xml</file>
</menu>
<desktops>
<number>1</number>
</desktops>
<mouse>
<context name="Root">
<mousebind button="Right" action="Press">
<action name="ShowMenu">
<menu>root-menu</menu>
</action>
</mousebind>
</context>
</mouse>
<applications>
<application class="*">
<maximized>yes</maximized>
</application>
</applications>
</openbox_config>
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
export DISPLAY=${DISPLAY:-:10}
if [ -r /etc/profile ]; then
. /etc/profile
fi
# Start dbus session
if command -v dbus-launch >/dev/null 2>&1; then
eval $(dbus-launch --sh-syntax)
fi
exec openbox-session