added i3 config + grub + xterm
This commit is contained in:
parent
1c196743f0
commit
6157106a86
5 changed files with 1057 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
# Arch Linux Calamares Installer or ALCI
|
||||
|
||||
Start building your own carli version with
|
||||
Start building your own ALCI version with
|
||||
|
||||
sudo ./build.sh -v
|
||||
|
||||
|
|
9
airootfs/etc/polkit-1/rules.d/49-nopasswd_global.rules
Normal file
9
airootfs/etc/polkit-1/rules.d/49-nopasswd_global.rules
Normal file
|
@ -0,0 +1,9 @@
|
|||
/* Allow members of the wheel group to execute any actions
|
||||
* without password authentication, similar to "sudo NOPASSWD:"
|
||||
*/
|
||||
polkit.addRule(function(action, subject) {
|
||||
if (subject.isInGroup("wheel")) {
|
||||
return polkit.Result.YES;
|
||||
}
|
||||
});
|
||||
|
1041
airootfs/etc/skel/.config/i3/config
Normal file
1041
airootfs/etc/skel/.config/i3/config
Normal file
File diff suppressed because it is too large
Load diff
|
@ -32,8 +32,8 @@ systemctl enable sddm.service
|
|||
pacman-key --init
|
||||
pacman-key --populate archlinux
|
||||
|
||||
groupscarli="adm,audio,disk,floppy,log,network,optical,rfkill,storage,video,wheel,sys"
|
||||
useradd -m -g users -G $groupscarli -s /bin/bash liveuser
|
||||
groupsalci="adm,audio,disk,floppy,log,network,optical,rfkill,storage,video,wheel,sys"
|
||||
useradd -m -g users -G $groupsalci -s /bin/bash liveuser
|
||||
passwd -d liveuser
|
||||
|
||||
#set permissions
|
||||
|
|
|
@ -112,4 +112,7 @@ i3-gaps
|
|||
|
||||
#Calamares
|
||||
calamares
|
||||
alci-calamares-config
|
||||
alci-calamares-config
|
||||
grub
|
||||
|
||||
xterm
|
||||
|
|
Loading…
Reference in a new issue