You are not logged in.

#1 2010-08-27 16:36:05

Anonymo
Member
Registered: 2005-04-07
Posts: 427
Website

Favorite Packages

Is there a way to subscribe to certain packages or save them as useful to the AUR account?  I use a bunch of packages but sometimes I want to have a list of the packages I use incase I have to reinstall but can't remember the names off my head.

Offline

#2 2010-08-27 16:52:43

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: Favorite Packages

How about bookmarks in your browser?

Offline

#3 2010-08-27 16:53:54

tomd123
Developer
Registered: 2008-08-12
Posts: 565

Re: Favorite Packages

if you just want a list, use vim smile

Offline

#4 2010-08-27 16:55:00

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: Favorite Packages

tomd123 wrote:

if you just want a list, use vim smile

'pacman -Qm' should be a good start.

Offline

#5 2010-08-27 17:48:12

falconindy
Developer
From: New York, USA
Registered: 2009-10-22
Posts: 4,111
Website

Re: Favorite Packages

This will generate a list of packages from the AUR.

#!/bin/bash
for pkg in $(pacman -Qqm); do
  curl -f http://aur.archlinux.org/packages/$pkg &>/dev/null && echo $pkg
done

Offline

Board footer

Powered by FluxBB