mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-08 07:00:28 +01:00
12 lines
215 B
Bash
12 lines
215 B
Bash
#!/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
|