added: focusmate-nativefier
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -55,3 +55,6 @@
|
|||||||
[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
|
||||||
|
|||||||
@@ -29,3 +29,4 @@ 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
|
||||||
|
|||||||
1
focusmate-nativefier
Submodule
1
focusmate-nativefier
Submodule
Submodule focusmate-nativefier added at f33b70e458
6
tasks.py
6
tasks.py
@@ -8,8 +8,12 @@ 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
|
||||||
|
print(url)
|
||||||
|
print(pos)
|
||||||
|
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}")
|
||||||
|
|||||||
Reference in New Issue
Block a user