mirror of
				https://github.com/Stunkymonkey/dotfiles.git
				synced 2025-10-30 18:02:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			882 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			882 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| #
 | |
| # /etc/xdg/pacaur/config
 | |
| #
 | |
| 
 | |
| # The following options are commented out with their default values listed.
 | |
| # If you wish to use different values, uncomment and update the values.
 | |
| # The Color and VerbosePkgLists options can be enabled in /etc/pacman.conf.
 | |
| # The clone directory can be changed through the $AURDEST environment variable.
 | |
| # The makepkg environment variables are also fully honored.
 | |
| editor="${VISUAL:-${EDITOR:-vim}}"     # build files editor
 | |
| displaybuildfiles=none                # display build files (none|diff|full)
 | |
| #fallback=true                         # pacman fallback to the AUR
 | |
| #silent=false                          # silence output
 | |
| #sortby=popularity                     # sort method (name|votes|popularity)
 | |
| #sortorder=descending                  # sort order (ascending|descending)
 | |
| #sudoloop=true                         # prevent sudo timeout
 | 
