From 8c7e5408354a02e0e30cab8c7f92fb7b4b185c16 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Fri, 31 May 2024 14:52:23 +0200 Subject: [PATCH] Switch browser to firefox --- modules/home/hyprland/keybinds.nix | 8 ++++---- users/seb/home.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/home/hyprland/keybinds.nix b/modules/home/hyprland/keybinds.nix index 926dace..f0bb07e 100644 --- a/modules/home/hyprland/keybinds.nix +++ b/modules/home/hyprland/keybinds.nix @@ -16,7 +16,7 @@ bind = SUPER, R, exec, rofi -show drun bind = SUPER, RETURN, exec, kitty bind = SUPER, V, exec, clipboard - bind = SUPER, B, exec, brave + bind = SUPER, B, exec, firefox bind = SUPER, F, exec, nemo bind = SUPER, C, exec, codium @@ -73,9 +73,9 @@ # Control media ${ let - play-pause = "playerctl --ignore-player=brave play-pause"; - play-next = "playerctl --ignore-player=brave next"; - play-previous = "playerctl --ignore-player=brave previous"; + play-pause = "playerctl --ignore-player=firefox play-pause"; + play-next = "playerctl --ignore-player=firefox next"; + play-previous = "playerctl --ignore-player=firefox previous"; mute = "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"; volume-up = "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"; volume-down = "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"; diff --git a/users/seb/home.nix b/users/seb/home.nix index b5fc396..f098200 100644 --- a/users/seb/home.nix +++ b/users/seb/home.nix @@ -19,7 +19,6 @@ home.packages = [ pkgs.fastfetch - pkgs.brave pkgs.cinnamon.nemo-with-extensions pkgs.jetbrains.idea-community pkgs.vlc @@ -36,5 +35,6 @@ wrappers.marktext wrappers.webcord (wrappers.kitty { inherit (config.myConfig) theme; }) + wrappers.firefox ]; }