You are not logged in.
The command
pacman -Rn <pkg>doesn't remove
~/.<program-name>folders. is there any form delete the unneeded .config folders?
Last edited by felipense (2013-04-12 15:57:18)
Offline
$ rm -r <unneeded files>Offline
pacman never touches your $HOME, that's your responsibility.
Read man pacman for full details about the -n/--nosave flag.
Offline
There are packages in the AUR that can assist you. Search for things like "dotfiles". In my opinion, it's easier to just remove the ones you know you don't need.
This command will help you by telling you which directories take up the most space:
du -s .??* | sort -nOffline