Compare commits

...

3 Commits

Author SHA1 Message Date
Sebastian Rust
9f4e4f96c4 added: habitica-nativefier 2022-07-10 13:40:11 +02:00
Sebastian Rust
2e3d890743 added: todoist-nativefier 2022-07-10 13:39:58 +02:00
Sebastian Rust
b9e022694e added: focusmate-nativefier 2022-07-10 13:39:17 +02:00
6 changed files with 18 additions and 1 deletions

9
.gitmodules vendored
View File

@@ -55,3 +55,12 @@
[submodule "plymouth-theme-arch-breeze-git"] [submodule "plymouth-theme-arch-breeze-git"]
path = plymouth-theme-arch-breeze-git path = plymouth-theme-arch-breeze-git
url = https://aur.archlinux.org/plymouth-theme-arch-breeze-git.git url = https://aur.archlinux.org/plymouth-theme-arch-breeze-git.git
[submodule "focusmate-nativefier"]
path = focusmate-nativefier
url = https://git.rust.cloud/harlequix/focusmate-nativefier
[submodule "todoist-nativefier"]
path = todoist-nativefier
url = https://git.rust.cloud/harlequix/todoist-nativefier
[submodule "habitica-nativefier"]
path = habitica-nativefier
url = https://git.rust.cloud/harlequix/habitica-nativefier

View File

@@ -29,3 +29,6 @@ members:
- directory: plog - directory: plog
- directory: plymouth-git - directory: plymouth-git
- directory: plymouth-theme-arch-breeze-git - directory: plymouth-theme-arch-breeze-git
- directory: focusmate-nativefier
- directory: todoist-nativefier
- directory: habitica-nativefier

1
focusmate-nativefier Submodule

Submodule focusmate-nativefier added at f33b70e458

1
habitica-nativefier Submodule

Submodule habitica-nativefier added at 8680e6dbdc

View File

@@ -8,8 +8,10 @@ def aur(c, name):
@task @task
def add(c, url, name=None): def add(c, url, name=None):
print(name)
if name is None: if name is None:
ending = url.rfind('/') + 1 pos = url.rfind('/') + 1
ending = url[pos:]
ending = ending.split(".") ending = ending.split(".")
name = ending[0] name = ending[0]
c.run(f"git submodule add {url} {name}") c.run(f"git submodule add {url} {name}")

1
todoist-nativefier Submodule

Submodule todoist-nativefier added at b32e97dc89