mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-18 02:31:01 +01:00
qutebrowser: Nixify remaining config settings
This commit is contained in:
parent
481cc84e9a
commit
ca4e454138
@ -8,6 +8,16 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
|
url = {
|
||||||
|
start_pages = [
|
||||||
|
"about:blank"
|
||||||
|
];
|
||||||
|
|
||||||
|
default_page = "about:blank";
|
||||||
|
};
|
||||||
|
|
||||||
|
colors.webpage.darkmode.enabled = false;
|
||||||
|
|
||||||
confirm_quit = [
|
confirm_quit = [
|
||||||
"multiple-tabs"
|
"multiple-tabs"
|
||||||
"downloads"
|
"downloads"
|
||||||
@ -90,19 +100,15 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
searchEngines = {
|
||||||
|
DEFAULT = "https://search.goo.ne.jp/web.jsp?MT={}";
|
||||||
|
};
|
||||||
|
|
||||||
extraConfig = /* python */ ''
|
extraConfig = /* python */ ''
|
||||||
from qutebrowser.mainwindow import tabwidget
|
from qutebrowser.mainwindow import tabwidget
|
||||||
|
|
||||||
tabwidget.TabWidget.MUTE_STRING = ""
|
tabwidget.TabWidget.MUTE_STRING = ""
|
||||||
tabwidget.TabWidget.AUDIBLE_STRING = "[A]"
|
tabwidget.TabWidget.AUDIBLE_STRING = "[A]"
|
||||||
|
|
||||||
c.colors.webpage.darkmode.enabled = False
|
|
||||||
|
|
||||||
c.url.start_pages = ['about:blank']
|
|
||||||
c.url.default_page = "about:blank"
|
|
||||||
c.url.searchengines = {
|
|
||||||
'DEFAULT': 'https://search.goo.ne.jp/web.jsp?MT={}'
|
|
||||||
}
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user