From cebe4571349e997d91c6dea48fdd129d9b14d23e Mon Sep 17 00:00:00 2001 From: Digital Studium Date: Sat, 2 Mar 2024 14:40:47 +0000 Subject: [PATCH] Fix it --- install_ubuntu.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/install_ubuntu.sh b/install_ubuntu.sh index 5da3d10..4926aa9 100755 --- a/install_ubuntu.sh +++ b/install_ubuntu.sh @@ -31,7 +31,8 @@ xcompmgr `# for st opacity` \ xwallpaper `# for background` \ ubuntu-wallpapers-jammy `# backgrounds` \ xfe `# classic file manager` \ -surf `# suckless browser` \ +surf `# suckless lightweight browser` \ +micro `# lightweight editor` \ telegram-desktop \ slack \ firefox \ @@ -82,10 +83,10 @@ if [ ! -d ~/.dwm ] then mkdir $HOME/.dwm fi -echo "xhost +local:" >> $HOME/.dwm/autostart.sh # give permissions to display +echo "xhost +local:" > $HOME/.dwm/autostart.sh # give permissions to display echo "xcompmgr &" >> $HOME/.dwm/autostart.sh # for st opacity echo "xwallpaper --stretch /usr/share/backgrounds/Blue_flower_by_Elena_Stravoravdi.jpg" >> $HOME/.dwm/autostart.sh # background -echo "firefox &" > $HOME/.dwm/autostart.sh +echo "firefox &" >> $HOME/.dwm/autostart.sh echo "telegram-desktop &" >> $HOME/.dwm/autostart.sh echo "st &" >> $HOME/.dwm/autostart.sh chmod +x $HOME/.dwm/autostart.sh