diff options
Diffstat (limited to 'share/provision/desktop-basic')
-rwxr-xr-x | share/provision/desktop-basic | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/share/provision/desktop-basic b/share/provision/desktop-basic index 40fa720..8450283 100755 --- a/share/provision/desktop-basic +++ b/share/provision/desktop-basic @@ -45,22 +45,8 @@ apps/metadot/metadot load-bundle desktop-basic apps/metadot/metadot deps-bundle desktop-basic # Additional packages -echo "Installing additional packages..." -$APT_INSTALL xpra lightdm firefox-esr chromium firejail - -# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861744 -$APT_INSTALL torbrowser-launcher - -# Luakit using stowpkg -if [ ! -x "$HOME/apps/stowpkg/tree/`uname -m`/bin/luakit" ]; then - $APT_INSTALL make stow - apps/stowpkg/stowpkg install luakit -else - apps/stowpkg/stowpkg upgrade luakit -fi - -# Ensure we have an updated qutebrowser -apps/qutebrowser/qutebrowser update +echo "Installing additional desktop-basic packages..." +$APT_INSTALL xpra lightdm firejail # System-wide configuration sudo cp $DIRNAME/files/desktop-basic/etc/lightdm/lightdm.conf /etc/lightdm/lightdm.conf @@ -87,16 +73,3 @@ mkdir -p $HOME/.custom if [ ! -e "$HOME/.custom/xsession" ]; then cp $DIRNAME/files/desktop-basic/home/user/.custom/xsession $HOME/.custom/xsession fi - -# Mozilla configuration -# Create this config using "cd $HOME && /bin/tar jcvf mozilla.tar.bz2 .mozilla" -if [ ! -d "$HOME/.mozilla" ]; then - ( cd $HOME && tar xvf $DIRNAME/files/desktop-basic/mozilla/mozilla.tar.bz2 ) -fi - -# Chromium configuration -# Create this config using "cd $HOME && /bin/tar jcvf chromium.tar.bz2 .config/chromium" -if [ ! -d "$HOME/.config/chromium" ]; then - ( cd $HOME && tar xvf $DIRNAME/files/desktop-basic/chromium/chromium.tar.bz2 ) - ( cd $HOME && tar xvf $DIRNAME/files/desktop-basic/chromium/chromium-profiles.tar.bz2 ) -fi |