summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-30 16:58:30 +0000
committerDana Jansens <danakj@orodu.net>2003-08-30 16:58:30 +0000
commit2c6c0757fa497f4c1e0648bcbb1927c0fa12862f (patch)
tree16b71b97f63b2877fc9d62690f41cd5de42dbf55 /data
parent009685bc4630a5deb3a48179450fb18e619c6e04 (diff)
make interactive actions a type and not special cases.
add the <interactive> option to them to turn off interactivity
Diffstat (limited to 'data')
-rw-r--r--data/rc320
1 files changed, 12 insertions, 8 deletions
diff --git a/data/rc3 b/data/rc3
index 6d9427de..1b553fa7 100644
--- a/data/rc3
+++ b/data/rc3
@@ -19,7 +19,6 @@
<followMouse>no</followMouse>
<focusLast>yes</focusLast>
<focusLastOnDesktop>yes</focusLastOnDesktop>
- <cyclingDialog>yes</cyclingDialog>
</focus>
<theme>
@@ -35,7 +34,6 @@
<name>three</name>
<name>four</name>
</names>
- <cyclingDialog>yes</cyclingDialog>
</desktops>
<resize>
@@ -135,16 +133,16 @@
<action name="showmenu"><menu>client-menu</menu></action>
</mousebind>
<mousebind button="A-Up" action="click">
- <action name="desktopright"/>
+ <action name="desktopnext"/>
</mousebind>
<mousebind button="A-Down" action="click">
- <action name="desktopleft"/>
+ <action name="desktopprevious"/>
</mousebind>
<mousebind button="C-A-Up" action="click">
- <action name="sendtodesktopright"/>
+ <action name="sendtodesktopnext"/>
</mousebind>
<mousebind button="C-A-Down" action="click">
- <action name="sendtodesktopleft"/>
+ <action name="sendtodesktopprevious"/>
</mousebind>
</context>
<context name="titlebar">
@@ -298,11 +296,17 @@
</mousebind>
</context>
<context name="desktop">
+ <mousebind button="Up" action="click">
+ <action name="desktopnext"><interactive>no</interactive></action>
+ </mousebind>
+ <mousebind button="Down" action="click">
+ <action name="desktopprevious"><interactive>no</interactive></action>
+ </mousebind>
<mousebind button="A-Up" action="click">
- <action name="desktopright"/>
+ <action name="desktopnext"/>
</mousebind>
<mousebind button="A-Down" action="click">
- <action name="desktopleft"/>
+ <action name="desktopprevious"/>
</mousebind>
<mousebind button="Middle" action="press">
<action name="showmenu"><menu>client-list-menu</menu></action>