Merge branch 'main' of https://git.sagev.space/sage/dotfiles
This commit is contained in:
commit
7be306f091
|
@ -1,8 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
kill $(pgrep firefox)
|
kill $(pgrep firefox)
|
||||||
gnome-terminal -e "$HOME/.bin/update-firefox.sh"
|
gnome-terminal -e "$HOME/.bin/update-firefox.sh && MOZ_ENABLE_WAYLAND=1 setsid $HOME/.bin/firefox-developer-edition/firefox-bin"
|
||||||
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"
|
test -f "$HOME/.aws.exp" && bash -c "sleep 10; $HOME/.aws.exp" &> "$HOME/.aws.exp.log"
|
||||||
|
|
||||||
wait
|
wait
|
||||||
|
|
|
@ -41,7 +41,7 @@ def get_project_type(project) -> (str, str):
|
||||||
return ("clion", None)
|
return ("clion", None)
|
||||||
if file.endswith(".csproj"):
|
if file.endswith(".csproj"):
|
||||||
return ("rider", file)
|
return ("rider", file)
|
||||||
if file.endswith("DotSettings"):
|
if "DotSettings" in file:
|
||||||
# Allow .csproj to override this value
|
# Allow .csproj to override this value
|
||||||
ret = ("rider", None)
|
ret = ("rider", None)
|
||||||
if file.endswith(".py"):
|
if file.endswith(".py"):
|
||||||
|
|
Loading…
Reference in New Issue