summaryrefslogtreecommitdiff
path: root/doc/dwb.1
blob: dd6693073808b8a5c0f3d53e5ac664fbeee078a0 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
'\" t
.\"     Title: dwb
.\"    Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.78.0 <http://docbook.sf.net/>
.\"      Date: 03/30/2013
.\"    Manual: \ \&
.\"    Source: \ \&
.\"  Language: English
.\"
.TH "DWB" "1" "03/30/2013" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
dwb \- dynamic web browser
.SH "SYNOPSIS"
.sp
\fBdwb\fR [\fIOPTIONS\fR] [ \fIURLS\fR ]
.SH "DESCRIPTION"
.sp
dwb(1) is a small webbrowser based on WebKit and GTK which aims to be mostly keyboard\-driven\&.
.SH "OPTIONS"
.PP
\fB\-c, \-\-check\-script\-syntax\fR=\fIscript\fR
.RS 4
Checks if a the syntax of a script that uses the javascript api is correct
.RE
.PP
\fB\-e, \-\-embed\fR=\fIwid\fR
.RS 4
Embed dwb into <wid>\&.
.RE
.PP
\fB\-f, \-\-force\fR
.RS 4
Force restoring a previously saved session, even if it seems that another process has opened a session with the same name\&.
.RE
.PP
\fB\-l, \-\-list\-sessions\fR
.RS 4
List previously saved sessions\&. A
\fI*\fR
indicates that another instance has currently opened the session\&.
.RE
.PP
\fB\-n, \-\-new\-instance\fR
.RS 4
New instance, overrides setting
\fIsingle\-instance\fR\&.
.RE
.PP
\fB\-p, \-\-profile\fR=\fIprofilename\fR
.RS 4
Load configuration for profile
\fIprofilename\fR\&.
.RE
.PP
\fB\-r, \-\-restore\fR=\fIsessionname\fR
.RS 4
Restore session with name
\fIsessionname\fR
or the default session, if
\fIsessionname\fR
is omitted\&.
.RE
.PP
\fB\-R, \-\-override\-restore\fR
.RS 4
Open a new session, even if
\fIsave\-session\fR
is enabled\&.
.RE
.PP
\fB\-S, \-\-enable\-scripts\fR
.RS 4
Enables the javascript interface, if there are scripts in $XDG_CONFIG_HOME/dwb/userscripts that use the javascript api this option is not needed\&.
.RE
.PP
\fB\-x, \-\-execute\fR=\fIcommands\fR
.RS 4
Execute a list of dwb commands separated by
\fI;;\fR, see
\fICUSTOM COMMANDS\fR
and
\fICOMMAND OVERVIEW\fR
for details\&. If
\fIsingle instance\fR
is enabled all commands will be executed in the primary instance\&.
.RE
.PP
\fB\-v, \-\-version\fR
.RS 4
Show version information and exit\&.
.RE
.SH "MODES"
.sp
dwb has different modes:
.PP
\fBNormal mode\fR
.RS 4
The default mode\&. Pressing
\fIEscape\fR
always enter normal mode, all keyboard inputs will be interpreted as shortcuts, keypresses are not sent to the webview\&.
.RE
.PP
\fBInsert mode\fR
.RS 4
Used for editing text elements in a webpage\&.
.RE
.PP
\fBHint mode\fR
.RS 4
Follow links via hints\&.
.RE
.PP
\fBCommand mode\fR
.RS 4
Execute dwb commands from the builtin commandline\&.
.RE
.SH "SHORTCUTS"
.SS "Normal mode shortcuts"
.PP
\fB[n]j\fR
.RS 4
Scroll [n times] down (command:
\fIscroll_down\fR, aliases:
\fIdown\fR)\&.
.RE
.PP
\fB[n]k\fR
.RS 4
Scroll [n times] up (command:
\fIscroll_up\fR, aliases:
\fIup\fR)\&.
.RE
.PP
\fB[n]h\fR
.RS 4
Scroll [n times] left (command:
\fIscroll_left\fR, aliases:
\fIleft\fR)\&.
.RE
.PP
\fB[n]l\fR
.RS 4
Scroll [n times] right (command:
\fIscroll_right\fR, aliases:
\fIright\fR)\&.
.RE
.PP
\fB[n]gg\fR
.RS 4
Scroll to the top or to n% of the page (command:
\fIscroll_top\fR, aliases:
\fItop\fR)\&.
.RE
.PP
\fB[n]G\fR
.RS 4
Scroll to the bottom or to n% of the page (command:
\fIscroll_bottom\fR, aliases:
\fIbottom\fR)\&.
.RE
.PP
\fB[n]C\-f\fR
.RS 4
Scroll [n] pages down (command:
\fIscroll_page_down\fR, aliases:
\fIpagedown\fR)\&.
.RE
.PP
\fB[n]C\-b\fR
.RS 4
Scroll [n] pages up (command:
\fIscroll_page_up\fR, aliases:
\fIpageup\fR)\&.
.RE
.PP
\fB[n]C\-d\fR
.RS 4
Scroll [n] half pages down (command:
\fIscroll_halfpage_down\fR, aliases:
\fIhalfdown\fR)\&.
.RE
.PP
\fB[n]C\-u\fR
.RS 4
Scroll [n] half pages up (command:
\fIscroll_halfpage_up\fR, aliases:
\fIhalfup\fR)\&.
.RE
.PP
\fB:\fR
.RS 4
Enter Command mode\&.
.RE
.PP
\fBo\fR
.RS 4
Open new url in the focused tab, the argument $URI will be replaced by the current uri (command:
\fIopen\fR, aliases:
\fIo\fR)\&.
.RE
.PP
\fBgo\fR
.RS 4
Open url in the focused tab, set current url in the navigation bar (command:
\fIopen_url\fR)\&.
.RE
.PP
\fBO\fR
.RS 4
Open url in a new tab, the argument $URI will be replaced by the current uri (command:
\fItabopen\fR, aliases:
\fItopen\fR,
\fIt\fR)\&.
.RE
.PP
\fBgO\fR
.RS 4
Open url in a new tab, set current url in the navigation bar (command
\fItabopen_url\fR)\&.
.RE
.PP
\fBxo\fR
.RS 4
Open url in a new tab in background, the argument $URI will be repaced with the current uri (command:
\fIbackopen\fR, aliases:
\fIbopen\fR
)\&.
.RE
.PP
\fBxO\fR
.RS 4
Open url in a new tab in background, set current url in the navigation bar (command:
\fIbackopen_url\fR)\&.
.RE
.PP
\fBwo\fR
.RS 4
Open url in a new instance (command:
\fIwinopen\fR, aliases:
\fIwopen\fR,
\fIw\fR)\&.
.RE
.PP
\fBi\fR
.RS 4
Enter insert mode (command:
\fIinsert_mode\fR, aliases:
\fIi\fR,
\fIinsert\fR)\&.
.RE
.PP
\fBC\-n\fR
.RS 4
Enter normal mode\&.
.RE
.PP
\fBga\fR
.RS 4
Add a new blank tab (command:
\fItab_new\fR)\&.
.RE
.PP
\fBd\fR
.RS 4
Close current tab (command:
\fIclose_tab\fR, aliases:
\fIclose\fR)\&.
.RE
.PP
\fB[n]gc\fR
.RS 4
Clear tab n or of current tab, clears the history of the tab and loads
\fIabout:blank\fR\&. (command
\fIclear_tab\fR, aliases:
\fIclear\fR)\&.
.RE
.PP
\fBco\fR
.RS 4
Close all tabs except for the current one (command
\fIonly\fR)\&.
.RE
.PP
\fBC\-q\fR
.RS 4
Quit (command
\fIquit\fR, aliases:
\fIq\fR)\&.
.RE
.PP
\fBu\fR
.RS 4
Undo closing last tab (command
\fIundo\fR, aliases:
\fIu\fR)\&.
.RE
.PP
\fBC\-h\fR
.RS 4
Open the default startpage (command
\fIstart_page\fR, aliases:
\fIhome\fR)\&.
.RE
.PP
\fBH\fR
.RS 4
Go back (command
\fIhistory_back\fR, aliases:
\fIback\fR,
\fIba\fR)\&.
.RE
.PP
\fBL\fR
.RS 4
Go forward (command
\fIhistory_forward\fR, aliases:
\fIforward\fR,
\fIfo\fR)\&.
.RE
.PP
\fBth\fR
.RS 4
Go back in a new tab (command
\fItab_hist_back\fR, aliases:
\fItabback\fR,
\fItba\fR)\&.
.RE
.PP
\fBtl\fR
.RS 4
Go forward in a new tab (command
\fItab_hist_forward\fR, aliases:
\fItabforward\fR,
\fItfo\fR)\&.
.RE
.PP
\fBwh\fR
.RS 4
Go back in a new window (command
\fIwin_hist_back\fR, aliases:
\fIwinback\fR,
\fIwba\fR)\&.
.RE
.PP
\fBwl\fR
.RS 4
Go forward in a new window (command
\fIwin_hist_forward\fR, aliases:
\fIwinforward\fR,
\fIwfo\fR)\&.
.RE
.PP
\fB/\fR
.RS 4
Find forward (command
\fIfind_forward\fR, alias:
\fIffind\fR)\&.
.RE
.PP
\fB?\fR
.RS 4
Find backward (command
\fIfind_backward\fR, alias
\fIbfind\fR)\&.
.RE
.PP
\fBc/\fR
.RS 4
Find forward, ignore case (command
\fIfind_forward_ic\fR, alias:
\fIiffind\fR)\&.
.RE
.PP
\fBc?\fR
.RS 4
Find backward, ignore case (command
\fIfind_backward_ic\fR, alias
\fIibfind\fR)\&.
.RE
.PP
\fBM\fR
.RS 4
Add a bookmark (command
\fIbookmark\fR, aliases:
\fIbmark\fR,
\fIbma\fR)\&.
.RE
.PP
\fBgb\fR
.RS 4
Show Bookmarks (command
\fIbookmarks\fR, aliases:
\fIbmarks\fR,
\fIbmas\fR)\&.
.RE
.PP
\fBgB\fR
.RS 4
Show Bookmarks, open bookmark in a new tab (command
\fItab_bookmarks\fR, aliases:
\fItabmarks\fR)\&.
.RE
.PP
\fBwB\fR
.RS 4
Show Bookmarks, open bookmark in a new window (command
\fIwin_bookmarks\fR, aliases:
\fIwinmarks\fR)\&.
.RE
.PP
\fBm\fR
.RS 4
Add a quickmark (command
\fIsave_quickmark\fR, aliases:
\fIquickmark\fR,
\fIqmark\fR)\&.
.RE
.PP
\fBb\fR
.RS 4
Open quickmark (command
\fIquickmark\fR, aliases:
\fIqmarks\fR)\&.
.RE
.PP
\fBB\fR
.RS 4
Open quickmark in a new tab (command
\fItab_quickmark\fR, aliases:
\fItabqmarks\fR)\&.
.RE
.PP
\fBwb[:graph:]\fR
.RS 4
Open quickmark in a new window (command
\fIwin_quickmark\fR, aliases:
\fIwinqmarks\fR)\&.
.RE
.PP
\fB[n]r\fR
.RS 4
Reload tab n or current tab if n is omitted (command
\fIreload\fR, aliases:
\fIre\fR)\&.
.RE
.PP
\fB[n]R\fR
.RS 4
Reload tab n or current tab if n is omitted without using any cached data (command
\fIreload_bypass_cache\fR, aliases:
\fIrefull\fR)\&.
.RE
.PP
\fB[n]C\-s\fR
.RS 4
Stop loading of tab n or of current tab is [n] is omitted (command
\fIstop_loading\fR, aliases:
\fIstop\fR,
\fIst\fR)\&.
.RE
.PP
\fB[n]+\fR
.RS 4
Zoom in [n times] (command
\fIzoom_in\fR, aliases:
\fIzi\fR)\&.
.RE
.PP
\fB[n]\-\fR
.RS 4
Zoom out [n times] (command
\fIzoom_out\fR, aliases:
\fIzo\fR)\&.
.RE
.PP
\fB[n]=\fR
.RS 4
Zoom to n percent or to 100% if n is omitted(command
\fIzoom\fR, aliases:
\fIz\fR)\&.
.RE
.PP
\fBsf\fR
.RS 4
Save all configuration files (command
\fIsave\fR)\&.
.RE
.PP
\fBZZ\fR
.RS 4
Save current session and exit (command
\fIsave_session\fR, aliases:
\fIwq\fR)\&.
.RE
.PP
\fBgZZ\fR
.RS 4
Save current session with name and exit (command
\fIsave_named_session\fR, aliases:
\fIwqn\fR)\&.
.RE
.PP
\fB[n]J\fR
.RS 4
Cycle focus [n tab] forwards\&. (command
\fIfocus_next\fR, aliases:
\fItabnext\fR)\&.
.RE
.PP
\fB[n]K\fR
.RS 4
Cycle focus [n tab] backwards\&. (command
\fIfocus_prev\fR, aliases:
\fItabprev\fR)\&.
.RE
.PP
\fB[n]T\fR
.RS 4
Focus nth tab, first tab if n is omitted or last tab if n is 0\&. (command
\fIfocus_tab\fR, aliases:
\fItab\fR)\&.
.RE
.PP
\fBC\-Tab\fR
.RS 4
Toggle between current and last focused tab (command
\fItoggle_tab\fR, aliases:
\fIttab\fR)
.RE
.PP
\fB[n]gm\fR
.RS 4
Move current tab to position [n] or to first position if n is omitted\&. (command
\fItab_move\fR, aliases:
\fItabm\fR)\&.
.RE
.PP
\fB[n]gl\fR
.RS 4
Move current tab [n] positions left\&. (command
\fItab_move_left\fR, aliases:
\fItabl\fR)\&.
.RE
.PP
\fB[n]gr\fR
.RS 4
Move current tab [n] positions right\&. (command
\fItab_move_right\fR, aliases:
\fItabr\fR)\&.
.RE
.PP
\fBgt\fR
.RS 4
Show all open tabs\&. (command
\fIbuffers\fR, aliases:
\fIbu\fR)\&.
.RE
.PP
\fB[n]C\-P\fR
.RS 4
Protect tab [n]\&. Closing this tab must be confirmed (command
\fIprotect\fR, aliases:
\fIprot\fR)\&.
.RE
.PP
\fB[n]xd\fR
.RS 4
Lock tab [n]\&. Locking a tab will lock this tab to the current domain, it\(cqs not possible to navigate to another domain until unlocked\&.
\fIlock_domain\fR, aliases:
\fIdlock\fR)\&.
.RE
.PP
\fB[n]xu\fR
.RS 4
Lock tab [n]\&. Locking a tab will lock this tab to the current uri, it\(cqs not possible to navigate to another uri until unlocked\&.
\fIlock_uri\fR, aliases:
\fIulock\fR)\&.
.RE
.PP
\fBf\fR
.RS 4
Show hints (command
\fIhints\fR, aliases:
\fIhints\fR,
\fIhi\fR)\&.
.RE
.PP
\fBF\fR
.RS 4
Show hints, open link in a new foreground tab\&. (command
\fIhints_tab\fR, aliases:
\fItabhints\fR,
\fIthi\fR)\&.
.RE
.PP
\fB;b\fR
.RS 4
Show hints, open link in a new background tab\&. (command
\fIhints_background\fR, aliases:
\fIbackhints\fR,
\fIbhi\fR)\&.
.RE
.PP
\fBwf\fR
.RS 4
Show hints, open link in a new tab\&. (command
\fIhints_win\fR, aliases:
\fIwinhints\fR,
\fIwhi\fR)\&.
.RE
.PP
\fB;i\fR
.RS 4
Follow image (command
\fIhints_images\fR, aliases:
\fIihints\fR,
\fIihi\fR)\&.
.RE
.PP
\fB;I\fR
.RS 4
Follow image in a new tab (command
\fIhints_images_tab\fR, aliases:
\fIitabhints\fR,
\fIithi\fR)\&.
.RE
.PP
\fB\&.i\fR
.RS 4
Follow image in a background tab (command
\fIhints_images_background\fR, aliases:
\fIibackhints\fR)\&.
.RE
.PP
\fB;e\fR
.RS 4
Focus editable elements via hints (command
\fIhints_editable\fR, aliases:
\fIehints\fR,
\fIehi\fR)\&.
.RE
.PP
\fB;o\fR
.RS 4
Set hint\(cqs url in commandline (command
\fIhints_url\fR, aliases:
\fIuhints\fR,
\fIuhi\fR)\&.
.RE
.PP
\fB;O\fR
.RS 4
Set hint\(cqs url in commandline, open in a new tab (command
\fIhints_url_tab\fR, aliases:
\fIutabhints\fR,
\fIuthi\fR)\&.
.RE
.PP
\fB\&.o\fR
.RS 4
Set hint\(cqs url in commandline, open in a background tab (command
\fIhints_url_background\fR, aliases:
\fIubackhints\fR)\&.
.RE
.PP
\fB;d\fR
.RS 4
Download via hints (command
\fIhints_download\fR, aliases:
\fIdhints\fR)\&.
.RE
.PP
\fB;y\fR
.RS 4
Save link location to clipboard (command
\fIhints_clipboard\fR, aliases:
\fIchints\fR,
\fIchi\fR)\&.
.RE
.PP
\fB;Y\fR
.RS 4
Save link location to primary selection (command
\fIhints_primary\fR, aliases:
\fIphints\fR,
\fIphi\fR)\&.
.RE
.PP
\fB;r\fR
.RS 4
Rapid hint mode, each matching hint opens a new tab in background\&. (command
\fIhints_rapid\fR, aliases:
\fIrhints\fR,
\fIrhi\fR)\&.
.RE
.PP
\fB;R\fR
.RS 4
Rapid hint mode, each matching hint opens a new window\&. (command
\fIhints_rapid_win\fR, aliases:
\fIwrhints\fR,
\fIwrhi\fR)\&.
.RE
.PP
\fBgf\fR
.RS 4
Toggle "view source" (command
\fIview_source\fR, aliases:
\fIsource\fR,
\fIso\fR)\&.
.RE
.PP
\fBCC\fR
.RS 4
Allow persistent cookie for the current website\&. The domain will be saved in
\fIcookies\&.allow\fR\&. Cookies that are allowed by the cookies\&.allow whitelist are stored in $XDG_CONFIG_HOME/dwb/$profilename/cookies\&. (command
\fIallow_cookie\fR, aliases:
\fIcookie\fR)\&.
.RE
.PP
\fBCS\fR
.RS 4
Allow session cookie for the current website\&. The domain will be saved in
\fIcookies_session\&.allow\fR\&. This is only useful if
\fIcookies\-store\-policy\fR
is set to
\fInever\fR, see cookies\-store\-policy for details\&. (command
\fIallow_session_cookie\fR, aliases:
\fIscookie\fR)\&.
.RE
.PP
\fBCT\fR
.RS 4
Allow session cookies for the current website temporarily\&. Only first party cookies are allowed\&. The domain is not saved to a whitelist and the cookies will not be saved persitently\&. (command
\fIallow_session_cookie_tmp\fR, aliases:
\fItcookie\fR)\&.
.RE
.PP
\fB[n]yy\fR
.RS 4
Yank the url of tab n or of current tab if n is omitted to clipboard (command
\fIyank\fR)\&.
.RE
.PP
\fByY\fR
.RS 4
Yank the url of tab n or of current tab if n is omitted to primary selection (command
\fIyank_primary\fR, aliases:
\fIpyank\fR)\&.
.RE
.PP
\fByt\fR
.RS 4
Yank the title of tab n or of current tab if n is omitted to clipboard (command
\fIyank_title\fR, aliases:
\fItyank\fR)\&.
.RE
.PP
\fByT\fR
.RS 4
Yank the title of tab n or of current tab if n is omitted to primary selection (command
\fIyank_title_primary\fR, aliases:
\fItpyank\fR)\&.
.RE
.PP
\fBpp\fR
.RS 4
Paste from clipboard (command
\fIpaste\fR)\&.
.RE
.PP
\fBpP\fR
.RS 4
Paste from primary selection (command
\fIpaste_primary\fR, aliases:
\fIppaste\fR)\&.
.RE
.PP
\fBPp\fR
.RS 4
Paste from clipboard and load in a new tab (command
\fItab_paste\fR, aliases:
\fItpaste\fR)\&.
.RE
.PP
\fBPP\fR
.RS 4
Paste from primary selection and load in a new tab (command
\fItab_paste_primary\fR, aliases:
\fItppaste\fR)\&.
.RE
.PP
\fBwp\fR
.RS 4
Paste from clipboard and load in a new window (command
\fIpaste_nw\fR, aliases:
\fIwinpaste\fR)\&.
.RE
.PP
\fBwP\fR
.RS 4
Paste from primary selection and load in a new window (command
\fIpaste_primary_nw\fR, aliases:
\fIwinppaste\fR)\&.
.RE
.PP
\fB[n]ad\fR
.RS 4
Cancel the download with number n or the first download in the lists of running downloads if n is omitted\&. (command
\fIcancel_download\fR)\&.
.RE
.PP
\fBgs\fR
.RS 4
Add a searchengine\&. Textfields can be chosen with tab and a keyword must be specified\&. The first defined searchengine will be the default searchengine\&. The keyword can be used in all open commands, e\&.g\&.
\fI:open <keyword> <searchterm>\fR
(command
\fIsave_search_field\fR, aliases:
\fIsearch\fR)\&.
.RE
.PP
\fBgd\fR
.RS 4
Download the current site\&. (command
\fIdownload\fR)\&.
.RE
.PP
\fBSb\fR
.RS 4
Show bookmarks (command
\fIshow_bookmarks\fR, aliases:
\fIsbookmarks\fR)\&.
.RE
.PP
\fBSq\fR
.RS 4
Show quickmarks (command
\fIshow_quickmarks\fR, aliases:
\fIsquickmarks\fR)\&.
.RE
.PP
\fBSh\fR
.RS 4
Show history (command
\fIshow_history\fR, aliases:
\fIshistory\fR)\&.
.RE
.PP
\fBSd\fR
.RS 4
Show download (command
\fIshow_downloads\fR, aliases:
\fIsdownloads\fR)\&.
.RE
.PP
\fBSk\fR
.RS 4
Show keys (command
\fIshow_keys\fR, aliases:
\fIskeys\fR)\&.
.RE
.PP
\fBSs\fR
.RS 4
Show settings (command
\fIshow_settings\fR, aliases:
\fIssettings\fR)\&.
.RE
.PP
\fBss\fR
.RS 4
Set setting, the interactive version of the command set, for changing settings in scripts use set instead (command
\fIset_setting\fR)\&.
.RE
.PP
\fBsl\fR
.RS 4
Set local setting, changes a setting but doesn\(cqt save the setting to configuration file\&. The interactive version of the command local_set, for changing settings locally in scripts use local_set instead (command
\fIset_local_setting\fR)\&.
.RE
.PP
\fBsk\fR
.RS 4
Set keyboard shortcut (command
\fIset_key\fR, aliases:
\fIkeys\fR)\&.
.RE
.PP
\fBC\-p\fR
.RS 4
Toggle proxy (command
\fIproxy\fR)\&.
.RE
.PP
\fBtsh\fR
.RS 4
Toggle scripts for current host permanently (command
\fItoggle_scripts_host\fR, aliases:
\fIhscript\fR)\&.
.RE
.PP
\fBtsu\fR
.RS 4
Toggle scripts for current url permanently (command
\fItoggle_scripts_uri\fR, aliases:
\fIuscript\fR)\&.
.RE
.PP
\fBtth\fR
.RS 4
Toggle scripts for current host temporarily (command
\fItoggle_scripts_host_tmp\fR, aliases:
\fIthscript\fR)\&.
.RE
.PP
\fBttu\fR
.RS 4
Toggle scripts for current url temporarily (command
\fItoggle_scripts_uri_tmp\fR, aliases:
\fItuscript\fR)\&.
.RE
.PP
\fBph\fR
.RS 4
Toggle plugins for current host permanently (command
\fItoggle_plugins_host\fR, aliases:
\fIhplugin\fR)\&.
.RE
.PP
\fBpu\fR
.RS 4
Toggle plugins for current url permanently (command
\fItoggle_plugins_uri\fR, aliases:
\fIuplugin\fR)\&.
.RE
.PP
\fBpth\fR
.RS 4
Toggle plugins for current host temporarily (command
\fItoggle_plugins_host_tmp\fR, aliases:
\fIthplugin\fR)\&.
.RE
.PP
\fBptu\fR
.RS 4
Toggle plugins for current url temporarily (command
\fItoggle_plugins_uri_tmp\fR, aliases:
\fItuplugin\fR)\&.
.RE
.PP
\fBV\fR
.RS 4
Next navigation action will be opened in a new tab (command
\fInew_tab\fR)\&.
.RE
.PP
\fBW\fR
.RS 4
Next navigation action will be opened in a new window (command
\fInew_win\fR)\&.
.RE
.PP
\fBeu\fR
.RS 4
Show and execute userscripts (command
\fIexecute_userscript\fR)\&.
.RE
.PP
\fB[n]wi\fR
.RS 4
Show the webinspector of tab n or of current tab if n is omitted\&. Note that
\fIenable\-developer\-extras\fR
has to be set\&. (commmand
\fIweb_inspector\fR, aliases:
\fIinspect\fR,
\fIinsp\fR)\&.
.RE
.PP
\fBC\-e\fR
.RS 4
Open external editor for current input/textarea (command
\fIopen_editor\fR, aliases:
\fIeditor\fR)\&.
.RE
.PP
\fBg\&.\fR
.RS 4
Toggle hidden files when browsing local filesystem\&. (command
\fIopen_editor\fR, aliases:
\fIeditor\fR)\&.
.RE
.PP
\fBF11\fR
.RS 4
Toggle fullscreen (command
\fIfullscreen\fR, aliases:
\fIfs\fR)\&.
.RE
.PP
\fBF12\fR
.RS 4
Toggle presentation mode\&. (command
\fIpresentation_mode\fR, aliases:
\fIpresent\fR)\&.
.RE
.PP
\fBxx\fR
.RS 4
Toggle visibility of tabbar and statusbar\&. (command
\fItoggle_bars\fR, aliases:
\fIbars\fR)\&.
.RE
.PP
\fBxt\fR
.RS 4
Toggle visibility of tabbar\&. (command
\fItoggle_tabbar\fR, aliases:
\fItbar\fR)\&.
.RE
.PP
\fBxb\fR
.RS 4
Toggle visibility of statusbar\&. (command
\fItoggle_statusbar\fR, aliases:
\fIsbar\fR)\&.
.RE
.PP
\fBxv\fR
.RS 4
Toggle visibility of a tab\&. (command
\fIvisible\fR, aliases:
\fIvis\fR)\&.
.RE
.PP
\fB[n]C\-M\-p\fR
.RS 4
Print focused frame of tab n or of current tab if n is omitted\&. (command
\fIprint\fR, aliases:
\fIha\fR)\&.
.RE
.PP
\fBunbound\fR
.RS 4
Execute a javascript snippet (command
\fIexecute_javascript\fR, aliases:
\fIexja\fR,
\fIjs\fR)\&.
.RE
.PP
\fBunbound\fR
.RS 4
Set a setting from commandline (command
\fIset\fR)\&.
.RE
.PP
\fBunbound\fR
.RS 4
Toggle a boolean setting from commandline (command
\fItoggle_setting\fR, aliases:
\fItoggle\fR,
\fItog\fR)\&.
.RE
.PP
\fBunbound\fR
.RS 4
Load a html string\&. This command is mainly intended for use in userscripts (command
\fIload_html\fR)\&.
.RE
.PP
\fBunbound\fR
.RS 4
Load a html string in a new tab\&. This command is mainly intended for use in userscripts (command
\fIload_html_tab\fR)\&.
.RE
.PP
\fBunbound\fR
.RS 4
Execute a javascript snippet that uses the the internal javascript api\&. This command only works if the javascript interface is enabled, i\&.e\&. if there are scripts in $XDG_CONFIG_HOME/dwb/userscripts that use the api or if dwb is started with \-S/\-\-enable\-scripts (command
\fIeval\fR)\&.
.RE
.PP
\fBTab (S\-Tab)\fR
.RS 4
In normal mode Tab shows the next (previous) shortcut, that matches the currently entered keysequence\&. When opening a url, the next (previous) item in command history, bookmarks or history will be completed\&. In hint mode the next (previous) hint will get focus\&. Tab also completes settings and shortcut\-settings\&. When initiating a download, full paths (downloads and spawning programs) and binaries (spawning programs) in PATH will be completed\&. In command mode tab will complete builtin commands and urls if the command accepts an url\&.
.RE
.SS "Textentry shortcuts"
.PP
\fBC\-h\fR
.RS 4
Delete a single letter\&.
.RE
.PP
\fBC\-w\fR
.RS 4
Delete word back\&.
.RE
.PP
\fBC\-e\fR
.RS 4
Delete word forward\&.
.RE
.PP
\fBC\-u\fR
.RS 4
Delete to the beginning of the entry\&.
.RE
.PP
\fBC\-i\fR
.RS 4
Delete to the end of the entry\&.
.RE
.PP
\fBC\-f\fR
.RS 4
Move cursor one word forward\&.
.RE
.PP
\fBC\-b\fR
.RS 4
Move cursor one word back\&.
.RE
.PP
\fBC\-j\fR
.RS 4
Show next item in command history\&.
.RE
.PP
\fBC\-k\fR
.RS 4
Show previous item in command history\&.
.RE
.PP
\fBC\-x\fR
.RS 4
When initalizing a download, C\-x toggles between choosing a file path and choosing a spawning application\&.
.RE
.PP
\fBC\-g\fR
.RS 4
Alternative shortcut for activate\&.
.RE
.PP
\fBC\-c\fR
.RS 4
Alternative shortcut for escape, the corresponding setting is \&.IR entry_escape \&.
.RE
.PP
\fBC\-p\fR
.RS 4
Init local path completion\&.
.RE
.PP
\fBC\-H\fR
.RS 4
Init history completion\&.
.RE
.PP
\fBC\-B\fR
.RS 4
Init bookmark completion\&.
.RE
.PP
\fBC\-I\fR
.RS 4
Init input history completion\&.
.RE
.PP
\fBC\-S\fR
.RS 4
Init searchengine completion\&.
.RE
.PP
\fBC\-U\fR
.RS 4
Init userscript completion\&.
.RE
.PP
\fBC\-p\fR
.RS 4
Complete local path\&.
.RE
.SS "Shortcut syntax"
.sp
All printable shortcuts are case sensitive, i\&.e\&. aH means press a then press shift, then press h\&. Shortcuts can be combined with a modifier, valid modifiers are \fIControl\fR, \fIMod1\fR, \fIMod4\fR and \fIShift\fR where Shift can only be used with non printable keys such as F1, space, Tab, \&... \&. Non printable keys must be surrounded by @, e\&.g\&. "Control @F1@", Shift @space@\&. \e and @ itself must be escaped with \e\&.
.SH "CUSTOM COMMANDS"
.sp
Custom commands are a sequence of dwb commands that can be bound to a shortcut\&. The syntax is
.sp
.if n \{\
.RS 4
.\}
.nf
<shortcut>:<command>;;<command>;;\&.\&.\&.
.fi
.if n \{\
.RE
.\}
.sp
where shortcut is the shortcut for the commandsequence, \fB:\fR may be escaped with \fB\e:\fR and command is of the form
.sp
.if n \{\
.RS 4
.\}
.nf
[numerical modifier]<command or alias> [argument for the command]
.fi
.if n \{\
.RE
.\}
.sp
for example
.sp
.if n \{\
.RS 4
.\}
.nf
Control W:tabopen http://example\&.com;; 150zoom
.fi
.if n \{\
.RE
.\}
.sp
opens http://example\&.com in a new tab and zooms to 150%\&.
.SH "COMMAND OVERVIEW"
.TS
allbox tab(:);
ltB ltB ltB.
T{
Command
T}:T{
Alias
T}:T{
Description
T}
.T&
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt.
T{
.sp
allow_cookie
T}:T{
.sp
cookie
T}:T{
.sp
Allow persistent cookies for current site
T}
T{
.sp
allow_session_cookie
T}:T{
.sp
scookie
T}:T{
.sp
Allow session cookies for currrent site
T}
T{
.sp
allow_session_cookie_tmp
T}:T{
.sp
tcookie
T}:T{
.sp
Allow session cookies for current site temporarily
T}
T{
.sp
bookmark
T}:T{
.sp
bma, bmark
T}:T{
.sp
Bookmark current page
T}
T{
.sp
bookmarks
T}:T{
.sp
bmas, bmarks
T}:T{
.sp
Show bookmarks
T}
T{
.sp
buffers
T}:T{
.sp
bu
T}:T{
.sp
Show all open tabs
T}
T{
.sp
cancel_download
T}:T{
.sp
T}:T{
.sp
Cancel a download
T}
T{
.sp
clear_tab
T}:T{
.sp
clear
T}:T{
.sp
Clear tab
T}
T{
.sp
close_tab
T}:T{
.sp
close
T}:T{
.sp
Close tab
T}
T{
.sp
download
T}:T{
.sp
T}:T{
.sp
Download current site
T}
T{
.sp
dump
T}:T{
.sp
T}:T{
.sp
Write html of current website to a file or stdout if no argument is given
T}
T{
.sp
eval
T}:T{
.sp
T}:T{
.sp
Execute a javascript snippet that uses the internal javascript api
T}
T{
.sp
execute_javascript
T}:T{
.sp
exja, js
T}:T{
.sp
Execute a javascript snippet
T}
T{
.sp
execute_userscript
T}:T{
.sp
T}:T{
.sp
Execute userscript
T}
T{
.sp
find_backward
T}:T{
.sp
bfind
T}:T{
.sp
Find backward
T}
T{
.sp
find_backward_ic
T}:T{
.sp
ibfind
T}:T{
.sp
Find backward case sensitive
T}
T{
.sp
find_forward
T}:T{
.sp
ffind
T}:T{
.sp
Find forward
T}
T{
.sp
find_forward_ic
T}:T{
.sp
iffind
T}:T{
.sp
Find forward case sensitive
T}
T{
.sp
find_next
T}:T{
.sp
fnext
T}:T{
.sp
Find next
T}
T{
.sp
find_previous
T}:T{
.sp
fprev
T}:T{
.sp
Find previous
T}
T{
.sp
focus_input
T}:T{
.sp
T}:T{
.sp
Focus next input
T}
T{
.sp
focus_next
T}:T{
.sp
tabnext
T}:T{
.sp
Focus next tab
T}
T{
.sp
focus_prev
T}:T{
.sp
tabprev
T}:T{
.sp
Focus previous tab
T}
T{
.sp
focus_tab
T}:T{
.sp
tab
T}:T{
.sp
Focus nth tab
T}
T{
.sp
fullscreen
T}:T{
.sp
fs
T}:T{
.sp
Toggle fullscreen
T}
T{
.sp
hints
T}:T{
.sp
hi
T}:T{
.sp
Follow hints
T}
T{
.sp
hints_background
T}:T{
.sp
backhints, bhi
T}:T{
.sp
Follow hints in a background tab
T}
T{
.sp
hints_clipboard
T}:T{
.sp
chints, chi
T}:T{
.sp
Save link location to clipboard
T}
T{
.sp
hints_download
T}:T{
.sp
dhints, dhi
T}:T{
.sp
Download via hints
T}
T{
.sp
hints_editable
T}:T{
.sp
ehints, ehi
T}:T{
.sp
Focus editable elements
T}
T{
.sp
hints_images
T}:T{
.sp
ihints, ihi
T}:T{
.sp
Follow images
T}
T{
.sp
hints_images_tab
T}:T{
.sp
itabhints, ithi
T}:T{
.sp
Follow images in a new tab
T}
T{
.sp
hints_images_background
T}:T{
.sp
ibackhints
T}:T{
.sp
Follow images in a background tab
T}
T{
.sp
hints_links
T}:T{
.sp
lhints, lhi
T}:T{
.sp
Follow links
T}
T{
.sp
hints_primary
T}:T{
.sp
phints, phi
T}:T{
.sp
Save link location to primary selection
T}
T{
.sp
hints_rapid
T}:T{
.sp
rhints, rhi
T}:T{
.sp
Open new tabs in background rapidly
T}
T{
.sp
hints_rapid_win
T}:T{
.sp
wrhints, wrhi
T}:T{
.sp
Open new windows rapidly
T}
T{
.sp
hints_tab
T}:T{
.sp
tabhints, thi
T}:T{
.sp
Follow hints in a new tab
T}
T{
.sp
hints_url
T}:T{
.sp
uhints, uhi
T}:T{
.sp
Set hints url in commandline
T}
T{
.sp
hints_url_tab
T}:T{
.sp
utabhints, uthi
T}:T{
.sp
Set hints url in commandline, open in a new tab
T}
T{
.sp
hints_url_background
T}:T{
.sp
ubackhints
T}:T{
.sp
Set hints url in commandline, open in a background tab
T}
T{
.sp
hints_win
T}:T{
.sp
winhints, whi
T}:T{
.sp
Follow hints in a new window
T}
T{
.sp
history_back
T}:T{
.sp
ba, back
T}:T{
.sp
Go back
T}
T{
.sp
history_forward
T}:T{
.sp
fo, forward
T}:T{
.sp
Go forward
T}
T{
.sp
insert_mode
T}:T{
.sp
i, insert
T}:T{
.sp
Insert mode local_set Set a setting only for the running instance, don\(cqt save it to the configuration file
T}
T{
.sp
lock_domain
T}:T{
.sp
dlock
T}:T{
.sp
Lock tab to current domain
T}
T{
.sp
lock_uri
T}:T{
.sp
ulock
T}:T{
.sp
Lock tab to current uri
T}
T{
.sp
new_tab
T}:T{
.sp
T}:T{
.sp
Open next navigation action in new tab
T}
T{
.sp
new_win
T}:T{
.sp
T}:T{
.sp
Open next navigation action in new window
T}
T{
.sp
only
T}:T{
.sp
T}:T{
.sp
Close all tabs except for the current one
T}
T{
.sp
open
T}:T{
.sp
o
T}:T{
.sp
Open url
T}
T{
.sp
open_editor
T}:T{
.sp
editor
T}:T{
.sp
Open external editor for input/textarea\&.
T}
T{
.sp
open_url
T}:T{
.sp
T}:T{
.sp
Open, edit current url
T}
T{
.sp
paste
T}:T{
.sp
T}:T{
.sp
Open from clipboard
T}
T{
.sp
paste_primary
T}:T{
.sp
ppaste
T}:T{
.sp
Open from primary selection
T}
T{
.sp
presentation_mode
T}:T{
.sp
present
T}:T{
.sp
Toggle presentation mode
T}
T{
.sp
print
T}:T{
.sp
ha
T}:T{
.sp
Print page
T}
T{
.sp
print_preview
T}:T{
.sp
T}:T{
.sp
Show a print preview
T}
T{
.sp
protect
T}:T{
.sp
prot
T}:T{
.sp
Protect/unprotect tab
T}
T{
.sp
proxy
T}:T{
.sp
T}:T{
.sp
Toggle proxy
T}
T{
.sp
quickmark
T}:T{
.sp
qmarks
T}:T{
.sp
Open quickmark
T}
T{
.sp
quit
T}:T{
.sp
q
T}:T{
.sp
Quit
T}
T{
.sp
reload
T}:T{
.sp
re
T}:T{
.sp
Reload current page
T}
T{
.sp
reload_bookmarks
T}:T{
.sp
T}:T{
.sp
Reload bookmark file
T}
T{
.sp
reload_bypass_cache
T}:T{
.sp
refull
T}:T{
.sp
Reload without using cached data
T}
T{
.sp
reload_quickmarks
T}:T{
.sp
T}:T{
.sp
Reload quickmark file
T}
T{
.sp
reload_userscripts
T}:T{
.sp
T}:T{
.sp
Reload userscripts
T}
T{
.sp
save
T}:T{
.sp
T}:T{
.sp
Save all configuration files
T}
T{
.sp
save_named_session
T}:T{
.sp
wqn
T}:T{
.sp
Save current session with name
T}
T{
.sp
save_quickmark
T}:T{
.sp
qmark, quickmark
T}:T{
.sp
Save a quickmark
T}
T{
.sp
save_search_field
T}:T{
.sp
search
T}:T{
.sp
Add a new searchengine
T}
T{
.sp
save_session
T}:T{
.sp
wq
T}:T{
.sp
Save current session
T}
T{
.sp
scroll_bottom
T}:T{
.sp
bottom
T}:T{
.sp
Scroll to bottom of the page
T}
T{
.sp
scroll_down
T}:T{
.sp
down
T}:T{
.sp
Scroll down
T}
T{
.sp
scroll_halfpage_down
T}:T{
.sp
halfdown
T}:T{
.sp
Scroll one\-half page down
T}
T{
.sp
scroll_halfpage_up
T}:T{
.sp
halfup
T}:T{
.sp
Scroll one\-half page up
T}
T{
.sp
scroll_left
T}:T{
.sp
left
T}:T{
.sp
Scroll left
T}
T{
.sp
scroll_page_down
T}:T{
.sp
pagedown
T}:T{
.sp
Scroll one page down
T}
T{
.sp
scroll_page_up
T}:T{
.sp
pageup
T}:T{
.sp
Scroll one page up
T}
T{
.sp
scroll_right
T}:T{
.sp
right
T}:T{
.sp
Scroll right
T}
T{
.sp
scroll_top
T}:T{
.sp
top
T}:T{
.sp
Scroll to the top of the page
T}
T{
.sp
scroll_up
T}:T{
.sp
up
T}:T{
.sp
Scroll up
T}
T{
.sp
sanitize
T}:T{
.sp
T}:T{
.sp
Clears history and cookies, \fIsanitize history\fR only clears history \fIsanitize cookies\fR only clears cookies
T}
T{
.sp
set
T}:T{
.sp
T}:T{
.sp
Set a setting
T}
T{
.sp
set_key
T}:T{
.sp
keys
T}:T{
.sp
Set keybinding
T}
T{
.sp
set_local_setting
T}:T{
.sp
T}:T{
.sp
Set a setting for the running instance interactively
T}
T{
.sp
set_setting
T}:T{
.sp
T}:T{
.sp
Set a setting interactive
T}
T{
.sp
show_keys
T}:T{
.sp
skeys
T}:T{
.sp
Show and modify keyboard configuration
T}
T{
.sp
show_settings
T}:T{
.sp
ssettings
T}:T{
.sp
Show and modify global properties
T}
T{
.sp
start_page
T}:T{
.sp
home
T}:T{
.sp
Open the default homepage
T}
T{
.sp
stop_loading
T}:T{
.sp
st, stop
T}:T{
.sp
Stop loading current page
T}
T{
.sp
tab_bookmarks
T}:T{
.sp
tabmarks
T}:T{
.sp
Show bookmarks, open in new tab
T}
T{
.sp
tabdo
T}:T{
.sp
T}:T{
.sp
Execute a command in all tabs
T}
T{
.sp
tab_hist_back
T}:T{
.sp
tba, tabback
T}:T{
.sp
Go back in a new tab
T}
T{
.sp
tab_hist_forward
T}:T{
.sp
tfo, tabforward
T}:T{
.sp
Go forward in a new tab
T}
T{
.sp
tab_move
T}:T{
.sp
tabm
T}:T{
.sp
Move tab
T}
T{
.sp
tab_move_left
T}:T{
.sp
tabl
T}:T{
.sp
Move tab left
T}
T{
.sp
tab_move_right
T}:T{
.sp
tabr
T}:T{
.sp
Move tab right
T}
T{
.sp
tab_new
T}:T{
.sp
T}:T{
.sp
Open a new blank tab
T}
T{
.sp
tab_paste
T}:T{
.sp
tpaste
T}:T{
.sp
Open from clipboard in a new tab
T}
T{
.sp
tab_paste_primary
T}:T{
.sp
tppaste
T}:T{
.sp
Open from primary selection in a new tab
T}
T{
.sp
tab_quickmark
T}:T{
.sp
tabqmarks
T}:T{
.sp
Open quickmark in a new tab
T}
T{
.sp
tabopen
T}:T{
.sp
t, topen
T}:T{
.sp
Open in a new tab
T}
T{
.sp
tabopen_url
T}:T{
.sp
T}:T{
.sp
Open in a new tab, edit current url
T}
T{
.sp
toggle_bars
T}:T{
.sp
bars
T}:T{
.sp
Toggle tabbar and statusbar
T}
T{
.sp
toggle_hidden_files
T}:T{
.sp
hidden
T}:T{
.sp
Toggle hidden files in directory listings
T}
T{
.sp
toggle_plugins_host
T}:T{
.sp
hplugin
T}:T{
.sp
Toggle plugin blocker for host
T}
T{
.sp
toggle_plugins_host_tmp
T}:T{
.sp
tuplugin
T}:T{
.sp
Toggle plugin blocker for domain for this session
T}
T{
.sp
toggle_plugins_uri
T}:T{
.sp
uplugin
T}:T{
.sp
Toggle plugin blocker for uri
T}
T{
.sp
toggle_plugins_uri_tmp
T}:T{
.sp
tuplugin
T}:T{
.sp
Toggle plugin blocker for uri for this session
T}
T{
.sp
toggle_scripts_host
T}:T{
.sp
hscript
T}:T{
.sp
Toggle scripts for current domain
T}
T{
.sp
toggle_scripts_host_tmp
T}:T{
.sp
thscript
T}:T{
.sp
Toggle scripts for current host for this session
T}
T{
.sp
toggle_scripts_uri
T}:T{
.sp
uscript
T}:T{
.sp
Toggle scripts for current uri
T}
T{
.sp
toggle_scripts_uri_tmp
T}:T{
.sp
tuscript
T}:T{
.sp
Toggle scripts for current uri for this session
T}
T{
.sp
toggle_setting
T}:T{
.sp
tog, toggle
T}:T{
.sp
Toggle a setting
T}
T{
.sp
toggle_local_setting
T}:T{
.sp
loctog
T}:T{
.sp
Toggle a setting for the current session
T}
T{
.sp
toggle_statusbar
T}:T{
.sp
sbar
T}:T{
.sp
Toggle statusbar
T}
T{
.sp
toggle_tab
T}:T{
.sp
ttab
T}:T{
.sp
Toggle between current and last tab
T}
T{
.sp
toggle_tabbar
T}:T{
.sp
tbar
T}:T{
.sp
Toggle tabbar
T}
T{
.sp
undo
T}:T{
.sp
u
T}:T{
.sp
Undo closing last tab
T}
T{
.sp
view_source
T}:T{
.sp
so, source
T}:T{
.sp
View page source
T}
T{
.sp
visible
T}:T{
.sp
vis
T}:T{
.sp
Toggle visibility of a tab
T}
T{
.sp
web_inspector
T}:T{
.sp
insp, inspect
T}:T{
.sp
Open the webinspector
T}
T{
.sp
win_bookmarks
T}:T{
.sp
winmarks
T}:T{
.sp
Show bookmarks, open in new window
T}
T{
.sp
win_hist_back
T}:T{
.sp
wba, winback
T}:T{
.sp
Go back in a new window
T}
T{
.sp
win_hist_forward
T}:T{
.sp
wfo, winforward
T}:T{
.sp
Go forward in a new window
T}
T{
.sp
win_paste
T}:T{
.sp
wpaste
T}:T{
.sp
Open from clipboard in a new window
T}
T{
.sp
win_paste_primary
T}:T{
.sp
wppaste
T}:T{
.sp
Open primary selection in a new window
T}
T{
.sp
win_quickmark
T}:T{
.sp
winqmarks
T}:T{
.sp
Open quickmark in a new window
T}
T{
.sp
winopen
T}:T{
.sp
w, wopen
T}:T{
.sp
Open in a new window
T}
T{
.sp
winopen_url
T}:T{
.sp
T}:T{
.sp
Open in a new window, edit current url
T}
T{
.sp
yank
T}:T{
.sp
T}:T{
.sp
Yank url to clipboard
T}
T{
.sp
yank_primary
T}:T{
.sp
pyank
T}:T{
.sp
Yank url to primary selection
T}
T{
.sp
yank_title
T}:T{
.sp
tyank
T}:T{
.sp
Yank title to clipboard
T}
T{
.sp
yank_title_primary
T}:T{
.sp
tpyank
T}:T{
.sp
Yank title to primary selection
T}
T{
.sp
zoom
T}:T{
.sp
z
T}:T{
.sp
Zoom
T}
T{
.sp
zoom_in
T}:T{
.sp
zi
T}:T{
.sp
Zoom in
T}
T{
.sp
zoom_out
T}:T{
.sp
zo
T}:T{
.sp
Zoom out
T}
.TE
.sp 1
.sp
dwb can be customized in a web interface (command \fIshow_settings\fR) or via command line (command \fIset_setting\fR)\&. Modified settings will be saved in Modified settings will be saved in \fI~/\&.config/dwb/settings\fR when closing dwb\&. Shorcuts can also be modified in a web interface (command \fIshow_keys\fR) or via command line (command \fIset_key\fR)\&. Shortcuts will be saved in \fI$HOME/\&.config/dwb/keys\fR\&.
.sp
If a string value is set to \fINULL\fR the default value will be used\&.
.SS "WebKit builtin settings"
.PP
\fBauto\-load\-images\fR
.RS 4
Load images automatically\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBauto\-resize\-window\fR
.RS 4
Resize window through DOM\-methods\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBauto\-shrink\-images\fR
.RS 4
Automatically shrink standalone images to fit\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBcursive\-font\-family\fR
.RS 4
Default cursive font family used to display text\&. Possible values: a font description or NULL, default value:
\fINULL\fR\&.
.RE
.PP
\fBcustom\-encoding\fR
.RS 4
A custom encoding used for the webview\&. Possible values: encoding string or NULL, default value:
\fINULL\fR\&.
.RE
.PP
\fBdefault\-encoding\fR
.RS 4
The default encoding used to display text\&. Possible values: encoding string or NULL, default value:
\fINULL\fR\&.
.RE
.PP
\fBdefault\-font\-family\fR
.RS 4
The default font family used to display text\&. Possible values: a font description or NULL, default value:
\fIsans\-serif\fR\&.
.RE
.PP
\fBdefault\-font\-size\fR
.RS 4
The default font size used to display text\&. Possible values: a font size (integer), default value:
\fI12\fR\&.
.RE
.PP
\fBdefault\-monospace\-font\-size\fR
.RS 4
The default font size used to display monospace text\&. Possible values: a font size (integer), default value:
\fI10\fR\&.
.RE
.PP
\fBeditable\fR
.RS 4
Whether the content of a webpage should be editable\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-accelerated\-compositing\fR
.RS 4
Whether to enable gpu accelerated compositing\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-caret\-browsing\fR
.RS 4
Whether to enable caret browsing\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-default\-context\-menu\fR
.RS 4
Whether right\-clicks open a context menu\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-dns\-prefetching\fR
.RS 4
Whether webkit prefetches domain names\&. default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-developer\-extras\fR
.RS 4
Whether the web\-inspector should be enabled\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-dom\-paste\fR
.RS 4
Whether enable DOM\-paste\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-frame\-flattening\fR
.RS 4
Whether to enable the Frame Flattening\&. With this setting each subframe is expanded to its contents, which will flatten all the frames to become one scrollable page\&. Whether file uris can be accessed\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-file\-access\-from\-file\-uris\fR
.RS 4
Whether file uris can be accessed\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-html5\-database\fR
.RS 4
Whether to enable HTML5 client\-side SQL database support\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-html5\-local\-storage\fR
.RS 4
Whether to enable HTML5 localStorage support\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-java\-applet\fR
.RS 4
Whether to enable Java <applet>\-tag\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-offline\-web\-application\-cache\fR
.RS 4
Enable or disable HTML5 offline web application cache support\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-page\-cache\fR
.RS 4
Enable or disable page cache\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-plugins\fR
.RS 4
Enable or disable embedded plugins\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-private\-browsing\fR
.RS 4
Enable or disable private browsing\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-scripts\fR
.RS 4
Enable or disable embedded scripting\-languages\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-site\-specific\-quirks\fR
.RS 4
Enables the site\-specific compatibility workarounds\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-spatial\-navigation\fR
.RS 4
Whether to enable the Spatial Navigation\&. This feature consists in the ability to navigate between focusable elements in a Web page, such as hyperlinks and form controls, by using Left, Right, Up and Down arrow keys\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-spell\-checking\fR
.RS 4
Whether to enable spell checking\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-universal\-access\-from\-file\-uris\fR
.RS 4
Whether to allow files loaded through file:// URIs universal access to all pages\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenable\-webgl\fR
.RS 4
Whether to enable the webgl on pages\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBenable\-xss\-auditor\fR
.RS 4
Whether to enable the XSS Auditor\&. This feature filters some kinds of reflective XSS attacks on vulnerable web sites\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBenforce\-96\-dpi\fR
.RS 4
Enforce a resolution of 96 DPI\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBfantasy\-font\-family\fR
.RS 4
Default fantasy font family used to display text\&. Possible values: a font description or NULL, default value:
\fIserif\fR\&.
.RE
.PP
\fBjavascript\-can\-access\-clipboard\fR
.RS 4
Whether javascript can access Clipboard\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBfull\-content\-zoom\fR
.RS 4
Whether the full content is scaled when zooming\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBjavascript\-can\-open\-windows\-automatically\fR
.RS 4
Whether JavaScript can open popup windows automatically without user intervention\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBminimum\-font\-size\fR
.RS 4
The minimum font size used to display text\&. Possible values: a font size (integer), default value:
\fI5\fR\&.
.RE
.PP
\fBminimum\-logical\-font\-size\fR
.RS 4
The minimum logical font size used to display text\&. Possible values: a font size (integer), default value:
\fI5\fR\&.
.RE
.PP
\fBmonospace\-font\-family\fR
.RS 4
Default font family used to display monospace text\&. Possible values: a font description or NULL, default value:
\fImonospace\fR\&.
.RE
.PP
\fBprint\-backgrounds\fR
.RS 4
Whether background images should be printed\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBresizable\-text\-areas\fR
.RS 4
Whether text areas are resizable\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBsans\-serif\-font\-family\fR
.RS 4
Default sans\-serif font family used to display text\&. Possible values: a font description or NULL, default value:
\fIsans\-serif\fR\&.
.RE
.PP
\fBserif\-font\-family\fR
.RS 4
Default serif font family used to display text\&. Possible values: a font description or NULL, default value:
\fIserif\fR\&.
.RE
.PP
\fBspell\-checking\-language\fR
.RS 4
The languages to be used for spell checking, separated by commas\&. Possible values: a string or NULL, default value:
\fINULL\fR\&.
.RE
.PP
\fBtab\-cycles\-through\-elements\fR
.RS 4
Whether the tab key cycles through elements on the page\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBuser\-agent\fR
.RS 4
The user\-agent\-string\&. Possible values: a user\-agent or NULL, default value:
\fINULL\fR\&.
.RE
.PP
\fBuser\-stylesheet\-uri\fR
.RS 4
The URI of a stylesheet that is applied to every page\&. If a local file is used, must start with file://\&. Possible values: an uri\-string or NULL, default value:
\fINULL\fR\&.
.RE
.PP
\fBzoom\-level\fR
.RS 4
The zoom level of the content\&. Possible values: a decimal, default value:
\fI1\&.0\fR\&.
.RE
.PP
\fBzoom\-step\fR
.RS 4
The value by which the zoom level is changed when zooming in or out\&. Possible values: a decimal, default value:
\fI0\&.1\fR\&.
.RE
.SS "Other settings"
.PP
\fBaccept\-language\fR
.RS 4
If set it will be used to set
\fIAccept\-Language\fR
header for all requests, default value:
\fINULL\fR
.RE
.PP
\fBactive\-completion\-bg\-color\fR
.RS 4
The background color for an active element in tab\-completion\&. Possible values: an rgb color\-string, default value:
\fI#000000\fR\&.
.RE
.PP
\fBactive\-completion\-fg\-color\fR
.RS 4
The foreground color for an active element in tab\-completion\&. Possible values: an rgb color\-string\&. default value:
\fI#53868b\fR\&.
.RE
.PP
\fBadblocker\fR
.RS 4
Block advertisements using a filterlist, see also \&.IR adblocker\-filterlist \&. Default value:
\fIfalse\fR\&.
.RE
.PP
\fBadblocker\-filterlist\fR
.RS 4
A path to a adblock plus compatible filterlist for the adblocker or a path to a directory with filterlists\&. Default value:
\fINULL\fR\&.
.RE
.PP
\fBaddressbar\-dns\-lookup\fR
.RS 4
Whether to perform a dns lookup for text typed into the address bar\&. If set to true dwb performs a dns lookup for all text that does not have a valid scheme and does not contain whitespaces\&. Default value: false\&.
.RE
.PP
\fBbackground\-color\fR
.RS 4
The background color of the statusbar\&. Possible values: an rgb color\-string, default value:
\fI#000000\fR\&.
.RE
.PP
\fBbars\-padding\fR
.RS 4
Padding of the status, download, completion and tab bars, default value: 0\&.
.RE
.PP
\fBauto\-completion\fR
.RS 4
Whether possible keystrokes should be shown\&. (Shift\-) Tab cycles through keystrokes\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBauto\-insert\-mode\fR
.RS 4
Whether to go automatically in insert mode if an editable element has focus after loading a site\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBbackground\-tabs\fR
.RS 4
Open new tabs in background\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBcache\-model\fR
.RS 4
The cache model used by webkit, possible values are
\fIwebbrowser\fR
and
\fIdocumentviewer\fR\&. Webbrowser increases loading speed but increases memory usage, documentviewer reduces memory usage but also decreases browsing speed\&. Default Value:
\fIwebbrowser\fR\&.
.RE
.PP
\fBclose\-last\-tab\-policy\fR
.RS 4
Behaviour when the last tab is closed, possible values are
\fIignore\fR,
\fIclear\fR
and
\fIclose\fR; default value:
\fIignore\fR\&.
.RE
.PP
\fBclose\-tab\-focus\-policy\fR
.RS 4
Controls the focus when the focused tab is closed, possible values are
\fIright\fR,
\fIleft\fR,
\fIrightmost\fR, and
\fIleftmost\fR; default value:
\fIright\fR\&.
.RE
.PP
\fBcomplete\-bookmarks\fR
.RS 4
Whether to complete bookmarks with tab\-completion\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBcomplete\-history\fR
.RS 4
Whether to complete browsing history with tab\-completion\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBcomplete\-searchengines\fR
.RS 4
Whether to complete searchengines with tab\-completion\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBcomplete\-userscripts\fR
.RS 4
Whether to complete userscripts with tab\-completion\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBcookies\-store\-policy\fR
.RS 4
The storage policy for cookies, possible values are
\fIsession\fR,
\fIpersistent\fR, and
\fInever\fR\&. If set to session all session cookies are accepted, only cookies with a matching domain in cookies\&.allow will be stored persistently\&. If set to
\fIpersistent\fR
all cookies are stored persistently\&. If set to
\fInever\fR
the cookies allowed by cookies_session\&.allow are allowed for the current session and cookies allowed by cookies\&.allow are save persistently, all other cookies are rejected\&. Default value:
\fIsession\fR\&.
.RE
.PP
\fBcookies\-accept\-policy\fR
.RS 4
The accept policy for cookies\&.
\fIalways\fR
will accept all cookies,
\fInothirdparty\fR
will accept all cookies except for third party cookies,
\fInever\fR
will reject all cookies\&. This setting also affects session cookies\&. default value:
\fIalways\fR\&.
.RE
.PP
\fBdefault\-width\fR
.RS 4
The default width of dwb\(cqs window\&. Possible values: width in pixel, default value:
\fI800\fR\&.
.RE
.PP
\fBdefault\-height\fR
.RS 4
The default height of dwb\(cqs window\&. Possible values: height in pixel, default value:
\fI600\fR\&.
.RE
.PP
\fBdo\-not\-track\fR
.RS 4
Whether to add do\-not\-track flag on request headers, default value:
\fItrue\fR\&.
.RE
.PP
\fBdownload\-fg\-color\fR
.RS 4
The foreground color of the download bar, default value:
\fI#ffffff\fR\&.
.RE
.PP
\fBdownload\-bg\-color\fR
.RS 4
The background color of the download bar, default value:
\fI#000000\fR\&.
.RE
.PP
\fBdownload\-gradient\-start\fR
.RS 4
The start color for the download progress gradient color, default value
\fI#0000aa\fR\&.
.RE
.PP
\fBdownload\-gradient\-stop\fR
.RS 4
The end color for the download progress gradient color, default value
\fI#00aa00\fR\&.
.RE
.PP
\fBdownload\-external\-command\fR
.RS 4
A command that will be invoked if
\fIdownload\-use\-external\-program\fR
is set\&. There are four variables that can be used in the command:
\fIdwb_uri\fR
will be replaced with the download\-uri,
\fIdwb_output\fR
will be replaced with the fullpath of the destination,
\fIdwb_cookies\fR
will be replaced with the path to the cookie\-file,
\fIdwb_referer\fR
will be replaced with the uri of the site the download started, dwb_proxy will be replaced with the proxy url if dwb uses a proxy\&. Additionally the environment\-variables
\fIDWB_URI\fR,
\fIDWB_FILENAME\fR,
\fIDWB_COOKIES\fR,
\fIDWB_REFERER\fR,
\fIDWB_MIME_TYPE\fR,
\fIDWB_PROXY\fR
and
\fIDWB_USER_AGENT\fR
are set\&. Default value:
\fIxterm \-e wget dwb_uri \-O dwb_output \-\-load\-cookies dwb_cookies\fR\&.
.RE
.PP
\fBdownload\-directory\fR
.RS 4
The default download directory, if empty, the current working directory is used or the last download path is used\&. default value:
\fINULL\fR\&.
.RE
.PP
\fBdownload\-no\-confirm\fR
.RS 4
Whether to start downloads immediately without asking for a path,
\fIdownload\-directory\fR
needs to be set to an existing path\&. default value:
\fIfalse\fR\&.
.RE
.PP
\fBdownload\-use\-external\-program\fR
.RS 4
Whether to use an external download program specified in \*(Aqdownload\-external\-programm\e\*(Aq or the builtin download helper\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBeditor\fR
.RS 4
External editor used for inputs/textareas\&. default value:
\fIxterm \-e vim dwb_uri\fR\&.
.RE
.PP
\fBenable\-favicon\fR
.RS 4
Whether to show a favicon in the tab\&. default value:
\fItrue\fR\&.
.RE
.PP
\fBerror\-color\fR
.RS 4
The color for error\-messages\&. Possible values: an rgb color\-string, default value:
\fI#ff0000\fR\&.
.RE
.PP
\fBerror\-color\fR
.RS 4
The color for prompt\-messages\&. Possible values: an rgb color\-string, default value:
\fI#00ff00\fR\&.
.RE
.PP
\fBfile\-sync\-interval\fR
.RS 4
Interval in seconds to save history, cookies or session to hdd or 0 to immediately save, see also
\fBsync\-files\fR, default value: 120\&.
.RE
.PP
\fBfont\fR
.RS 4
The font used for the ui\&. Possible values: a font description string, default value:
\fImonospace 8\fR\&.
.RE
.PP
\fBfont\-completion\fR
.RS 4
The font used for tabcompletion\&. Possible values: a font description string\&.
.RE
.PP
\fBfont\-entry\fR
.RS 4
The font used for the address bar\&. Possible values: a font description string\&.
.RE
.PP
\fBfont\-hidden\-statusbar\fR
.RS 4
The font used for status elements if the statusbar is hidden\&. Possible values: a css font description\&. Default value: \*(Aqnormal\(cq10px helvetica \&.
.RE
.PP
\fBfont\-nofocus\fR
.RS 4
The font used for tablabels without focus and completion items without focus\&. Possible values: a font description string\&.
.RE
.PP
\fBforeground\-color\fR
.RS 4
The foreground color of statusbar\&. Possible values: an rgb color\-string\&. default value:
\fI#ffffff\fR\&.
.RE
.PP
\fBhint\-active\-color\fR
.RS 4
The background color for active link, i\&.e\&. the link followed when Return is pressed\&. Possible values: a rgb color string, default value:
\fI#00ff00\fR\&.
.RE
.PP
\fBhint\-autofollow\fR
.RS 4
Whether to follow hints automatically if only one hint matches the typed letters\&. Default value:
\fItrue\fR\&.
.RE
.PP
\fBhint\-bg\-color\fR
.RS 4
The background color used for hints\&. Possible values: a rgb color string, default value:
\fI#000088\fR\&.
.RE
.PP
\fBhint\-border\fR
.RS 4
The boreder used for hints\&. Possible values: a css border description, default value:
\fI2px dashed #000000\fR\&.
.RE
.PP
\fBhint\-fg\-color\fR
.RS 4
The foreground color used for hints\&. Possible values: a rgb color string, default value:
\fI#ffffff\fR\&.
.RE
.PP
\fBhint\-font\fR
.RS 4
The font used for hints\&. Possible values: css font description, default value:
\fIbold 10px monospace\fR\&.
.RE
.PP
\fBhint\-highlight\-links\fR
.RS 4
Whether to highlight all links in hint\-mode, default value:
\fIfalse\fR\&.
.RE
.PP
\fBhint\-letter\-seq\fR
.RS 4
A letter sequence used for letter hints\&. Possible values: a letter sequence, every letter should appear only once\&. Default value:
\fIFDSARTGBVECWXQYIOPMNHZULKJ\fR\&.
.RE
.PP
\fBhint\-normal\-color\fR
.RS 4
The background color for a normal link\&. Possible values: a rgb color string, default value:
\fI#ffff99\fR\&.
.RE
.PP
\fBhint\-opacity\fR
.RS 4
The opacity of a hint\&. Possible values: a decimal from 0\&.0 to 1\&.0, default value:
\fI0\&.75\fR\&.
.RE
.PP
\fBhint\-style\fR
.RS 4
The type of hints, that are used\&. When set to "number", letters will match the links text\&. Possible values: letter/number, default value:
\fIletter\fR\&.
.RE
.PP
\fBhints\-key\-lock\fR
.RS 4
Timeout in milliseconds all keypresses are ignored after following a hint, default value: 250
.RE
.PP
\fBhistory\-length\fR
.RS 4
The urls that are saved in the browsing history\&. Specifying a too large value can make tab\-completion slow\&. Possible values: number of urls, default value:
\fI500\fR\&.
.RE
.PP
\fBjavascript\-schemes\fR
.RS 4
Whether to allow loading javascript snippets with scheme
\fIjavascript\fR, default value:
\fItrue\fR\&.
.RE
.PP
\fBload\-on\-focus\fR
.RS 4
Whether to defer loading of a tab until a tab is focused, especially useful on startup and with slow internet connections, default value:
\fIfalse\fR\&.
.RE
.PP
\fBmax\-visible\-completions\fR
.RS 4
The maximum number of visible completions, default value:
\fI11\fR\&.
.RE
.PP
\fBmessage\-delay\fR
.RS 4
The duration messages are shown\&. Possible values: duration in seconds (integer), default value:
\fI2\fR\&.
.RE
.PP
\fBnavigation\-history\-max\fR
.RS 4
Maximum length of navigation history\&.
\fIenable\-private\-browsing\fR
must be disabled to save command history at all\&. default value:
\fI500\fR\&.
.RE
.PP
\fBnew\-tab\-position\-policy\fR
.RS 4
Controls the position of a newly created tab, possible values are
\fIright\fR, a new tab is created right of the current tab,
\fIleft\fR, a new tab is created left of the current tab,
\fIrightmost\fR, a new tab is created left of the last tab and
\fIleftmost\fR, a new tab is created left of the first tab\&. Default value:
\fIright\fR\&.
.RE
.PP
\fBnormal\-completion\-bg\-color\fR
.RS 4
The background color of inactive element in tab\-completion\&. Possible values: an rgb color\-string, default value:
\fI#151515\fR\&.
.RE
.PP
\fBnormal\-completion\-fg\-color\fR
.RS 4
The foreground color of inactive element in tab\-completion\&. Possible values: an rgb color\-string\&. color\-string, default value:
\fI#eeeeee\fR\&.
.RE
.PP
\fBpassthrough\-keys\fR
.RS 4
Keysstrokes that will be passed to the website,
\fBwebkit\fR
means only webkit builtin shortcuts will be passed through,
\fBall\fR
means all will be passed through,
\fBnone\fR
means no keystrokes will be passed through, default value:
\fIwebkit\fR\&.
.RE
.PP
\fBprint\-previewer\fR
.RS 4
Program used for printing previews, default value:
\fINULL\fR\&.
.RE
.PP
\fBprivate\-color\fR
.RS 4
Statusbar color used when private browsing is enabled, default value:
\fI#505050\fR\&.
.RE
.PP
\fBproxy\fR
.RS 4
Whether to use a HTTP\-proxy\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBproxy\-url\fR
.RS 4
The proxy\-url, can also be set via the http_proxy environment variable\&. Possible values: an url string, default value:
\fINULL\fR\&.
.RE
.PP
\fBsave\-session\fR
.RS 4
Save the session when dwb is closed and restore the last saved session when invoking dwb\&. Possible values: true/false, default value:
\fIfalse\fR\&.
.RE
.PP
\fBscheme\-handler\fR
.RS 4
A script or application that handles uris that cannot be loaded by dwb\&. dwb only loads uris with scheme
\fIhttp\fR,
\fIhttps\fR,
\fIfile\fR,
\fIabout\fR
and
\fIdwb\fR; support for e\&.g\&. ftp is provided through a scheme handler\&. The scheme handler can either be an application or a script\&. The first command line argument will be the uri for your application, so you can simply set this to
\fIxdg\-open\fR\&. There are also the environment variables
\fIDWB_URI\fR,
\fIDWB_SCHEME\fR,
\fIDWB_COOKIES\fR,
\fIDWB_USER_AGENT\fR, and
\fIDWB_REFERER\fR
available which can be used in a script, for example:
.RE
.sp
.if n \{\
.RS 4
.\}
.nf
#!/bin/sh

case ${DWB_SCHEME} in
  mailto) xterm \-e "mutt ${DWB_URI}";;
  ftp) xterm \-e "ncftp ${DWB_URI}";;
  *) xdg\-open ${DWB_URI}
esac
.fi
.if n \{\
.RE
.\}
.PP
\fBshow\-single\-tab\fR
.RS 4
Whether to show the tabbar if only one tab is open, default value:
\fItrue\fR\&.
.RE
.PP
\fBsearchengine\-submit\-pattern\fR
.RS 4
The pattern which will be replaced with the search terms\&.
.RE
.PP
\fBscroll\-step\fR
.RS 4
The step\-increment in pixels for scrolling\&. If set to a value lower or equal 0, the default step\-increment will be used\&. default value:
\fI0\&.0\fR\&.
.RE
.PP
\fBscrollbars\fR
.RS 4
Whether scrollbars should be enabled\&. default value:
\fIfalse\fR\&.
.RE
.PP
\fBsingle\-instance\fR
.RS 4
Only one instance of dwb per user\&. This option will be overridden by the commandlineoption \e(hyn\&. Possible values: true/false, default value:
\fItrue\fR\&.
.RE
.PP
\fBssl\-strict\fR
.RS 4
Whether to allow only save ssl\-certificates\&. default value:
\fItrue\fR\&.
.RE
.PP
\fBssl\-ca\-cert\fR
.RS 4
Path to ssl\-certificate, only with libsoup < 2\&.38\&.
.RE
.PP
\fBssl\-use\-system\-ca\-cert\fR
.RS 4
Path to ssl\-certificate, only with libsoup >= 2\&.38\&.
.RE
.PP
\fBssl\-trusted\-color\fR
.RS 4
Color of the url in the statusbar for ssl\-encrypted sites and trusted certificate\&. default value:
\fI#00ff00\fR\&.
.RE
.PP
\fBssl\-untrusted\-color\fR
.RS 4
Color of the url in the statusbar for ssl\-encrypted sites and untrusted certificate\&. default value:
\fI#ff0000\fR\&.
.RE
.PP
\fBstartpage\fR
.RS 4
The default startpage\&. Possible values: an url or "about:blank" for an empty startpage, default value:
\fIabout:blank\fR\&.
.RE
.PP
\fBsync\-files\fR
.RS 4
Type of files to sync, see also
\fBfile\-sync\-interval\fR\&. Possible values are
\fIall\fR,
\fIcookies\fR,
\fIhistory\fR,
\fIsession\fR
or a combination, default value:
\fIall\fR\&.
.RE
.PP
\fBtabbar\-visible\fR
.RS 4
When the tabbar is hidden specifies the number of seconds the tabbar is visible when switching between tabs, default value:
\fI2\fR\&.
.RE
.PP
\fBtab\-active\-bg\-color\fR
.RS 4
The background color the tab of the focused tab\&. Possible values: an rgb color\-string, default value:
\fI#000000\fR\&.
.RE
.PP
\fBtab\-active\-fg\-color\fR
.RS 4
The foreground color of the tab of the focused tab\&. Possible values: an rgb color\-string, default value:
\fI#ffffff\fR\&.
.RE
.PP
\fBtab\-normal\-bg\-color\fR
.RS 4
The background color the tab of a not focused tab\&. Possible values: an rgb color\-string, default value:
\fI#505050\fR\&.
.RE
.PP
\fBtab\-normal\-fg\-color\fR
.RS 4
The foreground color of the tab of a not focused tab\&. Possible values: an rgb color\-string, default value:
\fI#cccccc\fR\&.
.RE
.PP
\fBtab\-normal\-fg\-color\fR
.RS 4
The foreground color of the tab of a not focused tab\&. Possible values: an rgb color\-string, default value:
\fI#cccccc\fR\&.
.RE
.PP
\fBtab\-protected\-color\fR
.RS 4
The color of the tabnumber of protected tabs\&. Possible values: an rgb color\-string, default value:
\fI#ff0000\fR\&.
.RE
.PP
\fBtab\-number\-color\fR
.RS 4
The color of the tabnumber\&. Possible values: an rgb color\-string, default value:
\fI#ff0000\fR\&.
.RE
.PP
\fBtabbed\-browsing\fR
.RS 4
Enable tabbed\-browsing\&. If disabled, all new window/new tab requests will be opened in a new window, default value:
\fItrue\fR\&.
.RE
.PP
\fBupdate\-search\-delay\fR
.RS 4
Delay in milliseconds before updating search results\&. If set to 0 search results will be updated after every keypress\&. If set to a value greater than 0 search results will be updated after that delay but only if the search\-term has not changed since the timeout started\&. It is recommended to set this value greater than 0, default value:
\fI200\fR\&.
.RE
.PP
\fBuse\-ntlm\fR
.RS 4
Whether to use NTLM\-authentication, default value:
\fIfalse\fR\&.
.RE
.PP
\fBwidget\-packing\fR
.RS 4
A string consisting of 4 characters, where possible characters are:
\fId\fR,
\fIw\fR,
\fIT\fR,
\fIt\fR,
\fIS\fR
and
\fIs\fR\&. The order of the widgets correspond the the order of characters in the string where
\fId\fR
corresponds to the download bar,
\fIt\fR
and
\fIT\fR
to the tab bar where
\fIT\fR
means that the tabbar will not be visible,
\fIw\fR
to the webview and
\fIs\fR
and
\fIS\fR
to the statusbar where
\fIS\fR
means that the statusbar won\(cqt be visible\&. Default value:
\fIdtws\fR\&.
.RE
.SH "FILES"
.SS "Userscripts"
.sp
Userscripts can be stored in \fI~/\&.config/dwb/userscripts\fR\&. The first argument of the script will be the current url, the second argument is the title, the third argument will be the profile name, the fourth argument is the numerical modifier and the fifth argument is a commandline argument\&. Also the variables \fIDWB_URI\fR, \fIDWB_TITLE\fR, \fIDWB_PROFILE\fR, \fIDWB_NUMMOD\fR, \fIDWB_ARGUMENT\fR, \fIDWB_REFERER\fR, and \fIDWB_USER_AGENT\fR are set\&. The keybinding for the script must be defined in the script itself in a commented line of the form \fB<comment symbols> dwb: <keybinding>\fR\&.
.sp
dwb also provides a small javascript api, scripts that use the api must have the special shebang \fB#!javascript\fR or start with \fB//!javascript\fR for details see also http://portix\&.bitbucket\&.org/dwb/api/ and \fBdwb\-js\fR(7)\&.
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBExamples\fR
.RS 4
.sp
The following script will download the current webpage:
.sp
.if n \{\
.RS 4
.\}
.nf
#!/bin/bash
# dwb: Control w

wget $DWB_URI
.fi
.if n \{\
.RE
.\}
.sp
Popup an alert dialog:
.sp
.if n \{\
.RS 4
.\}
.nf
#!/bin/bash
# dwb: Control h

echo "js window\&.alert(\*(AqHello world\*(Aq);" > ${DWB_FIFO}
.fi
.if n \{\
.RE
.\}
.sp
Block requests from specific sites:
.sp
.if n \{\
.RS 4
.\}
.nf
#!javascript

var block = [ new RegExp("https://example\&.org\&.*"), new RegExp("https://example\&.co\&.uk\&.*") ];

Signal\&.connect("resource", function(wv, frame, request) {
  for (var i=0, l=block\&.length; i<l; ++i)
  {
    if (block[i]\&.test(request\&.uri))
    {
      request\&.uri = "about:blank";
      return true;
    }
  }
  return false;
});
.fi
.if n \{\
.RE
.\}
.RE
.SH "RESOURCES"
.sp
bitbucket: http://bitbucket\&.org/portix/dwb
.sp
homepage: http://portix\&.bitbucket\&.org/dwb/
.SH "SEE ALSO"
.sp
\fBdwbem\fR(1) \fBdwb\-js\fR(7)