Compare commits

...

3 commits

Author SHA1 Message Date
e4a38ac2e5
librewolf: disable more cleanOnShutdowns 2024-06-14 10:47:42 +02:00
486f13f266
add qt5ct and qt6ct configs 2024-06-14 10:23:15 +02:00
152361a8e5
switch to librewolf 2024-06-13 16:07:27 +02:00
7 changed files with 45 additions and 4 deletions

View file

@ -0,0 +1,11 @@
[Appearance]
color_scheme_path=/nix/store/a0ynl33ql76nd9jzc5yjscyn05zrlwvi-qt5ct-1.8/share/qt5ct/colors/airy.conf
custom_palette=false
icon_theme=<% opt.icon_theme %>
standard_dialogs=xdgdesktopportal
style=kvantum-dark
[Fonts]
fixed="<% opt.font %>,12,-1,5,50,0,0,0,0,0"
general="<% opt.font %>,12,-1,5,50,0,0,0,0,0"

View file

@ -0,0 +1,9 @@
[Appearance]
custom_palette=false
icon_theme=<% opt.icon_theme %>
standard_dialogs=xdgdesktopportal
style=kvantum-dark
[Fonts]
fixed="<% opt.font %>,12,-1,5,400,0,0,0,0,0,0,0,0,0,0,1"
general="<% opt.font %>,12,-1,5,400,0,0,0,0,0,0,0,0,0,0,1"

View file

@ -0,0 +1,2 @@
set editorcmd neovide
set theme midnight

View file

@ -0,0 +1,17 @@
// vim: ft=javascript
defaultPref("identity.fxaccounts.enabled", true);
defaultPref("webgl.disabled", false);
defaultPref("browser.sessionstore.resume_from_crash", false);
// If enabled, fails with "Server is missing xdg_foreign support" on river and the GTK portal.
defaultPref("widget.use-xdg-desktop-portal.file-picker", 0);
[
"cache", "cookies", "history", "offlineApps", "sessions"
].forEach(s => defaultPref(`privacy.clearOnShutdown.${s}`, false));
[
"cache", "cookiesAndStorage"
].forEach(s => defaultPref(`privacy.clearOnShutdown_v2.${s}`, false))

View file

@ -1,6 +1,7 @@
cg.addPath "cgassets"
cg.addPath ".config"
cg.addPath ".librewolf"
cg.addPath ".local"
cg.addPath ".ssh"
cg.addPath ".cargo"

View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1717786204,
"narHash": "sha256-4q0s6m0GUcN7q+Y2DqD27iLvbcd1G50T2lv08kKxkSI=",
"lastModified": 1718160348,
"narHash": "sha256-9YrUjdztqi4Gz8n3mBuqvCkMo4ojrA6nASwyIKWMpus=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "051f920625ab5aabe37c920346e3e69d7d34400e",
"rev": "57d6973abba7ea108bac64ae7629e7431e0199b6",
"type": "github"
},
"original": {

View file

@ -7,9 +7,10 @@ pub const std_options = std.Options{
};
const browsers = &[_][]const u8{
"librewolf",
"firefox",
"brave",
"luakit",
"firefox",
"chromium",
};