-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
1,215 additions
and
756 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Python | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
*.so | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# PyInstaller | ||
dist/ | ||
build/ | ||
*.spec | ||
|
||
# IDE | ||
.idea/ | ||
.vscode/ | ||
*.swp | ||
*.swo | ||
|
||
# Environment | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
|
||
# Logs | ||
*.log | ||
|
||
# System | ||
.DS_Store | ||
Thumbs.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# Oracle - AUR Helper Wrapper | ||
|
||
Oracle is a modern graphical user interface wrapper for AUR helpers and Pacman, designed to make package management on Arch Linux more accessible and user-friendly. | ||
|
||
|
||
## Features | ||
|
||
- π Search packages in both official repositories and AUR | ||
- π¦ Install packages with a simple click | ||
- π Check for system updates | ||
- π Perform system-wide updates | ||
- ποΈ Remove packages with dependency handling | ||
- π Real-time terminal output viewing | ||
- π Secure sudo authentication handling | ||
- π¨ Modern dark theme interface | ||
|
||
## Prerequisites | ||
|
||
- Arch Linux | ||
- Python | ||
- PyQt6 | ||
- One of the following AUR helpers: | ||
- yay (recommended) | ||
- paru | ||
- pamac | ||
- aurman | ||
- pikaur | ||
|
||
## Installation | ||
|
||
### Option 1: Using the Pre-built Binary | ||
|
||
1. Download the latest release from the [releases page](https://github.com/0xgingi/oracle/releases) | ||
2. Make the file executable: | ||
```bash | ||
chmod +x oracle | ||
``` | ||
3. Run the application: | ||
```bash | ||
./oracle | ||
``` | ||
|
||
Optional: Move to your path for system-wide access: | ||
```bash | ||
sudo mv oracle /usr/local/bin/ | ||
``` | ||
|
||
### Option 2: Building from Source | ||
|
||
1. Clone the repository: | ||
```bash | ||
git clone https://github.com/0xgingi/oracle.git | ||
cd oracle | ||
``` | ||
|
||
2. Install build dependencies inside a venv: | ||
```bash | ||
python -m venv venv | ||
source venv/bin/activate | ||
pip install -r requirements.txt | ||
``` | ||
|
||
3. Build the executable: | ||
```bash | ||
python build.py | ||
``` | ||
|
||
The executable will be created in the `dist` directory. | ||
|
||
4. Run the application: | ||
```bash | ||
./dist/oracle | ||
``` | ||
|
||
### Option 3: Running from Source | ||
|
||
1. Clone the repository: | ||
```bash | ||
git clone https://github.com/0xgingi/oracle.git | ||
cd oracle | ||
``` | ||
|
||
2. Install dependencies: | ||
```bash | ||
pip install -r requirements.txt | ||
``` | ||
|
||
3. Run the application: | ||
```bash | ||
python aur_manager.py | ||
``` |
Oops, something went wrong.