python and other fixes

This commit is contained in:
Noah Masur
2022-06-21 17:51:27 -04:00
parent c4ee4cafa5
commit 85116fc8fd
7 changed files with 29 additions and 8 deletions

View File

@ -31,9 +31,16 @@ function obj:init()
-- get the focused window
local win = hs.window.focusedWindow()
-- maximize if possible
for i = 1, 8 do
win:maximize()
end
win:maximize()
win:maximize()
win:maximize()
win:maximize()
win:maximize()
win:maximize()
win:maximize()
-- for i = 1, 8 do
-- win:maximize()
-- end
end)
end

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }: {
{ config, pkgs, lib, ... }: {
home-manager.users.${config.user} = {
@ -16,6 +16,11 @@
noti # Create notifications programmatically
];
programs.fish.shellAbbrs = {
# Add noti for ghpr in Darwin
ghpr = lib.mkForce "gh pr create && sleep 3 && noti gh run watch";
};
};
}