+++ /dev/null
-$set 3 #Configmenu
-
-$ #ConfigOptions
-# Config Options
-$ #FocusModel
-# Focus Model
-$ #WindowPlacement
-# Window Placement
-$ #XineramaSupport
-# Xinerama Support
-$ #ImageDithering
-# Image Dithering
-$ #OpaqueMove
-# Opaque Window Moving
-$ #FullMax
-# Full Maximization
-$ #FocusNew
-# Focus New Windows
-$ #FocusLast
-# Focus Window on Workspace Change
-$ #WindowToWindowSnap
-# Window-To-Window Snapping
-$ #WindowToEdgeSnap
-# Window-To-Edge Snapping
-$ #WindowDoSnapNo
-# No Snapping
-$ #WindowDoSnap
-# Edge Snapping
-$ #WindowDoResistance
-# Edge Resistance
-$ #WindowCornerSnap
-# Window Corner Snapping
-$ #WorkspaceWarping
-# Workspace Warping
-$ #DisableBindings
-# Disable Mouse with Scroll Lock
-$ #HideToolbar
-# Hide Toolbar
-$ #ClickToFocus
-# Click to Focus
-$ #SloppyFocus
-# Sloppy Focus
-$ #AutoRaise
-# Auto Raise
-$ #ClickRaise
-# Click Raise
-$ #SmartRows
-# Smart Placement (Rows)
-$ #SmartCols
-# Smart Placement (Columns)
-$ #Cascade
-# Cascade Placement
-$ #UnderMouse
-# Under Mouse Placement
-$ #ClickMouse
-# Click Mouse Placement
-$ #LeftRight
-# Left to Right
-$ #RightLeft
-# Right to Left
-$ #TopBottom
-# Top to Bottom
-$ #BottomTop
-# Bottom to Top
-$ #IgnoreShaded
-# Ignore Shaded Windows
-$ #IgnoreMax
-# Ignore Full-Maximized Windows
-$ #XineramaPlacement
-# Window Placement
-$ #XineramaMaximizing
-# Window Maximizing
-$ #XineramaSnapping
-# Window Snapping
-$ #XftOptions
-# Xft Font Options
-$ #XftAA
-# Anti-Alias Text
-$ #XftShadow
-# Drop Shadows Under Text
+++ /dev/null
-/^\$set/ {
- major++
- minor = 0
-
- if (major > 1)
- printf "\n" > output
- printf "$set %d %s\n", major, $3 > output
-
- if (header) {
- majorName = substr($3, 2)
- if (major > 1)
- printf "\n" > header
- printf "#define %sSet %#x\n", majorName, major > header
- }
-}
-
-/^\$ #/ {
- minor++
-
- if (header) {
- minorName = substr($2, 2)
- printf "#define %s%s %#x\n", majorName, minorName, minor > header
- }
-}
-
-/^#/ {
- text = substr($0, 3)
- printf "%d %s\n", minor, text > output
-}
-
-! /^(\$|#)/ { print > output }
-