4 Commits

Author SHA1 Message Date
Vyvir 506a8a7572 Merge pull request #92 from hcortezr/pair-check-pr
Change pairing check command to validate
2026-02-07 18:33:17 +02:00
Humberto Cortez 5ea5d4f290 Change pairing check command to validate
Updated the pairing check command to use 'idevicepair validate' instead of 'idevicepair pair' to avoid error -5.
2026-02-03 00:05:26 -08:00
Vyvir 89c23e4791 Add libnotify to Arch dependencies 2026-01-27 17:58:13 +02:00
Vyvir 6508e8fbf1 Update Fedora tip 2026-01-27 17:55:10 +02:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ sudo dnf install binutils python3-pip python3-requests python3-keyring git libap
```
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:
@@ -61,7 +61,7 @@ That's it! Have fun with althea!
You can downgrade crypto policies to the previous Fedora version:
`sudo update-crypto-policies --set FEDORA40`
`sudo update-crypto-policies --set LEGACY`
## Credits
+1 -1
View File
@@ -161,7 +161,7 @@ def on_abtdlg(self):
about.destroy()
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:
return False
else: