Added qutebrowser config.py to config

This commit is contained in:
Random936 2025-03-15 22:14:49 -07:00
parent 5b89f4f667
commit 98e47678b3
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,15 @@
import os
from urllib.request import urlopen
# load your autoconfig, use this, if the rest of your config is empty!
config.load_autoconfig()
# Set Dark Mode
config.set("colors.webpage.darkmode.enabled", False)
config.set("colors.webpage.preferred_color_scheme", "dark")
# Toggle Dark Mode
config.bind('td', 'config-cycle colors.webpage.darkmode.enabled true false')
# Fix terminal editor
config.set('editor.command', ['alacritty', '-e', 'nvim', '{file}'])

View File

@ -42,4 +42,9 @@
package = pkgs.materia-theme; package = pkgs.materia-theme;
}; };
}; };
home.file = {
".config/qutebrowser/config.py".source = ../../dotfiles/.config/qutebrowser/config.py;
};
} }