Compare commits

...

2 Commits

Author SHA1 Message Date
Noah Masur
5d539abe21 shortcut for mpv shuffle mode 2025-05-10 10:39:51 -04:00
Noah Masur
cea08761bb use alt-l and alt-h in zellij locked mode 2025-05-10 10:39:35 -04:00
2 changed files with 14 additions and 0 deletions

View File

@ -31,5 +31,9 @@ in
pkgs.mpvScripts.mpv-delete-file
];
};
programs.fish.shellAbbrs = {
mpvs = "mpv --shuffle=yes";
};
};
}

View File

@ -155,6 +155,16 @@ in
_args = [ "locked" ];
};
};
"bind \"Alt l\"" = {
MoveFocusOrTab = {
_args = [ "Right" ];
};
};
"bind \"Alt h\"" = {
MoveFocusOrTab = {
_args = [ "Left" ];
};
};
};
};