From 0ad80cf7a1ad5bdc17befc0ebb0377ee0cd85ec2 Mon Sep 17 00:00:00 2001 From: kenji Date: Tue, 23 Dec 2025 23:03:05 +0000 Subject: [PATCH] added firefox --- apps/firefox/home.nix | 2 +- apps/hyprland/hypr/binds.nix | 11 ++++++++++- modules/home/apps.nix | 1 + 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/firefox/home.nix b/apps/firefox/home.nix index 646bc4d..adb636b 100644 --- a/apps/firefox/home.nix +++ b/apps/firefox/home.nix @@ -37,7 +37,7 @@ ]; }; bookmarks = { - force = false; + force = true; settings = [ { toolbar = true; diff --git a/apps/hyprland/hypr/binds.nix b/apps/hyprland/hypr/binds.nix index ebc57f8..116c4cc 100644 --- a/apps/hyprland/hypr/binds.nix +++ b/apps/hyprland/hypr/binds.nix @@ -1,13 +1,22 @@ { wayland.windowManager.hyprland.settings = { bindd = [ - "SUPER, Return, Open Terminal, exec, ghostty" + # essential + "SUPER, Return, Open Terminal, exec, ghostty" # FIXME: must be using xdg-open "SUPER, Q, Kill active, killactive" + # move focus "SUPER, J, Move focus down, movefocus, d" "SUPER, K, Move focus up, movefocus, u" "SUPER, H, Move focus left, movefocus, l" "SUPER, L, Move focus right, movefocus, r" + + # fullscreen + "SUPER, F, Toggle Fullscreen, fullscreen, 0" + "SUPER SHIFT, F, Toggle Maximized Fullscreen, fullscreen, 1" + + # apps + "SUPER, W, Open browser, exec, firefox" # FIXME: must be xdg-open ]; }; } diff --git a/modules/home/apps.nix b/modules/home/apps.nix index 3ce2429..a46e04a 100644 --- a/modules/home/apps.nix +++ b/modules/home/apps.nix @@ -2,5 +2,6 @@ imports = [ ../../apps/yazi/home.nix ../../apps/gemini/home.nix + ../../apps/firefox/home.nix ]; }