Compare commits

...

2 commits

Author SHA1 Message Date
krizej
4aa5a8a26c remove debug 2024-07-11 16:09:16 +02:00
krizej
af8984dbbc autotiling 2024-07-11 13:45:54 +02:00
2 changed files with 5 additions and 7 deletions

View file

@ -29,13 +29,7 @@ args @ { pkgs, ... }:
hardware.pulseaudio.enable = true;
system.stateVersion = "23.11";
system.userActivationScripts = {
test2 = ''
${pkgs.autorandr}/bin/autorandr --match-edid --dry-run &> /home/krizej/dupaa
'';
};
users.users.krizej = {
isNormalUser = true;
extraGroups = [ "wheel" "input" ];

View file

@ -62,6 +62,8 @@ in {
};
startup = [
{ command = "autotiling &"; notification = false; }
# { command = "mpd &"; notification = false; }
{ command = "dunst &"; notification = false; }
{ command = "flameshot &"; notification = false; }
@ -213,6 +215,8 @@ in {
};
home.packages = with pkgs; [
autotiling
(pkgs.writeShellScriptBin "i3custom-center-mouse-on-focus" ''
eval $(xdotool getwindowfocus getwindowgeometry --shell)
MX=$(($X + $WIDTH / 2))