This commit is contained in:
Digital Studium 2024-03-02 14:40:47 +00:00
parent 725eda3bbd
commit cebe457134
1 changed files with 4 additions and 3 deletions

View File

@ -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