diff --git a/configuration.nix b/configuration.nix index 4c15034..fafd928 100644 --- a/configuration.nix +++ b/configuration.nix @@ -54,6 +54,8 @@ nix-prefetch-github # Cmd to get rev and hash from GitHub gimp vlc + fortune + cowsay ]; nix.settings.experimental-features = [ diff --git a/home-manager/hyprland/hyprland.conf b/home-manager/hyprland/hyprland.conf index 1ec6e75..d404070 100644 --- a/home-manager/hyprland/hyprland.conf +++ b/home-manager/hyprland/hyprland.conf @@ -326,6 +326,12 @@ bind = $mainMod, right, movefocus, r bind = $mainMod, up, movefocus, u bind = $mainMod, down, movefocus, d +# Resize the focused window +binde = $shiftMod, right, resizeactive, 20 0 +binde = $shiftMod, left, resizeactive, -20 0 +binde = $shiftMod, up, resizeactive, 0 -20 +binde = $shiftMod, down, resizeactive, 0 20 + # Switch workspaces with mainMod + [0-9] bind = $mainMod, 1, workspace, 1 bind = $mainMod, 2, workspace, 2 diff --git a/modules/terminal/shell.nix b/modules/terminal/shell.nix index 1121878..7db3e6e 100644 --- a/modules/terminal/shell.nix +++ b/modules/terminal/shell.nix @@ -1,3 +1,4 @@ +# For Fish dotfiles, see: /home-manager/fish.nix and home-manager/starship.nix { pkgs, ... }: { @@ -18,6 +19,7 @@ # Start starship when creating a new shell interactiveShellInit = '' starship init fish | source + fortune | cowsay -f tux ''; shellAliases = { # Transfer shell config to target device