From 83dc09a68443a105a82ecb8a4bbcb0b343649c17 Mon Sep 17 00:00:00 2001 From: miruka Date: Tue, 29 Oct 2019 13:35:19 -0400 Subject: [PATCH] live-reload: change part of the WM_CLASS --- live-reload.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/live-reload.sh b/live-reload.sh index d35ab2cd..c09da742 100755 --- a/live-reload.sh +++ b/live-reload.sh @@ -13,7 +13,8 @@ qmake harmonyqml.pro CONFIG+=dev && make while true; do find src harmonyqml.pro -type f | + # -name affects the first part of the WM_CLASS returned by xprop on Linux entr -cdnr sh -c \ - "qmake harmonyqml.pro CONFIG+=dev && make && ./harmonyqml $*" + "qmake harmonyqml.pro CONFIG+=dev && make && ./harmonyqml -name dev $*" sleep 0.2 done