Adhere to the naming convention

This commit is contained in:
Michele Cereda
2022-04-27 18:22:52 +02:00
parent 3f12e20b1c
commit 5ebc8d15be
22 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env sh
pacman --noconfirm \
--sync --needed --noprogressbar --quiet --refresh \
blender

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env sh
sudo pacman --noconfirm \
--sync --needed --noprogressbar --quiet --refresh \
firefox

View File

@@ -0,0 +1,11 @@
#!/bin/sh
sudo pacman --noconfirm \
--sync --needed --noprogressbar --quiet --refresh \
dolphin-plugins konsole plasma-desktop sddm \
noto-fonts noto-fonts-cjk phonon-qt5-vlc \
breeze-gtk discover drkonqi kdegraphics-thumbnailers kimageformats kinfocenter kscreen kwalletmanager packagekit-qt5 plasma-nm powerdevil pulseaudio xdg-desktop-portal-kde
sudo systemctl set-default graphical.target
sudo systemctl enable --now NetworkManager.service
sudo systemctl enable --now sddm.service
sudo pacman --noconfirm --sync --clean --clean

View File

@@ -0,0 +1,3 @@
#!/usr/bin/env sh
sudo pacman -S vagrant

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env sh
pacman --noconfirm \
--remove --nosave --recursive --unneeded \
virtualbox-guest-utils-nox
pacman --noconfirm \
--sync --needed --noprogressbar --quiet --refresh \
virtualbox-guest-utils

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
packages="virtualbox virtualbox-host-modules-arch"
sudo pacman -S ${packages}
sudo gpasswd -a $USER vboxusers
#sudo reboot
vbox_version="$(vboxmanage --version)"
version=${vbox_version%r*}
file="Oracle_VM_VirtualBox_Extension_Pack-${version}.vbox-extpack"
curl -o /tmp/${file} -s https://download.virtualbox.org/virtualbox/${version}/${file}
sudo VBoxManage extpack install /tmp/${file} --accept-license=56be48f923303c8cababb0bb4c478284b688ed23f16d775d729b89a2e8e5f9eb --replace

View File

@@ -0,0 +1,8 @@
#!/bin/sh
sudo pacman --noconfirm \
--sync --needed --refresh --noprogressbar \
xfce4 xfce4-goodies lightdm-gtk-greeter
sudo systemctl set-default graphical.target
sudo systemctl enable --now lightdm
sudo pacman --noconfirm --sync --clean --clean