All Projects → 14mRh4X0r → arch-argon

14mRh4X0r / arch-argon

Licence: other
lightweight GUI package manager + update notifier (with full AUR support) for Arch Linux, originally by Bob Henry Pirkle

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to arch-argon

Pikaur
AUR helper with minimal dependencies. Review PKGBUILDs all in once, next build them all without user interaction.
Stars: ✭ 563 (+1841.38%)
Mutual labels:  aur, arch-linux
llvm-svn
Arch Linux PKGBUILD for LLVM, Clang et al. (latest SVN code)
Stars: ✭ 18 (-37.93%)
Mutual labels:  aur, arch-linux
buttermanager
ButterManager is a BTRFS tool for managing snapshots, balancing filesystems and upgrading the system safetly.
Stars: ✭ 92 (+217.24%)
Mutual labels:  aur, arch-linux
Cylon
A CLI TUI menu driven bash shell script supporting updates, maintenance, backups and system checks for an Arch based Linux distro
Stars: ✭ 121 (+317.24%)
Mutual labels:  aur, arch-linux
Archtorify
Transparent proxy through Tor for Arch Linux OS
Stars: ✭ 100 (+244.83%)
Mutual labels:  aur, arch-linux
Trizen
Lightweight AUR Package Manager
Stars: ✭ 696 (+2300%)
Mutual labels:  aur, arch-linux
notion-repackaged
notion executables with the notion-enhancer embedded & a vanilla port of the official app to linux
Stars: ✭ 733 (+2427.59%)
Mutual labels:  aur, arch-linux
Aurdroid
Android AUR [Arch Linux user Repository] packages browser
Stars: ✭ 88 (+203.45%)
Mutual labels:  aur, arch-linux
Sielo Legacy
An open source browser made with Qt and WebEngine
Stars: ✭ 113 (+289.66%)
Mutual labels:  aur, arch-linux
Pacback
Advanced Version Control for Arch Linux
Stars: ✭ 146 (+403.45%)
Mutual labels:  aur, arch-linux
gtk3-rs
Rust bindings for GTK 3
Stars: ✭ 451 (+1455.17%)
Mutual labels:  gtk3
Halo
Halo is a Weather App for Linux Desktops.
Stars: ✭ 21 (-27.59%)
Mutual labels:  gtk3
gui-python-gtk
Repositório criado para documentar e centralizar conteúdos, dicas, tutoriais e exemplos de código sobre a construção de interfaces com a linguagem de programação Python (PyGObject) e o toolkit gráfico Gtk 4.
Stars: ✭ 85 (+193.1%)
Mutual labels:  gtk3
dotfiles
My personal configuration files
Stars: ✭ 120 (+313.79%)
Mutual labels:  arch-linux
arch-btrfs-install-guide
Arch Linux installation guide with btrfs and snapper, this guide is based on the information from unicks.eu guide https://www.youtube.com/watch?v=TKdZiCTh3EM, and Arch Linux UEFI step-by-step installation guide https://www.youtube.com/watch?v=dOXYZ8hKdmc from ALU.
Stars: ✭ 32 (+10.34%)
Mutual labels:  arch-linux
manjarno
Why you shouldn't use Manjaro
Stars: ✭ 96 (+231.03%)
Mutual labels:  arch-linux
MaCoPiX
Mascot Constructive Pilot for X
Stars: ✭ 57 (+96.55%)
Mutual labels:  gtk3
Andspoilt
Run interactive android exploits in linux.
Stars: ✭ 101 (+248.28%)
Mutual labels:  arch-linux
dotfiles
dotfiles of simonvic daily used enviroment
Stars: ✭ 75 (+158.62%)
Mutual labels:  arch-linux
telegram-pi-bot
A python-telegram-bot setup to run on Raspberry pi
Stars: ✭ 21 (-27.59%)
Mutual labels:  arch-linux
    ,
   /-\---------------------------------------
  //_\\   Argon - The Noble Package Manager  \
 /// \\\---------------------------------------
/.-' '-.\

Introduction

Argon is a lightweight GUI package manager for Arch Linux, featuring:

  • package installation/removal and system update
  • configurable update notifier
  • full AUR support

Argon, which strikes a balance between the raw command line and the opulence of full-featured GUI package managers, is available from the Arch User Repository.

Why "Argon"? Because if you "package" Argon in a tube, you can electrify it to get something like Arch Linux blue.

Main Window

From the main window you can install/remove packages, launch the update notifier configuration window, view a list of your system's top-level packages, and update the system.

"Top-level packages" are packages that don't serve as dependencies for any other installed packages. The top-level package list may be thought of as the "chemical formula" for your personal version of Arch Linux. (Top-level packages from the "base" and "base-devel" groups are filtered out, since these comprise the core Arch installation, and are thus not distinctive to your system.)

For the sake of a tidy overview, you may wish to customize the top-level package list. For instance, if you install the infinality-bundle-fonts group, dozens of fonts will show up as top-level packages; you might want to replace this unwieldy list with a single entry (e.g. "infinality-bundle-fonts" or "fonts from the infinality bundle"). Remove entries from the top-level package list by adding them (one per line) to ~/.config/argon/top-remove; likewise, add entries to the top-level package list with ~/.config/argon/top-add.

Main screen Terminal Package List

Notifier Configuration

From the notifier configuration window you can set update check delays and notification text/icons. In some desktop environments, you can also enable the update notifier with the "Enable Autostart" button. This will add the update notifier to your startup applications, causing it to run in the background the next time you log in.

The "Enable Autostart" button works in any desktop environment that recognizes .desktop files in the ~/.config/autostart directory (e.g. GNOME, KDE, Xfce, LXDE). To enable the notifier in other desktop environments, use an external method to add /usr/bin/argon-notifier to your startup applications.

If no popup notifications are appearing, make sure you have a notification server installed.

When setting the notification text, bear in mind that the string "NUM" will be converted to the number of available updates, while "UPD" will be converted to either the word "update" (if exactly 1 update is available) or "updates". Thus, "NUM system UPD available" becomes (for instance) "1 system update available" or "8 system updates available".

Autostart configuration Up-to-date notification Updates available notification

Light Desktop Environments

To provide an alternative to popups, Argon's notifications are written to /etc/argon/message, where they can be easily accessed by user-made scripts. This is handy in lightweight desktop environments, where popups may be unsupported.

The dwm window manager, for instance, can place Argon's output in the status bar with the following ~/.xinitrc code:

while true; do
argon=$(</etc/argon/message)
xsetroot -name "$argon"
sleep 1
done &

For aesthetics, it is recommended to set Argon as a floating application in tiling environments. In dwm, this would entail the following config.h code:

static const Rule rules[] = {
        /* class      instance    title       tags mask     isfloating   monitor */
        { "Argon",     NULL,       NULL,       0,            True,        -1 
},
};

Here's a sample notifier configuration with the "system is up to date" message left blank... Up-to-date on dwm ...and an "updates available" message that appears on the left side of the status text. Updates available on dwm

Powered By...

Argon uses pacman and pacaur (which extends the functionality of pacman to the AUR) for package processing, checkupdates (a script included with pacman) and auracle to check for updates, and libnotify to send notifications.

Commands

Argon's features can be divided into two kinds: system-altering (install, remove, update) and informational (top-level package list, update notifications). The exact commands performed by the system-altering features are:

  • package installation: pacaur -S
  • package removal: pacaur -Rs
  • system update: pacaur -Syu

Note that the second command, in addition to removing the requested package, also removes dependencies of that package not required by any other packages on the system.

Bonus

GNOME 3 Arch Linux "Activities hot corner" icon, for use with the activities configurator extension.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].