diff options
| -rw-r--r-- | home/ebisu/fortune/desktop/hyprland/hyprland/binds.nix | 7 | ||||
| -rw-r--r-- | home/ebisu/fortune/desktop/hyprland/hyprland/workspaces.nix | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/home/ebisu/fortune/desktop/hyprland/hyprland/binds.nix b/home/ebisu/fortune/desktop/hyprland/hyprland/binds.nix index 7c31eb4..f31b1c4 100644 --- a/home/ebisu/fortune/desktop/hyprland/hyprland/binds.nix +++ b/home/ebisu/fortune/desktop/hyprland/hyprland/binds.nix @@ -1,10 +1,11 @@ +{ pkgs, config, ... }: { wayland.windowManager.hyprland = { settings = { "$mod" = "SUPER"; - "$mail" = "mailspring --password-store=\"gnome-libsecret\" --enable-features=UseOzonePlatform --ozone-platform=wayland"; - "$script_path" = "$HOME/.config/hypr/hyprland/scripts"; - "$terminal" = "kitty"; + "$mail" = "${pkgs.mailspring}/bin/mailspring --password-store=\"gnome-libsecret\" --enable-features=UseOzonePlatform --ozone-platform=wayland"; + "$script_path" = "${config.xdg.configHome}/hypr/hyprland/scripts"; + "$terminal" = "${pkgs.kitty}/bin/kitty"; "$top" = "$terminal -e rofi -modi top -show top"; # "$terminal -e htop" bind = diff --git a/home/ebisu/fortune/desktop/hyprland/hyprland/workspaces.nix b/home/ebisu/fortune/desktop/hyprland/hyprland/workspaces.nix index 77c98fe..2df3efd 100644 --- a/home/ebisu/fortune/desktop/hyprland/hyprland/workspaces.nix +++ b/home/ebisu/fortune/desktop/hyprland/hyprland/workspaces.nix @@ -28,7 +28,7 @@ ++ [ "special:simple_terminal, on-created-empty:[float;center;size 50% 65%] ${pkgs.kitty}/bin/kitty --class simple_terminal" "special:simple_calculator, on-created-empty:[float;center;size 50% 50%] ${pkgs.kitty}/bin/kitty --class simple_calculator -e bc -lq" - "special:chatgpt, on-created-empty:[float;center;size 65% 75%] thorium --user-data-dir=${config.home.homeDirectory}/.local/share/thorium-browser-chatgpt --app='https://chatgpt.com/'" + "special:chatgpt, on-created-empty:[float;center;size 65% 75%] thorium --user-data-dir=${config.home.homeDirectory}/.local/share/thorium-browser-chatgpt --app='https://chatgpt.com/' --enable-features=UseOzonePlatform --ozone-platform=wayland" "special:spotify, on-created-empty:[float;center;size 65% 90%] ${pkgs.spotify}/bin/spotify" "special:calculator, on-created-empty:[float;center;size 50% 50%] ${pkgs.qalculate-gtk}/bin/qalculate-gtk" "special:rofi, float, center, size 50% 50%" |