install missing dependencies for aur packages, remove i3
parent
554ae82000
commit
e498c1edfe
|
@ -17,53 +17,55 @@ require="__package_update_index" __package_upgrade_all
|
||||||
|
|
||||||
package_list="
|
package_list="
|
||||||
alacritty
|
alacritty
|
||||||
|
binutils
|
||||||
cadence
|
cadence
|
||||||
chromium
|
chromium
|
||||||
clipmenu
|
clipmenu
|
||||||
cups
|
cups
|
||||||
dbeaver
|
dbeaver
|
||||||
emacs
|
emacs
|
||||||
|
fakeroot
|
||||||
feh
|
feh
|
||||||
filezilla
|
filezilla
|
||||||
firefox
|
firefox
|
||||||
fish
|
fish
|
||||||
flameshot
|
flameshot
|
||||||
galculator
|
galculator
|
||||||
|
gcc
|
||||||
gimp
|
gimp
|
||||||
git
|
git
|
||||||
git-lfs
|
git-lfs
|
||||||
gnupg
|
gnupg
|
||||||
|
gmp
|
||||||
gparted
|
gparted
|
||||||
gradle
|
gradle
|
||||||
|
gtk3
|
||||||
htop
|
htop
|
||||||
i3-wm
|
|
||||||
i3blocks
|
|
||||||
i3lock
|
|
||||||
i3status
|
|
||||||
jack2
|
jack2
|
||||||
jack2-dbus
|
jack2-dbus
|
||||||
jdk-openjdk
|
jdk-openjdk
|
||||||
jre-openjdk
|
jre-openjdk
|
||||||
libreoffice
|
libreoffice
|
||||||
|
libxss
|
||||||
mosh
|
mosh
|
||||||
mtpfs
|
mtpfs
|
||||||
networkmanager
|
nss
|
||||||
nomacs
|
|
||||||
nss-mdns
|
nss-mdns
|
||||||
ntfs-3g
|
ntfs-3g
|
||||||
openvpn
|
openvpn
|
||||||
pass
|
pass
|
||||||
pavucontrol
|
pavucontrol
|
||||||
pinentry
|
|
||||||
pulseaudio
|
pulseaudio
|
||||||
pulseaudio-jack
|
pulseaudio-jack
|
||||||
|
plasma-browser-integration
|
||||||
ranger
|
ranger
|
||||||
realtime-privileges
|
realtime-privileges
|
||||||
signal-desktop
|
signal-desktop
|
||||||
thunderbird
|
strip-nondeterminism
|
||||||
udevil
|
udevil
|
||||||
unarchiver
|
unarchiver
|
||||||
vlc
|
vlc
|
||||||
|
zerotier-one
|
||||||
"
|
"
|
||||||
|
|
||||||
for package in $package_list
|
for package in $package_list
|
||||||
|
@ -71,7 +73,7 @@ do require="__package_upgrade_all" __package $package --state=present
|
||||||
done
|
done
|
||||||
|
|
||||||
# setup dotfiles
|
# setup dotfiles
|
||||||
__dot_file .config/i3/config --user "$user" --source "$__type/dotfiles/i3/config"
|
#__dot_file .config/i3/config --user "$user" --source "$__type/dotfiles/i3/config"
|
||||||
__dot_file .config/ncspot/config.toml --user "$user" --source "$__type/dotfiles/ncspot/config.toml"
|
__dot_file .config/ncspot/config.toml --user "$user" --source "$__type/dotfiles/ncspot/config.toml"
|
||||||
|
|
||||||
# those have to be done in order, install spacemacs
|
# those have to be done in order, install spacemacs
|
||||||
|
@ -82,18 +84,21 @@ unset CDIST_ORDER_DEPENDENCY
|
||||||
|
|
||||||
# install aur packages
|
# install aur packages
|
||||||
aurdir="$home/Projects/AUR"
|
aurdir="$home/Projects/AUR"
|
||||||
|
|
||||||
|
# the installation of the following libraries is failing:
|
||||||
|
# aura-bin
|
||||||
|
# postman-bin
|
||||||
|
# seafile
|
||||||
aur_packages="
|
aur_packages="
|
||||||
aura-bin
|
|
||||||
android-studio
|
android-studio
|
||||||
ncspot
|
ncspot
|
||||||
postman-bin
|
|
||||||
rescrobbled-git
|
rescrobbled-git
|
||||||
scrcpy
|
scrcpy
|
||||||
seafile-client
|
|
||||||
slack-desktop
|
|
||||||
"
|
"
|
||||||
|
|
||||||
|
export CDIST_ORDER_DEPENDENCY=on
|
||||||
for package in $aur_packages
|
for package in $aur_packages
|
||||||
do
|
do
|
||||||
__aur $package --user $user --directory $aurdir
|
__aur $package --user $user --directory $aurdir
|
||||||
done
|
done
|
||||||
|
unset CDIST_ORDER_DEPENDENCY
|
||||||
|
|
|
@ -16,7 +16,7 @@ sudo python setup.py install
|
||||||
2. Setup SSH root access
|
2. Setup SSH root access
|
||||||
Add the following line into your `/etc/ssh/sshd_config`
|
Add the following line into your `/etc/ssh/sshd_config`
|
||||||
```
|
```
|
||||||
PermitRootLogin without-password
|
PermitRootLogin yes
|
||||||
```
|
```
|
||||||
|
|
||||||
Then copy your SSH key to the root user at localhost.
|
Then copy your SSH key to the root user at localhost.
|
||||||
|
@ -24,6 +24,11 @@ Then copy your SSH key to the root user at localhost.
|
||||||
ssh-copy-id root@localhost
|
ssh-copy-id root@localhost
|
||||||
```
|
```
|
||||||
|
|
||||||
|
And change the root login back to
|
||||||
|
```
|
||||||
|
PermitRootLogin without-password
|
||||||
|
```
|
||||||
|
|
||||||
Finally, start the ssh daemon if it is not running
|
Finally, start the ssh daemon if it is not running
|
||||||
```
|
```
|
||||||
sudo systemctl start sshd
|
sudo systemctl start sshd
|
||||||
|
|
Loading…
Reference in New Issue