Compare commits

...

3 Commits
v0.1 ... master

Author SHA1 Message Date
d25241c178 README.md 2024-05-01 10:35:40 +02:00
81449c0c51 Update URLs to Gitlab 2022-10-12 12:39:40 +02:00
q3aql
e3eecb0336 Use clear command on Cygwin 2022-07-03 20:44:56 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ a2tm is a python script to manage torrent/magnet/URL downloads more easily using
* Open the terminal and type the following comands: * Open the terminal and type the following comands:
```shell ```shell
$ git clone https://github.com/q3aql/a2tm $ git clone https://git.q3aql.dev/q3aql/a2tm
$ cd a2tm $ cd a2tm
$ chmod +x install.sh $ chmod +x install.sh
$ sudo ./install.sh $ sudo ./install.sh
@ -55,4 +55,4 @@ a2tm is a python script to manage torrent/magnet/URL downloads more easily using
* [Python homepage](https://www.python.org/) * [Python homepage](https://www.python.org/)
* [aria2 homepage](https://aria2.github.io/) * [aria2 homepage](https://aria2.github.io/)
* [aria2 static builds](https://github.com/q3aql/aria2-static-builds) * [aria2 static builds](https://gitlab.com/q3aql/aria2-static-builds)

View File

@ -30,7 +30,7 @@ if sys.version_info<(3,0):
#Function to clear screen #Function to clear screen
def ClearScreen(): def ClearScreen():
if sys.platform == "cygwin": if sys.platform == "cygwin":
print (300 * "\n") os.system("clear")
elif os.name == "posix": elif os.name == "posix":
os.system("clear") os.system("clear")
elif os.name == "nt": elif os.name == "nt":