Skip to content

Commit bfbd821

Browse files
Save changes at: 1741646048
1 parent fc074a7 commit bfbd821

File tree

2 files changed

+36
-44
lines changed

2 files changed

+36
-44
lines changed

base.sh

+8-4
Original file line numberDiff line numberDiff line change
@@ -296,11 +296,13 @@ function packages() {
296296
bind-tools
297297
btop
298298
ca-certificates
299+
cups
299300
curl
300301
dosfstools
301302
fzf
302303
git
303304
go
305+
hplip
304306
htop
305307
less
306308
libusb
@@ -345,10 +347,12 @@ function drivers() {
345347

346348
function services() {
347349
echo "--> Enable services."
348-
arch-chroot /mnt systemctl enable sshd
349-
arch-chroot /mnt systemctl start sshd
350-
arch-chroot /mnt systemctl enable NetworkManager
351-
arch-chroot /mnt systemctl start NetworkManager
350+
arch-chroot /mnt systemctl enable cups.service &> /dev/null
351+
arch-chroot /mnt systemctl enable NetworkManager &> /dev/null
352+
arch-chroot /mnt systemctl enable sshd &> /dev/null
353+
arch-chroot /mnt systemctl start cups.service &> /dev/null
354+
arch-chroot /mnt systemctl start NetworkManager &> /dev/null
355+
arch-chroot /mnt systemctl start sshd &> /dev/null
352356
}
353357

354358
function finish() {

kde.sh

+28-40
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ function main() {
55
update
66
desktop
77
packages
8-
printing
98
finish
109
}
1110

@@ -26,48 +25,37 @@ function desktop() {
2625
function packages() {
2726
echo "--> Install packages."
2827
sudo pacman -S --noconfirm --needed \
29-
ark `#Archiving Tool` \
30-
digikam `#Digital photo management` \
31-
dolphin `#File manager` \
32-
elisa `#Music player` \
33-
firefox `#Web browser` \
34-
gwenview `#Image viewer` \
35-
hunspell-en_us `#Spell dictionary EN` \
36-
hunspell-es_es `#Spell dictionary ES` \
37-
kamoso `#Camera tool` \
38-
kate `#Code editor` \
39-
kbackup `#Backup tool` \
40-
kcalc `#Calculator` \
41-
kcharselect `#select special characters` \
42-
kcolorchooser `#color palette tool` \
43-
kfind `#Find files` \
44-
kid3 `#Audio tag editor` \
45-
kmix `#Sound channel mixer` \
46-
konsole `#Terminal client` \
47-
ksystemlog `#Show all logs` \
48-
ktorrent `#Torrent client` \
49-
okteta `#Hex editor` \
50-
okular `#Document viewer` \
51-
partitionmanager `#Partition Manager` \
52-
powerdevil `#Power consumption settings` \
53-
rssguard `#RSS Client` \
54-
spectacle `#Screenshots` \
55-
thunderbird `#Email client` \
28+
ark `#Archiving Tool` \
29+
digikam `#Digital photo management` \
30+
dolphin `#File manager` \
31+
elisa `#Music player` \
32+
firefox `#Web browser` \
33+
gwenview `#Image viewer` \
34+
hunspell-en_us `#Spell dictionary EN` \
35+
hunspell-es_es `#Spell dictionary ES` \
36+
kamoso `#Camera tool` \
37+
kate `#Code editor` \
38+
kbackup `#Backup tool` \
39+
kcalc `#Calculator` \
40+
kcharselect `#select special characters` \
41+
kcolorchooser `#color palette tool` \
42+
kfind `#Find files` \
43+
kid3 `#Audio tag editor` \
44+
kmix `#Sound channel mixer` \
45+
konsole `#Terminal client` \
46+
ksystemlog `#Show all logs` \
47+
ktorrent `#Torrent client` \
48+
okteta `#Hex editor` \
49+
okular `#Document viewer` \
50+
partitionmanager `#Partition Manager` \
51+
powerdevil `#Power consumption settings` \
52+
rssguard `#RSS Client` \
53+
spectacle `#Screenshots` \
54+
system-config-printer `#Print settings` \
55+
thunderbird `#Email client` \
5656
&> /dev/null
5757
}
5858

59-
function printing() {
60-
echo "--> Install printing system."
61-
sudo pacman -S --noconfirm --needed \
62-
cups `#Printing system` \
63-
system-config-printer `#Print settings` \
64-
hplip `#hp linux imaging and printing` \
65-
&> /dev/null
66-
67-
sudo systemctl start cups.service &> /dev/null
68-
sudo systemctl enable cups.service &> /dev/null
69-
}
70-
7159
function finish() {
7260
echo "--> Optional, please type: reboot"
7361
echo " To use KDE only if out of desktop environment."

0 commit comments

Comments
 (0)