Update 2023-04-30 19:45 OpenBSD/amd64-mini
This commit is contained in:
parent
83b6d8b11e
commit
0f14587cf0
24
.bin/checkmount
Executable file
24
.bin/checkmount
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
trap cleanup 1 2 3 6 9 11 13 15
|
||||
|
||||
cleanup() {
|
||||
doas umount /mnt
|
||||
mount | grep mnt
|
||||
}
|
||||
|
||||
usage() {
|
||||
echo "usage: $(basename "$0") sd1"
|
||||
dmesg |grep ^sd1 | tail -n2
|
||||
dmesg |grep ^sd2 | tail -n2
|
||||
dmesg |grep ^sd3 | tail -n2
|
||||
dmesg |grep ^sd4 | tail -n2
|
||||
exit 0
|
||||
|
||||
}
|
||||
|
||||
[ -z "$1" ] && usage
|
||||
|
||||
doas mount.exfat /dev/$1i /mnt/
|
||||
nnn /mnt/
|
||||
cleanup
|
4
init.sh
4
init.sh
@ -32,7 +32,7 @@ doas mkdir -p /tank/{buffer,pub,priv,scanner}
|
||||
# INSTALL CORE PACKAGES
|
||||
doas pkg_add rsync-- vim--no_x11 git-- notion-- spectrwm-- hsetroot-- autocutsel-- dunst-- xclip-- \
|
||||
wget-- lftp-- autorandr-- xautolock-- gnupg-- curl-- w3m-- universal-ctags-- \
|
||||
mutt--gpgme password-store bwm-ng-- sysclean-- fzf-- ugrep-- sqlports-- mpg123-- \
|
||||
mutt--gpgme password-store bwm-ng-- sysclean-- fzf-- ugrep-- mpg123-- pkglocatedb-- \
|
||||
pinentry-dmenu-- nnn--nerd ccache--
|
||||
|
||||
doas mkdir -p /opt/ccache/bin
|
||||
@ -87,7 +87,7 @@ fi
|
||||
|
||||
# INSTALL BIG PACKAGES
|
||||
doas pkg_add chromium mpv firefox libreoffice pdfarranger ocrmypdf \
|
||||
tesseract-deu mupdf--js msmtp--
|
||||
tesseract-deu mupdf--js msmtp-- dbus--
|
||||
|
||||
echo -n "Is this a secure machine [y/N]?: "
|
||||
read
|
||||
|
Loading…
Reference in New Issue
Block a user