This commit is contained in:
Sage Vaillancourt 2024-03-20 21:11:30 -04:00
commit 7be306f091
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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"):