first commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
firefox &
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user