17 lines
654 B
Bash
17 lines
654 B
Bash
#!/bin/bash
|
|
#Hide mail button in application menu
|
|
sed -i -e 's/OnlyShowIn/NotShowIn/g' /usr/share/applications/xfce4-mail-reader.desktop
|
|
|
|
#Hide 'Thunar bulk rename' button in application menu
|
|
echo "NotShowIn=XFCE;" >> /usr/share/applications/thunar-bulk-rename.desktop
|
|
|
|
#Set default webrowser to 'Gooogle Chrome'
|
|
update-alternatives --set x-www-browser /usr/bin/google-chrome-stable
|
|
|
|
#Set default terminal to 'LxTerminal'
|
|
update-alternatives --set x-terminal-emulator /usr/bin/lxterminal
|
|
|
|
#Setup default home with 'XFCE' configs
|
|
mv -f /opt/Setup/Configs/Skel/* /opt/Setup/Configs/Skel/.[!.]* /etc/skel/
|
|
mkdir /etc/skel/.ssh
|
|
rm -rf /opt/Setup/Configs/Skel |