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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 10.2.1" />
<title>Frequently asked questions</title>
<style type="text/css">
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
/* Default font. */
body {
font-family: Georgia,serif;
}
/* Title font. */
h1, h2, h3, h4, h5, h6,
div.title, caption.title,
thead, p.table.header,
#toctitle,
#author, #revnumber, #revdate, #revremark,
#footer {
font-family: Arial,Helvetica,sans-serif;
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
h5 {
font-size: 1.0em;
}
div.sectionbody {
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
ul > li { color: #aaa; }
ul > li > * { color: black; }
.monospaced, code, pre {
font-family: "Courier New", Courier, monospace;
font-size: inherit;
color: navy;
padding: 0;
margin: 0;
}
pre {
white-space: pre-wrap;
}
#author {
color: #527bbd;
font-weight: bold;
font-size: 1.1em;
}
#email {
}
#revnumber, #revdate, #revremark {
}
#footer {
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
#footer-text {
float: left;
padding-bottom: 0.5em;
}
#footer-badges {
float: right;
padding-bottom: 0.5em;
}
#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid #dddddd;
border-left: 4px solid #f0f0f0;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid #dddddd;
border-left: 5px solid #f0f0f0;
background: #f8f8f8;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #f0f0f0;
color: #888;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > pre.content {
font-family: inherit;
font-size: inherit;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; vertical-align: text-bottom; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
div.colist td {
padding-right: 0.5em;
padding-bottom: 0.3em;
vertical-align: top;
}
div.colist td img {
margin-top: 0.3em;
}
@media print {
#footer-badges { display: none; }
}
#toc {
margin-bottom: 2.5em;
}
#toctitle {
color: #527bbd;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
span.aqua { color: aqua; }
span.black { color: black; }
span.blue { color: blue; }
span.fuchsia { color: fuchsia; }
span.gray { color: gray; }
span.green { color: green; }
span.lime { color: lime; }
span.maroon { color: maroon; }
span.navy { color: navy; }
span.olive { color: olive; }
span.purple { color: purple; }
span.red { color: red; }
span.silver { color: silver; }
span.teal { color: teal; }
span.white { color: white; }
span.yellow { color: yellow; }
span.aqua-background { background: aqua; }
span.black-background { background: black; }
span.blue-background { background: blue; }
span.fuchsia-background { background: fuchsia; }
span.gray-background { background: gray; }
span.green-background { background: green; }
span.lime-background { background: lime; }
span.maroon-background { background: maroon; }
span.navy-background { background: navy; }
span.olive-background { background: olive; }
span.purple-background { background: purple; }
span.red-background { background: red; }
span.silver-background { background: silver; }
span.teal-background { background: teal; }
span.white-background { background: white; }
span.yellow-background { background: yellow; }
span.big { font-size: 2em; }
span.small { font-size: 0.6em; }
span.underline { text-decoration: underline; }
span.overline { text-decoration: overline; }
span.line-through { text-decoration: line-through; }
div.unbreakable { page-break-inside: avoid; }
/*
* xhtml11 specific
*
* */
div.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-weight: bold;
color: #527bbd;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overridden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
/*
* html5 specific
*
* */
table.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
thead, p.tableblock.header {
font-weight: bold;
color: #527bbd;
}
p.tableblock {
margin-top: 0;
}
table.tableblock {
border-width: 3px;
border-spacing: 0px;
border-style: solid;
border-color: #527bbd;
border-collapse: collapse;
}
th.tableblock, td.tableblock {
border-width: 1px;
padding: 4px;
border-style: solid;
border-color: #527bbd;
}
table.tableblock.frame-topbot {
border-left-style: hidden;
border-right-style: hidden;
}
table.tableblock.frame-sides {
border-top-style: hidden;
border-bottom-style: hidden;
}
table.tableblock.frame-none {
border-style: hidden;
}
th.tableblock.halign-left, td.tableblock.halign-left {
text-align: left;
}
th.tableblock.halign-center, td.tableblock.halign-center {
text-align: center;
}
th.tableblock.halign-right, td.tableblock.halign-right {
text-align: right;
}
th.tableblock.valign-top, td.tableblock.valign-top {
vertical-align: top;
}
th.tableblock.valign-middle, td.tableblock.valign-middle {
vertical-align: middle;
}
th.tableblock.valign-bottom, td.tableblock.valign-bottom {
vertical-align: bottom;
}
/*
* manpage specific
*
* */
body.manpage h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
body.manpage h2 {
border-style: none;
}
body.manpage div.sectionbody {
margin-left: 3em;
}
@media print {
body.manpage div#toc { display: none; }
}
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .c { color: #408080; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
.highlight .o { color: #666666 } /* Operator */
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #FF0000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
.highlight .go { color: #808080 } /* Generic.Output */
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #B00040 } /* Keyword.Type */
.highlight .m { color: #666666 } /* Literal.Number */
.highlight .s { color: #BA2121 } /* Literal.String */
.highlight .na { color: #7D9029 } /* Name.Attribute */
.highlight .nb { color: #008000 } /* Name.Builtin */
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.highlight .no { color: #880000 } /* Name.Constant */
.highlight .nd { color: #AA22FF } /* Name.Decorator */
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0000FF } /* Name.Function */
.highlight .nl { color: #A0A000 } /* Name.Label */
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #19177C } /* Name.Variable */
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mf { color: #666666 } /* Literal.Number.Float */
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.highlight .sx { color: #008000 } /* Literal.String.Other */
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
.highlight .vc { color: #19177C } /* Name.Variable.Class */
.highlight .vg { color: #19177C } /* Name.Variable.Global */
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
if (!toc) {
return;
}
// Delete existing TOC entries in case we're reloading the TOC.
var tocEntriesToRemove = [];
var i;
for (i = 0; i < toc.childNodes.length; i++) {
var entry = toc.childNodes[i];
if (entry.nodeName.toLowerCase() == 'div'
&& entry.getAttribute("class")
&& entry.getAttribute("class").match(/^toclevel/))
tocEntriesToRemove.push(entry);
}
for (i = 0; i < tocEntriesToRemove.length; i++) {
toc.removeChild(tocEntriesToRemove[i]);
}
// Rebuild TOC entries.
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
// Delete existing footnote entries in case we're reloading the footnodes.
var i;
var noteholder = document.getElementById("footnotes");
if (!noteholder) {
return;
}
var entriesToRemove = [];
for (i = 0; i < noteholder.childNodes.length; i++) {
var entry = noteholder.childNodes[i];
if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote")
entriesToRemove.push(entry);
}
for (i = 0; i < entriesToRemove.length; i++) {
noteholder.removeChild(entriesToRemove[i]);
}
// Rebuild footnote entries.
var cont = document.getElementById("content");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
var note = spans[i].getAttribute("data-note");
if (!note) {
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
spans[i].setAttribute("data-note", note);
}
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
},
install: function(toclevels) {
var timerId;
function reinstall() {
asciidoc.footnotes();
if (toclevels) {
asciidoc.toc(toclevels);
}
}
function reinstallAndRemoveTimer() {
clearInterval(timerId);
reinstall();
}
timerId = setInterval(reinstall, 500);
if (document.addEventListener)
document.addEventListener("DOMContentLoaded", reinstallAndRemoveTimer, false);
else
window.onload = reinstallAndRemoveTimer;
}
}
asciidoc.install();
/*]]>*/
</script>
</head>
<body class="article">
<div id="header">
<h1>Frequently asked questions</h1>
<span id="author">The Compiler</span><br />
<span id="email"><code><<a href="mailto:mail@qutebrowser.org">mail@qutebrowser.org</a>></code></span><br />
</div>
<div id="content">
<div id="preamble">
<div class="sectionbody">
<div class="qlist qanda"><ol>
<li>
<p><em>
What is qutebrowser based on?
</em></p>
<p>
qutebrowser uses <a href="https://www.python.org/">Python</a>, <a href="https://www.qt.io/">Qt</a> and
<a href="https://www.riverbankcomputing.com/software/pyqt/intro">PyQt</a>.
</p>
<div class="paragraph"><p>The concept of it is largely inspired by <a href="https://bitbucket.org/portix/dwb/">dwb</a>
and <a href="http://www.vimperator.org/vimperator">Vimperator</a>. Many actions and
key bindings are similar to dwb.</p></div>
</li>
<li>
<p><em>
Why another browser?
</em></p>
<p>
It might be hard to believe, but I didn’t find any browser which I was
happy with, so I started to write my own. Also, I needed a project to get
into writing GUI applications with Python and
<a href="https://www.qt.io/">Qt</a>/<a href="https://www.riverbankcomputing.com/software/pyqt/intro">PyQt</a>.
</p>
<div class="paragraph"><p>Read the next few questions to find out why I was unhappy with existing
software.</p></div>
</li>
<li>
<p><em>
What’s wrong with <a href="https://bitbucket.org/portix/dwb/">dwb</a>/<a href="https://sourceforge.net/projects/vimprobable/">vimprobable</a>/<a href="https://luakit.github.io/">luakit</a>/jumanji/… (projects based on WebKitGTK)?
</em></p>
<p>
Most of them are based on the <a href="https://webkitgtk.org/">WebKitGTK+</a>
<a href="https://webkitgtk.org/reference/webkitgtk/stable/index.html">WebKit1</a> API,
which causes a lot of crashes. As the GTK API using WebKit1 is
<a href="https://lists.webkit.org/pipermail/webkit-gtk/2014-March/001821.html">deprecated</a>,
these bugs are never going to be fixed.
</p>
<div class="paragraph"><p>When qutebrowser was created, the newer
<a href="https://webkitgtk.org/reference/webkit2gtk/stable/index.html">WebKit2 API</a> lacked
basic features like proxy support, and almost no projects have started porting
to WebKit2. In the meantime, this situation has improved a bit, but there are
still only a few projects which have some kind of WebKit2 support (see the
<a href="https://github.com/qutebrowser/qutebrowser#similar-projects">list of
alternatives</a>).</p></div>
<div class="paragraph"><p>qutebrowser uses <a href="https://www.qt.io/">Qt</a> and
<a href="https://wiki.qt.io/QtWebEngine">QtWebEngine</a> by default (and supports
<a href="https://wiki.qt.io/QtWebKit">QtWebKit</a> optionally). QtWebEngine is based on
Google’s <a href="https://www.chromium.org/Home">Chromium</a>. With an up-to-date Qt, it has
much more man-power behind it than WebKitGTK+ has, and thus supports more modern
web features - it’s also arguably more secure.</p></div>
</li>
<li>
<p><em>
What’s the difference to Firefox/Chromium addons like <a href="https://github.com/tridactyl/tridactyl">Tridactyl</a> or <a href="https://vimium.github.io/">Vimium</a>?
</em></p>
<p>
The WebExtensions API doesn’t seem to allow much freedom for plugin
writers, which results in Vimium/Tridactyl not really having all the
features you’d expect from a proper minimal, vim-like browser. Due to the
same reason, those addons are quite inconsistent - on some pages, they
can’t run and intercept keyboard inputs correctly. Tridactyl gets around
those limitations with various measures (such as a native messenger written
in Python doing some work which can’t be done from the addon directly), but
there’s only so much that can be done.
</p>
</li>
<li>
<p><em>
Why Python?
</em></p>
<p>
I enjoy writing Python since 2011, which made it one of the possible
choices. I wanted to use <a href="https://www.qt.io/">Qt</a> because of
<a href="https://wiki.qt.io/QtWebKit">QtWebKit</a> so I didn’t have
<a href="https://wiki.qt.io/Category:LanguageBindings">many other choices</a>. At that
point, I wasn’t comfortable with C++ so that wasn’t an alternative.
</p>
</li>
<li>
<p><em>
But isn’t Python too slow for a browser?
</em></p>
<p>
<a href="https://www.infoworld.com/article/2303031/van-rossum-python-is-not-too-slow-2.html">It’s generally less of a problem than one would expect.</a>
Most of the heavy lifting of qutebrowser is done by Qt and
QtWebKit/QtWebEngine in C++, with the
<a href="https://wiki.python.org/moin/GlobalInterpreterLock">GIL</a> released.
</p>
<div class="paragraph"><p>It can be problematic in some areas, but various performance optimizations have
been carried out to problematic portions of the code.</p></div>
</li>
<li>
<p><em>
Is qutebrowser secure?
</em></p>
<p>
Most security issues are in the backend (which handles networking,
rendering, JavaScript, etc.) and not qutebrowser itself.
</p>
<div class="paragraph"><p>qutebrowser uses <a href="https://wiki.qt.io/QtWebEngine">QtWebEngine</a> by default.
QtWebEngine is based on Google’s <a href="https://www.chromium.org/Home">Chromium</a>. While
Qt only updates to a new Chromium release on every minor Qt release (all ~6
months), every patch release backports security fixes from newer Chromium
versions. In other words: As long as you’re using an up-to-date Qt, you should
be receiving security updates on a regular basis, without qutebrowser having to
do anything. Chromium’s process isolation and
<a href="https://chromium.googlesource.com/chromium/src/+/master/docs/design/sandbox.md">sandboxing</a>
features are also enabled as a second line of defense.</p></div>
<div class="paragraph"><p><a href="https://wiki.qt.io/QtWebKit">QtWebKit</a> is also supported as an alternative
backend, but hasn’t seen new releases
<a href="https://github.com/annulen/webkit/releases">in a while</a>. It also doesn’t have any
process isolation or sandboxing. See
<a href="https://github.com/qutebrowser/qutebrowser/issues/4039">#4039</a> for more details.</p></div>
<div class="paragraph"><p>Security issues in qutebrowser’s code happen very rarely (as per September 2019,
there have been three security issues caused by qutebrowser in almost 6 years).
Those were handled appropriately
(<a href="https://seclists.org/oss-sec/2018/q3/29">example</a>) and fixed timely. To report
security bugs, please contact me directly at <a href="mailto:mail@qutebrowser.org">mail@qutebrowser.org</a>, GPG ID
<a href="https://www.the-compiler.org/pubkey.asc">0x916eb0c8fd55a072</a>.</p></div>
</li>
<li>
<p><em>
Is there an ad blocker?
</em></p>
<p>
Since version 2.0.0, if the
<a href="https://pypi.org/project/adblock/">Python <code>adblock</code> library</a> is available,
it will be used to integrate
<a href="https://github.com/brave/adblock-rust">Brave’s Rust adblocker library</a>
for improved adblocking, based on
<a href="https://help.eyeo.com/en/adblockplus/how-to-write-filters">ABP-like filter lists</a>
(such as <a href="https://easylist.to/">EasyList</a>).
If that library is unavailable or on older versions of qutebrowser, a
simpler built-in ad blocker is used instead. It takes <code>/etc/hosts</code>-like lists
and thus is only able to block entire hosts.
</p>
<div class="paragraph"><p>Note that even the more sophisticated blocker
<a href="https://github.com/qutebrowser/qutebrowser/issues/5754">does not support element hiding</a>
(cosmetic filtering) yet, it only blocks network requests.</p></div>
</li>
<li>
<p><em>
How can I get No-Script-like behavior?
</em></p>
<p>
To disable JavaScript by default:
</p>
<div class="listingblock">
<div class="content">
<pre><code>:set content.javascript.enabled false</code></pre>
</div></div>
<div class="paragraph"><p>The basic keybinding for enabling JavaScript for the current host is <code>tsh</code>.
This will allow JavaScript execution for the current session.
Use <code>S</code> instead of <code>s</code> to make the exception permanent.
With <code>H</code> instead of <code>h</code>, subdomains are included.
With <code>u</code> instead of <code>h</code>, JavaScript is allowed for the current URL only (not the whole host).</p></div>
<div class="paragraph"><p>The list of domains that have been permanently granted permission to execute
JavaScript will be written to <code>autoconfig.yml</code>.</p></div>
</li>
<li>
<p><em>
How do I play Youtube videos with mpv?
</em></p>
<p>
You can easily add a key binding to play youtube videos inside a real video
player - optionally even with hinting for links:
</p>
<div class="listingblock">
<div class="content">
<pre><code>:bind ,m spawn mpv {url}
:bind ,M hint links spawn mpv {hint-url}</code></pre>
</div></div>
<div class="paragraph"><p>The comma prefix is used to make sure user-defined bindings don’t conflict with
the built-in ones.</p></div>
<div class="paragraph"><p>Note that you might need an additional package (e.g.
<a href="https://www.archlinux.org/packages/community/any/youtube-dl/">youtube-dl</a> on
Archlinux) to play web videos with mpv.</p></div>
<div class="paragraph"><p>There is a very useful script for mpv, which emulates "unique application"
functionality. This way you can add links to the mpv playlist instead of
playing them all at once.</p></div>
<div class="paragraph"><p>You can find the script here: <a href="https://github.com/mpv-player/mpv/blob/master/TOOLS/umpv">https://github.com/mpv-player/mpv/blob/master/TOOLS/umpv</a></p></div>
<div class="paragraph"><p>It also works nicely with rapid hints:</p></div>
<div class="listingblock">
<div class="content">
<pre><code>:bind ,m spawn umpv {url}
:bind ,M hint links spawn umpv {hint-url}
:bind ;M hint --rapid links spawn umpv {hint-url}</code></pre>
</div></div>
</li>
<li>
<p><em>
How do I use qutebrowser with mutt/neomutt or other mail clients?
</em></p>
<p>
For security reasons, local files without <code>.html</code> extensions aren’t
rendered as HTML, see
<a href="https://bugs.chromium.org/p/chromium/issues/detail?id=777737">this Chromium issue</a>
for details. You can do this in your <code>mailcap</code> file to get a proper
extension:
</p>
<div class="listingblock">
<div class="content">
<pre><code>text/html; qutebrowser %s; needsterminal; nametemplate=%s.html</code></pre>
</div></div>
<div class="paragraph"><p>Note that you might want to add additional options to qutebrowser, so that it
runs as a separate instance configured to disable JavaScript and avoid network
requests, in order to avoid privacy leaks when reading mails. The easiest way
to do so is by specifying a non-existent proxy server, e.g.:</p></div>
<div class="listingblock">
<div class="content">
<pre><code>qutebrowser --temp-basedir -s content.proxy http://localhost:666 -s content.dns_prefetch false -s content.javascript.enabled false %s</code></pre>
</div></div>
<div class="paragraph"><p>With Qt 6, using something like:</p></div>
<div class="listingblock">
<div class="content">
<pre><code>qutebrowser --temp-basedir -s content.dns_prefetch false -s content.javascript.enabled false %s</code></pre>
</div></div>
<div class="paragraph"><p>should lead to a similar result, due to a more restrictive implementation of
the <code>content.local_content_can_access_remote_urls</code> setting (<code>false</code> by default
already). However, it’s advised to use a page like
<a href="https://www.emailprivacytester.com/">Email Privacy Tester</a> to verify your
configuration.</p></div>
</li>
<li>
<p><em>
What is the difference between bookmarks and quickmarks?
</em></p>
<p>
Bookmarks will always use the title of the website as their name, but with quickmarks
you can set your own title.
</p>
<div class="paragraph"><p>For example, if you bookmark multiple food recipe websites and use <code>:open</code>,
you have to type the title or address of the website.</p></div>
<div class="paragraph"><p>When using quickmark, you can give them all names, like
<code>foodrecipes1</code>, <code>foodrecipes2</code> and so on. When you type
<code>:open foodrecipes</code>, you will see a list of all the food recipe sites,
without having to remember the exact website title or address.</p></div>
</li>
<li>
<p><em>
How do I use spell checking?
</em></p>
<p>
Configuring spell checking in qutebrowser depends on the backend in use
(see <a href="https://github.com/qutebrowser/qutebrowser/issues/700">#700</a> for
a more detailed discussion).
</p>
<div class="paragraph"><p>For QtWebKit:</p></div>
<div class="olist arabic"><ol class="arabic">
<li>
<p>
Install <a href="https://github.com/QupZilla/qtwebkit-plugins">qtwebkit-plugins</a>.
</p>
</li>
<li>
<p>
Note: with QtWebKit reloaded you may experience some issues. See
<a href="https://github.com/QupZilla/qtwebkit-plugins/issues/10">#10</a>.
</p>
</li>
<li>
<p>
The dictionary to use is taken from the <code>DICTIONARY</code> environment variable.
The default is <code>en_US</code>. For example to use Dutch spell check set <code>DICTIONARY</code>
to <code>nl_NL</code>; you can’t use multiple dictionaries or change them at runtime at
the moment.
(also see the README file for <code>qtwebkit-plugins</code>).
</p>
</li>
<li>
<p>
Remember to install the hunspell dictionaries if you don’t have them already
(most distros should have packages for this).
</p>
<div class="paragraph"><p>For QtWebEngine:</p></div>
</li>
<li>
<p>
Use <code>dictcli.py</code> script to install dictionaries.
Run the script with <code>-h</code> for the parameter description.
</p>
</li>
<li>
<p>
Set <code>spellcheck.languages</code> to the desired list of languages, e.g.:
<code>:set spellcheck.languages "['en-US', 'pl-PL']"</code>
</p>
</li>
</ol></div>
</li>
<li>
<p><em>
How do I use Tor with qutebrowser?
</em></p>
<p>
Start tor on your machine, and do <code>:set content.proxy socks://localhost:9050/</code>
in qutebrowser. Note this won’t give you the same amount of fingerprinting
protection that the Tor Browser does, but it’s useful to be able to access
<code>.onion</code> sites.
</p>
</li>
<li>
<p><em>
Why does J move to the next (right) tab, and K to the previous (left) one?
</em></p>
<p>
One reason is because <a href="https://bitbucket.org/portix/dwb">dwb</a> did it that way,
and qutebrowser’s keybindings are designed to be compatible with dwb’s.
The rationale behind it is that J is "down" in vim, and K is "up", which
corresponds nicely to "next"/"previous". It also makes much more sense with
vertical tabs (e.g. <code>:set tabs.position left</code>). If you prefer swapped
bindings, you can run <code>:bind J tab-prev</code> and <code>:bind K tab-next</code> to swap
them.
</p>
</li>
<li>
<p><em>
What’s the difference between insert and passthrough mode?
</em></p>
<p>
They are quite similar, but insert mode has some bindings (like <code>Ctrl-e</code> to
open an editor) while passthrough mode only has shift+escape bound. This is
because shift+escape is unlikely to be a useful binding to be passed to a
webpage. However, any other keys may be assigned to leaving passthrough mode
instead of shift+escape should this be desired.
</p>
</li>
<li>
<p><em>
Why does it take longer to open a URL in qutebrowser than in chromium?
</em></p>
<p>
When opening a URL in an existing instance, the normal qutebrowser
Python script is started and a few PyQt libraries need to be
loaded until it is detected that there is an instance running
to which the URL is then passed. This takes some time.
One workaround is to use this
<a href="https://github.com/qutebrowser/qutebrowser/blob/main/scripts/open_url_in_instance.sh">script</a>
and place it in your $PATH with the name "qutebrowser". This
script passes the URL via a unix socket to qutebrowser (if its
running already) using socat which is much faster and starts a new
qutebrowser if it is not running already.
</p>
</li>
<li>
<p><em>
How do I make qutebrowser use greasemonkey scripts?
</em></p>
<p>
There is currently no UI elements to handle managing greasemonkey scripts.
All management of what scripts are installed or disabled is done in the
filesystem by you. qutebrowser reads all files that have an extension of
<code>.js</code> from the <code><data>/greasemonkey/</code> folder and attempts to load them.
Where <code><data></code> is the qutebrowser data directory shown in the <code>Paths</code>
section of the page displayed by <code>:version</code>. If you want to disable a
script just rename it, for example, to have <code>.disabled</code> on the end, after
the <code>.js</code> extension. To reload scripts from that directory run the command
<code>:greasemonkey-reload</code>.
</p>
<div class="paragraph"><p>Troubleshooting: to check that your script is being loaded when
<code>:greasemonkey-reload</code> runs you can start qutebrowser with the arguments
<code>--debug --logfilter greasemonkey,js</code> and check the messages on the
program’s standard output for errors parsing or loading your script.
You may also see javascript errors if your script is expecting an environment
that we fail to provide.</p></div>
<div class="paragraph"><p>Note that there are some missing features which you may run into:</p></div>
<div class="olist arabic"><ol class="arabic">
<li>
<p>
Some scripts expect <code>GM_xmlhttpRequest</code> to ignore Cross Origin Resource
Sharing restrictions, this is currently not supported, so scripts making
requests to third party sites will often fail to function correctly.
</p>
</li>
<li>
<p>
Any greasemonkey API function to do with adding UI elements is not currently
supported. That means context menu extentensions and background pages.
</p>
</li>
</ol></div>
</li>
<li>
<p><em>
How do I change the <code>WM_CLASS</code> used by qutebrowser windows?
</em></p>
<p>
Qt only supports setting <code>WM_CLASS</code> globally, which you can do by starting
with <code>--qt-arg name foo</code>. Note that all windows are part of the same
qutebrowser instance (unless you use <code>--temp-basedir</code> or <code>--basedir</code>), so
they all will share the same <code>WM_CLASS</code>.
</p>
</li>
<li>
<p><em>
How do I use X.509 Client Certificates?
</em></p>
<p>
Right now there is no certificate-chooser prompt implemented when there are
multiple matches. Subscribe to <a href="https://github.com/qutebrowser/qutebrowser/issues/4587">Issue#4587</a>
for progress notifications.
</p>
<div class="paragraph"><p>QtWebEngine will attempt to use certificates stored in <code>${HOME}/.pki/nssdb</code>. If
you have Chromium installed, you can import the certificate there and
qutebrowser will pick it up as well. Alternatively, you can use the <code>certutil</code>
commandline tool:</p></div>
<div class="paragraph"><p>Assuming you have a CA Certificate and a
Client Certificate that you want for authenticating yourself on a web
service that validates against this CA Certificate, you need to perform
the following steps.</p></div>
<div class="olist arabic"><ol class="arabic">
<li>
<p>
Import the CA Certificate
</p>
<div class="listingblock">
<div class="content">
<pre><code>certutil -d "sql:${HOME}/.pki/nssdb" -A -i <path_to_ca_cert.pem> -n "My Fancy CA" -t "TC,C,T"</code></pre>
</div></div>
</li>
<li>
<p>
Merge your <code><cert.crt></code> and <code><privkey.pem></code> files into a single <code>PKCS#12</code>
certificate file (optional, skip if your Client Certificate already is in
<code>PKCS#12</code> format)
</p>
<div class="listingblock">
<div class="content">
<pre><code>openssl pkcs12 -export -in <path_to_client_cert.crt> -inkey <path_to_client_cert_privkey.pem> -out my_fancy_client_cert.pkcs12</code></pre>
</div></div>
</li>
<li>
<p>
Import your Client Certificate into the certificate store
</p>
<div class="listingblock">
<div class="content">
<pre><code>pk12util -d "sql:${HOME}/.pki/nssdb" -i <path_to_my_fancy_client_cert.pkcs12> -n "My Fancy Client Certificate"</code></pre>
</div></div>
<div class="paragraph"><p>Upon visiting a website that requests a Client Certificate you should now
be prompted by qutebrowser whether you want to submit the newly imported
Client Certificate or not.</p></div>
<div class="paragraph"><p>If you ever need to renew any of these certificates, you can take a look
at the currently imported certificates using:</p></div>
<div class="listingblock">
<div class="content">
<pre><code>certutil -d "sql:${HOME}/.pki/nssdb" -L</code></pre>
</div></div>
<div class="paragraph"><p>Then remove the expired certificates using:</p></div>
<div class="listingblock">
<div class="content">
<pre><code>certutil -d "sql:${HOME}/.pki/nssdb" -D -n "My Fancy Certificate Nickname"</code></pre>
</div></div>
<div class="paragraph"><p>And then import the new and valid certificates using the procedure
described above.</p></div>
</li>
</ol></div>
</li>
<li>
<p><em>
Is there a dark mode? How can I filter websites to be darker?
</em></p>
<p>
There is a total of four possible approaches to get dark websites:
</p>
<div class="ulist"><ul>
<li>
<p>
The <code>colors.webpage.preferred_color_scheme</code> setting tells websites that you prefer
a light or dark theme. However, this requires websites to ship an appropriate dark
style sheet. The setting requires a restart and QtWebEngine with at least Qt 5.14.
</p>
</li>
<li>
<p>
The <code>colors.webpage.darkmode.*</code> settings enable the dark mode of the underlying
Chromium. Those setting require a restart and QtWebEngine with at least Qt 5.14. It’s
unfortunately not possible (due to limitations
<a href="https://bugs.chromium.org/p/chromium/issues/detail?id=952419">in Chromium</a> and/or
<a href="https://bugreports.qt.io/browse/QTBUG-84484">QtWebEngine</a>) to
change them dynamically or to specify a list of excluded websites.
There is some remaining hope to
<a href="https://github.com/qutebrowser/qutebrowser/issues/5542">allow for this</a>
using HTML/CSS features, but so far nobody has been able to get things to
work (even with Chromium) - help welcome!
</p>
</li>
<li>
<p>
The <code>content.user_stylesheets</code> setting allows specifying a custom CSS such as
<a href="https://github.com/alphapapa/solarized-everything-css/">Solarized Everything</a>. Despite
the name, the repository also offers themes other than just Solarized. This approach
often yields worse results compared to the above ones, but it’s possible to toggle it
dynamically using a binding like <code>:bind ,d config-cycle content.user_stylesheets
~/path/to/solarized-everything-css/css/gruvbox/gruvbox-all-sites.css ""</code>
</p>
</li>
<li>
<p>
Finally, qutebrowser’s Greasemonkey support should allow for running a
<a href="https://github.com/darkreader/darkreader/issues/926#issuecomment-575893299">stripped down version</a>
of the Dark Reader extension. This is mostly untested, though.
</p>
</li>
</ul></div>
</li>
<li>
<p><em>
How do I make copy to clipboard buttons work?
</em></p>
<p>
You can <code>:set content.javascript.clipboard access</code> to allow this globally (not
recommended!), or <code>:set -u some.domain content.javascript.clipboard access</code> if
you want to limit the setting to <code>some.domain</code>.
</p>
</li>
</ol></div>
</div>
</div>
<div class="sect1">
<h2 id="_troubleshooting">Troubleshooting</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
Unable to view Flash content.
</dt>
<dd>
<p>
If you have Flash installed for on your system, it’s necessary to enable plugins
to use the flash plugin. Using the command <code>:set content.plugins true</code>
in qutebrowser will enable plugins. Packages for Flash should
be provided for your platform or it can be obtained from
<a href="https://get.adobe.com/flashplayer/">Adobe</a>. Note that QtWebEngine needs
PPAPI Flash, while QtWebKit needs NPAPI Flash.
</p>
</dd>
<dt class="hdlist1">
Unable to view DRM content (Netflix, Spotify, etc.).
</dt>
<dd>
<p>
On Arch Linux, simply install <code>chromium-widevine</code> from the AUR.
</p>
<div class="paragraph"><p>For other distributions, it should be possible to obtain the needed
widevine files and store them in the correct places, but the details differ
wildly between various Qt versions.</p></div>
</dd>
<dt class="hdlist1">
Unable to use <code>spawn</code> on MacOS.
</dt>
<dd>
<p>
When running qutebrowser from the prebuilt binary (<code>qutebrowser.app</code>) it
<strong>will not</strong> read any files that would alter your <code>$PATH</code> (e.g. <code>.profile</code>,
<code>.bashrc</code>, etc). This is not a bug, just that <code>.profile</code> is not propagated
to GUI applications in MacOS.
</p>
<div class="paragraph"><p>See <a href="https://github.com/qutebrowser/qutebrowser/issues/4273">Issue #4273</a> for
details and potential workarounds.</p></div>
</dd>
<dt class="hdlist1">
QtWebKit: Experiencing freezing on sites like DuckDuckGo and YouTube.
</dt>
<dd>
<p>
This issue could be caused by stale plugin files installed by <code>mozplugger</code>
if mozplugger was subsequently removed.
Try exiting qutebrowser and removing <code>~/.mozilla/plugins/mozplugger*.so</code>.
See <a href="https://github.com/qutebrowser/qutebrowser/issues/357">Issue #357</a>
for more details.
</p>
</dd>
<dt class="hdlist1">
My issue is not listed.
</dt>
<dd>
<p>
If you experience any segfaults or crashes, you can report the issue in
<a href="https://github.com/qutebrowser/qutebrowser/issues">the issue tracker</a> or
using the <code>:report</code> command.
If you are reporting a segfault, make sure you read the
<a href="stacktrace.html">guide</a> on how to report them with all needed
information.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="sponsors">GitHub Sponsors FAQ</h2>
<div class="sectionbody">
<div class="paragraph"><p>Using <a href="https://github.com/sponsors/The-Compiler">GitHub Sponsors</a>, you can sign
up for a monthly donation to The-Compiler (qutebrowser’s main developer),
allowing him to work part-time on qutebrowser. If you keep your donation level
for long enough, you can get some qutebrowser stickers!</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
Why GitHub Sponsors?
</dt>
<dd>
<p>
GitHub Sponsors is a crowdfunding platform nicely integrated with
qutebrowser’s existing GitHub page and a better offering than alternatives such
as Patreon or Liberapay.
</p>
<div class="paragraph"><p>It also offers a
<a href="https://help.github.com/en/github/supporting-the-open-source-community-with-github-sponsors/about-github-sponsors#about-the-github-sponsors-matching-fund">Matching Fund</a>
which matches all donations until a cap of $5000, which has already been
reached by qutebrowser.</p></div>
</dd>
<dt class="hdlist1">
Is it possible to contribute via a one-time donation instead?
</dt>
<dd>
<p>
Yes! GitHub Sponsors allows for one-time donations (including custom amounts) using
the buttons next to "Select a tier". Alternatively, see the
<a href="https://github.com/qutebrowser/qutebrowser#donating">readme</a> for other donation
methods, but note that physical rewards (stickers/shirts) for such donations are
handled on a case-by-case basis due to the higher administrative overhead and fees.
</p>
</dd>
<dt class="hdlist1">
I’d like a certain reward (e.g. a t-shirt) but I’d prefer making a smaller monthly donation. Can I upgrade via a one-time donation?
</dt>
<dd>
<p>
GitHub allows for one-time donations (see the previous question). For physical
rewards, your total contributions will be summed up, so you can indeed make a
one-time donation to "upgrade". Before rewards are ordered, all sponsors will be
contacted with their total donation amount so that they can still upgrade, if
desired.
</p>
</dd>
<dt class="hdlist1">
GitHub tries to charge me for an entire year. What gives?
</dt>
<dd>
<p>
This happens if you have an existing annual billing cycle with GitHub (for
example a Pro membership or Marketplace subscription). At the moment,
GitHub’s billing system only supports annual sponsor payments in that case.
</p>
</dd>
<dt class="hdlist1">
Can I support you without getting any rewards/merchandise?
</dt>
<dd>
<p>
Absolutely! Any merchandise is optional. Before sending out merchandise
I’ll distribute forms asking for size/address/etc. - those forms will have
an option to not get any merch at all.
</p>
</dd>
<dt class="hdlist1">
Can I select my own amount rather than using the predefined tiers?
</dt>
<dd>
<p>
At the bottom of the tier list, GitHub allows specifying a custom donation amount.
</p>
</dd>
<dt class="hdlist1">
When will rewards be shipped?
</dt>
<dd>
<p>
Due to COVID-19, the Swiss Post currently
<a href="https://service.post.ch/vgkklp/info/informationen/Verkehrseinschraenkungen?lang=en">only
accepts priority letters for many countries</a>, including the US. Especially for the
t-shirts, the difference between economy and priority shipments is quite
significant. For the shirts, I estimate I’d spend a total of $250 to $1500 on
<strong>extra</strong> postage. Thus, shipping is currently on hold until the shipping situation
resolves. There’s currently no ETA for that happening, but rest assured everyone
will be notified (if contact details are available) once there are news.
</p>
</dd>
<dt class="hdlist1">
I’d like some stickers, but I can’t donate anything because of my financial situation.
</dt>
<dd>
<p>
Please <a href="mailto:mail@qutebrowser.org">get in touch</a>! As long as this doesn’t
get abused, I’d happily send stickers for free.
</p>
</dd>
<dt class="hdlist1">
We’re a company interested in sponsoring qutebrowser, can you invoice us for the sponsored amount?
</dt>
<dd>
<p>
You will receive a confirmation mail including a PDF receipt from GitHub
when sponsoring qutebrowser. If you really need an invoice, I can bill
you via my company, <a href="https://bruhin.software/">Bruhin Software</a>. Please
<a href="mailto:mail@qutebrowser.org">get in touch</a> to discuss details!
</p>
</dd>
<dt class="hdlist1">
Can you share details on the stickers?
</dt>
<dd>
<p>
There are two sticker designs: Rectangular stickers (with text) and round
vinyl stickers. Those are the same as during the 2016/2017 crowdfundings.
</p>
<div class="paragraph"><p><span class="image">
<a class="image" href="https://qutebrowser.org/img/sponsors/stickers.jpg">
Picture of the stickers
</a>
</span></p></div>
</dd>
<dt class="hdlist1">
Can you share details on the swag?
</dt>
<dd>
<p>
A limited number of metal buttons and magnets is available:
</p>
<div class="paragraph"><p><span class="image">
<a class="image" href="https://qutebrowser.org/img/sponsors/swag.jpg">
Picture of the swag
</a>
</span></p></div>
<div class="paragraph"><p>It’s planned to order more swag, depending on the exact demand. Possibilities
would include:</p></div>
<div class="ulist"><ul>
<li>
<p>
qutebrowser pens (refillable)
</p>
</li>
<li>
<p>
notebooks (the paper kind)
</p>
</li>
<li>
<p>
USB-sticks (for the "expensive swag" reward).
</p>
</li>
</ul></div>
</dd>
<dt class="hdlist1">
Can you share details on the t-shirts?
</dt>
<dd>
<p>
The shirts will be
<a href="https://www.bc-collection.eu/en/t-shirts/bc-e190-tu03t">B&C #E190</a> shirts
which are the successor to the "Exact 190" shirts distributed in the
previous crowdfundings: 100% cotton and relatively thick/heavy.
</p>
<div class="paragraph"><p>Sizes from XS and 5XL are available, most of them also as a fitted (women) cut.
Up to 40 colors are available from the supplier - there will be a selection of
recommended/tested colors, but any available color can be selected on your own
risk.</p></div>
<div class="paragraph"><p>The print will be a white silk-screen print, with the same design as in the
2016 crowdfunding:</p></div>
<div class="paragraph"><p><span class="image">
<a class="image" href="https://qutebrowser.org/img/sponsors/shirt.jpg">
Picture of the shirt
</a>
</span></p></div>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="privacy">Privacy Policy</h2>
<div class="sectionbody">
<div class="paragraph"><p>Being a mostly volunteer-run project, qutebrowser does not have the resources
for a full legalese version of a privacy policy. Instead, this overview should
answer the most common questions.</p></div>
<div class="paragraph"><p>For any privacy questions, please contact <a href="mailto:privacy@qutebrowser.org">privacy@qutebrowser.org</a>.</p></div>
<div class="sect2">
<h3 id="_website">Website</h3>
<div class="paragraph"><p>The qutebrowser.org website does not use any cookies or trackers. It does not
store any logs, except in rare situations when those are explicitly (and
temporarily) enabled to debug website issues. Even if enabled, IP addresses are
partially redacted in the logs. As soon as debugging is finished, any logs
are removed.</p></div>
<div class="paragraph"><p>Note that some services related to qutebrowser are stored on third-party
services such as GitHub. By using their websites, you’re subject to their
privacy policies.</p></div>
</div>
<div class="sect2">
<h3 id="_crash_reports">Crash reports</h3>
<div class="paragraph"><p>When qutebrowser crashes or you use the <code>:report</code> command, you have the
possibility to send a crash report. If you decide to do so, your crash report
is stored on qutebrowser’s server, where qutebrowser’s maintainer (Florian Bruhin / The
Compiler) can access it. Before February 2021, other core qutebrowser developers (a
maximum of four people total) could access the reports as well (access was restricted
based on the sensitive nature of those reports, not because of any known issues with
those individuals).</p></div>
<div class="paragraph"><p>If you select the option to include a debug log with your report, it’s possible
that sensitive information is contained in your report. You can show and edit
the log in the crash report window to redact any such information as you see
fit. Additionally, qutebrowser tries to avoid logging information such as
passwords entirely (by not logging any input going to websites).</p></div>
<div class="paragraph"><p>Currently, crash reports are stored indefinitely for technical reasons. With a
<a href="https://github.com/The-Compiler/crashbin/">new tool designed for crash reports</a>,
it’ll become possible to delete crashreports after the underlying issue is
fixed, but that tool needs some more work before qutebrowser can use it.</p></div>
</div>
<div class="sect2">
<h3 id="_application">Application</h3>
<div class="paragraph"><p>Without any user interaction, qutebrowser can be expected to make no
unsolicited requests. It does not contain any telemetry code.</p></div>
<div class="paragraph"><p>The QtWebEngine library (on which qutebrowser is based on) strips out any
Chromium features which talk to Google servers, so any unsolicited requests
should be treated as a bug.</p></div>
<div class="paragraph"><p>While qutebrowser uses DuckDuckGo as the default search page, no advertising
deal exists between DuckDuckGo and qutebrowser. Note that by visiting
DuckDuckGo, you’re subject to their privacy policy.</p></div>
<div class="paragraph"><p>With regard to websites you visit, qutebrowser tries to strike a balance
between usability/compatibility and privacy. There are various <code>content.*</code>
settings which can be used to tweak such behavior, reduce fingerprinting or
disable various features (usually at a cost of website compatibility).</p></div>
</div>
</div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated
2025-11-03 15:31:37 UTC
</div>
</div>
</body>
</html>
|