all repos — openbox @ 0caf2ba9315336aa5206d8f5f28facf14f3ff34d

openbox fork - make it a bit more like ryudo

rmove old convert.awk
Dana Jansens danakj@orodu.net
commit

0caf2ba9315336aa5206d8f5f28facf14f3ff34d

parent

4aaf063aa2842893bbaa59fe7f3ac83d885c2e38

2 files changed, 0 insertions(+), 112 deletions(-)

jump to
D nls/C/Configmenu.m

@@ -1,80 +0,0 @@

-$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
D nls/convert.awk

@@ -1,32 +0,0 @@

-/^\$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 } -