mirror of
https://github.com/rwinkhart/cachyos-postinstall-helper.git
synced 2026-08-27 20:36:32 -04:00
Install zsh and extensions; move custom .zshrc installation to applications
This commit is contained in:
+2
-2
@@ -15,8 +15,8 @@ func manageService(action, service string) {
|
||||
chrootCommandRun([]string{"systemctl", action, service})
|
||||
}
|
||||
|
||||
func managePackage(action, targetPackage string) {
|
||||
chrootCommandRun([]string{"pacman", action, targetPackage, "--noconfirm"})
|
||||
func managePackages(action string, targetPackages []string) {
|
||||
chrootCommandRun(append([]string{"pacman", action, "--noconfirm"}, targetPackages...))
|
||||
}
|
||||
|
||||
func writeFile(path, data, owner string, perms os.FileMode) {
|
||||
|
||||
Reference in New Issue
Block a user