🪟 Resize by using arrow keys, Cowsay fortune on shell open

This commit is contained in:
Martin Berg Alstad 2025-01-06 19:16:25 +01:00
parent 5fa27621dd
commit 00a3c0b0cd
Signed by: martials
GPG Key ID: A3824877B269F2E2
3 changed files with 10 additions and 0 deletions

View File

@ -54,6 +54,8 @@
nix-prefetch-github # Cmd to get rev and hash from GitHub nix-prefetch-github # Cmd to get rev and hash from GitHub
gimp gimp
vlc vlc
fortune
cowsay
]; ];
nix.settings.experimental-features = [ nix.settings.experimental-features = [

View File

@ -326,6 +326,12 @@ bind = $mainMod, right, movefocus, r
bind = $mainMod, up, movefocus, u bind = $mainMod, up, movefocus, u
bind = $mainMod, down, movefocus, d 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] # Switch workspaces with mainMod + [0-9]
bind = $mainMod, 1, workspace, 1 bind = $mainMod, 1, workspace, 1
bind = $mainMod, 2, workspace, 2 bind = $mainMod, 2, workspace, 2

View File

@ -1,3 +1,4 @@
# For Fish dotfiles, see: /home-manager/fish.nix and home-manager/starship.nix
{ pkgs, ... }: { pkgs, ... }:
{ {
@ -18,6 +19,7 @@
# Start starship when creating a new shell # Start starship when creating a new shell
interactiveShellInit = '' interactiveShellInit = ''
starship init fish | source starship init fish | source
fortune | cowsay -f tux
''; '';
shellAliases = { shellAliases = {
# Transfer shell config to target device # Transfer shell config to target device