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