forked from Shinonome/althea
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 506a8a7572 | |||
| 5ea5d4f290 | |||
| 89c23e4791 | |||
| 6508e8fbf1 |
@@ -28,7 +28,7 @@ sudo dnf install binutils python3-pip python3-requests python3-keyring git libap
|
|||||||
```
|
```
|
||||||
Arch Linux:
|
Arch Linux:
|
||||||
```
|
```
|
||||||
sudo pacman -S binutils wget curl git python-pip python-requests python-gobject python-keyring libappindicator-gtk3 usbmuxd libimobiledevice avahi zlib unzip usbutils psmisc libhandy
|
sudo pacman -S binutils wget curl git python-pip python-requests python-gobject python-keyring libappindicator-gtk3 usbmuxd libimobiledevice avahi zlib unzip usbutils psmisc libhandy libnotify
|
||||||
```
|
```
|
||||||
|
|
||||||
OpenSUSE:
|
OpenSUSE:
|
||||||
@@ -61,7 +61,7 @@ That's it! Have fun with althea!
|
|||||||
|
|
||||||
You can downgrade crypto policies to the previous Fedora version:
|
You can downgrade crypto policies to the previous Fedora version:
|
||||||
|
|
||||||
`sudo update-crypto-policies --set FEDORA40`
|
`sudo update-crypto-policies --set LEGACY`
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ def on_abtdlg(self):
|
|||||||
about.destroy()
|
about.destroy()
|
||||||
|
|
||||||
def paircheck(): # Check if the device is paired already
|
def paircheck(): # Check if the device is paired already
|
||||||
pairchecking = subprocess.run('idevicepair pair | grep -q "SUCCESS"', shell=True)
|
pairchecking = subprocess.run('idevicepair validate | grep -q "SUCCESS"', shell=True) # use validate instaed of pair, pair causes error -5 if already paired
|
||||||
if pairchecking.returncode == 0:
|
if pairchecking.returncode == 0:
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user