switch browser to librewolf
This commit is contained in:
parent
aff050df73
commit
3879ac7b8b
|
|
@ -52,7 +52,7 @@ beautiful.init(theme)
|
|||
-- This is used later as the default terminal and editor to run.
|
||||
terminal = "alacritty"
|
||||
run = "rofi -show drun"
|
||||
browser = "firefox"
|
||||
browser = "librewolf"
|
||||
file_manager = "dolphin"
|
||||
editor = "nvim"
|
||||
editor_cmd = terminal .. " -e " .. editor
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ _exists zoxide && eval "$(zoxide init bash)"
|
|||
# set vi mode
|
||||
set -o vi
|
||||
_exists nvim && export EDITOR=nvim || export EDITOR=vim
|
||||
export BROWSER=firefox
|
||||
export BROWSER=librewolf
|
||||
|
||||
# disable xon/xoff flow control (ctrl-s, ctrl-q)
|
||||
stty -ixon
|
||||
|
|
|
|||
|
|
@ -1,13 +1,10 @@
|
|||
backend = "glx";
|
||||
opacity-rule = [
|
||||
# "90:class_g = 'kitty'",
|
||||
];
|
||||
blur: {
|
||||
method = "dual_kawase",
|
||||
strength = 5,
|
||||
}
|
||||
blur-background-exclude = [
|
||||
"fullscreen",
|
||||
"class_g = 'firefox'", # for autoscroll mouse
|
||||
"class_g = 'librewolf'",
|
||||
];
|
||||
fading = true;
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
]
|
||||
++ lib.optionals config.u.has.graphical [
|
||||
(config.u.lib.localHome pkgs.firefox "firefox" "bin/firefox")
|
||||
(config.u.lib.localHome pkgs.librewolf "librewolf" "bin/librewolf")
|
||||
alacritty
|
||||
nsxiv
|
||||
rofi
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ lib.mkIf config.u.has.graphical {
|
|||
xdg.mimeApps.enable = true;
|
||||
xdg.mimeApps.defaultApplications = let
|
||||
image = "nsxiv-rifle.desktop";
|
||||
browser = "firefox.desktop";
|
||||
browser = "librewolf.desktop";
|
||||
text = "nvim.desktop";
|
||||
media = "mpv.desktop";
|
||||
in {
|
||||
|
|
|
|||
Loading…
Reference in a new issue