Replace xcompmgr with compton

This commit is contained in:
maride 2018-01-09 17:16:51 +01:00
parent 5b2fe128ab
commit d9879d3d55

View File

@ -1,7 +1,7 @@
#!/bin/sh
echo "~> Installing i3"
pacstrap /mnt i3 feh xcompmgr dmenu acpi
pacstrap /mnt i3 feh compton dmenu acpi
user=$(ls /mnt/home)
if [ "$user" == "" ]; then
@ -11,7 +11,7 @@ else
fi
echo "~> Creating .xinitrc"
echo "xcompmgr -c &" > $path/.xinitrc
echo "compton -CGb" > $path/.xinitrc
echo "feh --bg-fill /etc/wallpapers/\$(ls /etc/wallpapers/ | shuf -n 1)" >> $path/.xinitrc
echo "exec i3" >> $path/.xinitrc