🪟 Resize by using arrow keys, Cowsay fortune on shell open
This commit is contained in:
parent
5fa27621dd
commit
00a3c0b0cd
@ -54,6 +54,8 @@
|
||||
nix-prefetch-github # Cmd to get rev and hash from GitHub
|
||||
gimp
|
||||
vlc
|
||||
fortune
|
||||
cowsay
|
||||
];
|
||||
|
||||
nix.settings.experimental-features = [
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user