Switch to chromium

This commit is contained in:
Evie Litherland-Smith 2023-07-12 09:06:33 +01:00
parent c7c6089237
commit 96ecc68434
4 changed files with 5 additions and 9 deletions

View file

@ -77,7 +77,7 @@
"SpellcheckEnabled" = true; "SpellcheckEnabled" = true;
"SpellcheckLanguage" = ["en-GB"]; "SpellcheckLanguage" = ["en-GB"];
}; };
defaultSearchProviderSearchURL = "https://duckduckgo.com/?q=%s"; defaultSearchProviderSearchURL = "https://duckduckgo.com/?q={searchTerms}";
defaultSearchProviderEnabled = true; defaultSearchProviderEnabled = true;
}; };
}; };

View file

@ -67,7 +67,7 @@ animations {
bind = SUPER, Return, exec, wezterm bind = SUPER, Return, exec, wezterm
bind = SUPER, Space, exec, pkill rofi || rofi -show drun bind = SUPER, Space, exec, pkill rofi || rofi -show drun
bind = SUPER SHIFT, Space, togglefloating, bind = SUPER SHIFT, Space, togglefloating,
bind = SUPER, W, exec, pgrep firefox > /dev/null || firefox bind = SUPER, W, exec, pgrep chromium > /dev/null || chromium
bind = SUPER, E, exec, thunar bind = SUPER, E, exec, thunar
bind = SUPER, Q, killactive, bind = SUPER, Q, killactive,
bind = SUPER SHIFT, Q, exec, powermenu bind = SUPER SHIFT, Q, exec, powermenu
@ -141,6 +141,7 @@ bindm = SUPER, mouse:273, resizewindow
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
windowrule = workspace 2,(neovide) windowrule = workspace 2,(neovide)
windowrule = workspace 3,(chromium-browser)
windowrule = workspace 3,(firefox) windowrule = workspace 3,(firefox)
windowrule = workspace 4,^(libreoffice).* windowrule = workspace 4,^(libreoffice).*
windowrule = workspace 4,(Zotero) windowrule = workspace 4,(Zotero)

View file

@ -6,7 +6,7 @@
format-icons = { format-icons = {
"1" = "󰟀"; "1" = "󰟀";
"2" = "󰅴"; "2" = "󰅴";
"3" = "󰈹"; "3" = "󰊯";
"4" = "󰝰"; "4" = "󰝰";
"5" = "󰭹"; "5" = "󰭹";
"6" = ""; "6" = "";

View file

@ -1,11 +1,6 @@
{...}: { {...}: {
programs.chromium = { programs.chromium = {
enable = true; enable = true;
extensions = [ commandLineArgs = ["--ozone-platform-hint=auto"];
{id = "cjpalhdlnbpafiamejdnhcphjbkeiagm";} # uBlock Origin
{id = "fnaicdffflnofjppbagibeoednhnbjhg";} # Floccus
{id = "nngceckbapebfimnlniiiahkandclblb";} # Bitwarden
{id = "dphilobhebphkdjbpfohgikllaljmgbn";} # Simplelogin
];
}; };
} }