From 51f68ee0a96a65a3add8b722514f8c308ab9dda0 Mon Sep 17 00:00:00 2001 From: derped Date: Tue, 31 Dec 2024 15:10:40 +0100 Subject: [PATCH] replace alacritty with ghostty --- config/etc/i3/config.nix | 2 +- config/etc/sway/config.nix | 2 +- pkgsets/xpkgs.nix | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/etc/i3/config.nix b/config/etc/i3/config.nix index 4c29cff..5d6fc18 100644 --- a/config/etc/i3/config.nix +++ b/config/etc/i3/config.nix @@ -139,7 +139,7 @@ floating_modifier $mod # start a terminal - bindsym $mod+Return exec alacritty + bindsym $mod+Return exec ghostty # kill focused window bindsym $mod+Shift+q kill diff --git a/config/etc/sway/config.nix b/config/etc/sway/config.nix index 3193ca5..70c1016 100644 --- a/config/etc/sway/config.nix +++ b/config/etc/sway/config.nix @@ -54,7 +54,7 @@ pkgs.writeText "config" '' set $up k set $right l # Your preferred terminal emulator - set $term ${pkgs.alacritty}/bin/alacritty + set $term ${pkgs.ghostty}/bin/ghostty # Your preferred application launcher # Note: it's recommended that you pass the final command to sway set $menu ${pkgs.rofi-wayland}/bin/rofi -config /etc/rofi.rasi -show combi diff --git a/pkgsets/xpkgs.nix b/pkgsets/xpkgs.nix index 63bb0e5..90a2b57 100644 --- a/pkgsets/xpkgs.nix +++ b/pkgsets/xpkgs.nix @@ -6,18 +6,18 @@ { config.machine.pkgsets.xpkgs.pkgs = with pkgs; [ acpilight - feh - scrot dconf - alacritty + feh + ghostty gvfs - oneko - pcmanfm lxmenu-data - shared-mime-info + oneko pavucontrol + pcmanfm + scrot + shared-mime-info xclip - xorg.xkill xdiskusage + xorg.xkill ]; }