mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-12 01:40:58 +01:00
12 lines
215 B
Plaintext
12 lines
215 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Enable colors in pacman by uncommenting the Color line.
|
||
|
#
|
||
|
# https://wiki.archlinux.org/index.php/Color_output_in_console#pacman
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
PACMAN="/mnt/etc/pacman.conf"
|
||
|
|
||
|
sed -i '/Color/s/^#//g' $PACMAN
|