From b5910ef1747a15b8ed9c91617d4cbaad7ca10f0f Mon Sep 17 00:00:00 2001 From: ant Date: Fri, 27 Sep 2024 11:14:29 +0200 Subject: [PATCH] fix first call in script --- home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home.nix b/home.nix index 1c8b1cf..9874ddc 100644 --- a/home.nix +++ b/home.nix @@ -55,6 +55,7 @@ import subprocess from sys import stdin, argv cmd = argv[1:] + subprocess.call(cmd, shell=True) while stdin.readline(): subprocess.call(cmd, shell=True) '';