From 67f8c8aa2138a2e495059b7f2df18c86644d26c6 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Wed, 20 Mar 2024 11:27:14 -0400 Subject: [PATCH 1/2] Don't run firefox until update is complete --- fake_home/.bin/ffx.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fake_home/.bin/ffx.sh b/fake_home/.bin/ffx.sh index f651463..0804590 100755 --- a/fake_home/.bin/ffx.sh +++ b/fake_home/.bin/ffx.sh @@ -1,8 +1,7 @@ #!/bin/bash kill $(pgrep firefox) -gnome-terminal -e "$HOME/.bin/update-firefox.sh" -MOZ_ENABLE_WAYLAND=1 setsid $HOME/.bin/firefox-developer-edition/firefox-bin +gnome-terminal -e "$HOME/.bin/update-firefox.sh && MOZ_ENABLE_WAYLAND=1 setsid $HOME/.bin/firefox-developer-edition/firefox-bin" test -f "$HOME/.aws.exp" && bash -c "sleep 10; $HOME/.aws.exp" &> "$HOME/.aws.exp.log" wait From bcd54ddbf4f047621d30aa5c869d0909da768a93 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Wed, 20 Mar 2024 11:31:48 -0400 Subject: [PATCH 2/2] Broader DotSettings matcher --- fake_home/.rofi-list-git-repos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fake_home/.rofi-list-git-repos.py b/fake_home/.rofi-list-git-repos.py index 07540da..879e899 100755 --- a/fake_home/.rofi-list-git-repos.py +++ b/fake_home/.rofi-list-git-repos.py @@ -41,7 +41,7 @@ def get_project_type(project) -> (str, str): return ("clion", None) if file.endswith(".csproj"): return ("rider", file) - if file.endswith("DotSettings"): + if "DotSettings" in file: # Allow .csproj to override this value ret = ("rider", None) if file.endswith(".py"):