about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-10-26 12:13:41 +0200
committerarg@mig29 <unknown>2006-10-26 12:13:41 +0200
commit6f3872edbd1842f7a632ca8e2451bcac589c9db8 (patch)
tree566cba4f2307bee431655ecf2b2683d30b0cefa7
parent87324e680c318a5e63286c90e4443bb4c2898e11 (diff)
downloaddwm-6f3872edbd1842f7a632ca8e2451bcac589c9db8.tar.gz
using MASTER 600 again, it is definately better, and using urxvtc for the moment (it doesn't flickers on refreshes, but this is not because of Marc Lehmann, it is because of the original rxvt code)
-rw-r--r--config.arg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.arg.h b/config.arg.h
index fa9c019..ff7e7a7 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -17,14 +17,14 @@ const char *tags[] = { "dev", "work", "net", "fnord", NULL };
 #define STATUSBGCOLOR		"#222222"
 #define STATUSFGCOLOR		"#9999cc"
 
-#define MASTER			550 /* per thousand */
+#define MASTER			600 /* per thousand */
 #define MODKEY			Mod1Mask
 
 #define KEYS \
 static Key key[] = { \
 	/* modifier			key		function	arguments */ \
 	{ MODKEY|ShiftMask,		XK_Return,	spawn, \
-		{ .cmd = "exec uxterm -bg '#111111' -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \
+		{ .cmd = "exec urxvtc -bg '#111111' -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \
 	{ MODKEY,			XK_p,		spawn, \
 		{ .cmd = "exe=\"$(lsx `echo $PATH | sed 's/:/ /g'` | sort -u " \
 			" | dmenu -font '"FONT"' -normbg '"NORMBGCOLOR"' -normfg '"NORMFGCOLOR"' " \
lame the previous revision' href='/akkartik/mu/blame/subx/test_layers?h=hlt&id=b53ee143f8facaecbf2f18ed0a6a1251166fff67'>^
80b6f47e ^
445843f2 ^
1c80a506 ^
445843f2 ^

80b6f47e ^


ab16d49b ^
80b6f47e ^
ab16d49b ^

445843f2 ^
c0d37cee ^
a5e7292d ^

c0d37cee ^
43711b0e ^
80b6f47e ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

                                                                            

                                               
 

      
               
                             
                 

               
                           
    
 
                                
       

                                                                                               


                              
                                                                                         
               

                                                                                
      
                               

                  
        
           
    
#!/bin/bash
# Repeatedly stop building until successive layers, and run all tests built.
#
# Assumes .subx files all come after .cc files.

set -e

cd `dirname $0`
# add C++ files one at a time
for f in [0-9]*cc
do
  echo "=== $f"
  ./build_and_test_until $f
done

# build everything one last time
./clean
CFLAGS=$CFLAGS ./build  # build optimized by default since we'll be running it repeatedly below

# add SubX files one at a time
for f in [0-9]*.subx
do
  [ $f == *'memory_layout.subx' ]  &&  continue  # the very first .subx layer has no code
  echo "=== $f"
  ./subx translate $(../enumerate/enumerate --until $f |grep '\.subx$') -o a.elf
  ./subx run a.elf
  echo
  test `uname` = 'Linux'  &&  {
    chmod +x a.elf
    ./a.elf
    echo
  } || true
done