Fix duplicates optional
This commit is contained in:
parent
011bec4eae
commit
eff7cb4674
|
@ -1,7 +1,10 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# ubuntu hangs if network interface is not optional
|
# ubuntu hangs if network interface is not optional
|
||||||
sudo sed -i '/dhcp4/a\ optional: yes' /etc/netplan/00-installer-config-wifi.yaml
|
if ! sudo grep -r optional /etc/netplan
|
||||||
sudo sed -i '/dhcp4/a\ optional: yes' /etc/netplan/00-installer-config.yaml
|
then
|
||||||
|
sudo sed -i '/dhcp4/a\ optional: yes' /etc/netplan/00-installer-config-wifi.yaml
|
||||||
|
sudo sed -i '/dhcp4/a\ optional: yes' /etc/netplan/00-installer-config.yaml
|
||||||
|
fi
|
||||||
# Add firefox repo
|
# Add firefox repo
|
||||||
echo "deb [trusted=yes] https://packages.mozilla.org/apt mozilla main" | sudo tee -a /etc/apt/sources.list.d/mozilla.list > /dev/null
|
echo "deb [trusted=yes] https://packages.mozilla.org/apt mozilla main" | sudo tee -a /etc/apt/sources.list.d/mozilla.list > /dev/null
|
||||||
# By default ubuntu installs firefox from snap, so I want to disable it
|
# By default ubuntu installs firefox from snap, so I want to disable it
|
||||||
|
@ -25,10 +28,12 @@ suckless-tools `# for dmenu` \
|
||||||
ncdu `# for disk usage analysys` \
|
ncdu `# for disk usage analysys` \
|
||||||
brightnessctl `# for keyboard backlight` \
|
brightnessctl `# for keyboard backlight` \
|
||||||
xcompmgr `# for st opacity` \
|
xcompmgr `# for st opacity` \
|
||||||
telegram-desktop \
|
xwallpaper `# for background` \
|
||||||
slack \
|
ubuntu-wallpapers-jammy `# backgrounds` \
|
||||||
xfe `# classic file manager` \
|
xfe `# classic file manager` \
|
||||||
surf `# suckless browser` \
|
surf `# suckless browser` \
|
||||||
|
telegram-desktop \
|
||||||
|
slack \
|
||||||
firefox \
|
firefox \
|
||||||
python3
|
python3
|
||||||
|
|
||||||
|
@ -81,5 +86,6 @@ echo "firefox &" > $HOME/.dwm/autostart.sh
|
||||||
echo "xcompmgr &" >> $HOME/.dwm/autostart.sh
|
echo "xcompmgr &" >> $HOME/.dwm/autostart.sh
|
||||||
echo "telegram-desktop &" >> $HOME/.dwm/autostart.sh
|
echo "telegram-desktop &" >> $HOME/.dwm/autostart.sh
|
||||||
echo "st &" >> $HOME/.dwm/autostart.sh
|
echo "st &" >> $HOME/.dwm/autostart.sh
|
||||||
echo "DISPLAY=:0 xhost +local:" >> $HOME/.dwm/autostart.sh # give permissions to display
|
echo "xhost +local:" >> $HOME/.dwm/autostart.sh # give permissions to display
|
||||||
|
echo "xwallpaper --stretch /usr/share/backgrounds/Blue_flower_by_Elena_Stravoravdi.jpg" >> $HOME/.dwm/autostart.sh # give permissions to display
|
||||||
chmod +x $HOME/.dwm/autostart.sh
|
chmod +x $HOME/.dwm/autostart.sh
|
||||||
|
|
Loading…
Reference in New Issue