82 lines
1.7 KiB
Bash
Executable File
82 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "sync-school" ]
|
|
then
|
|
~/work/config/rclone/sync-school.sh
|
|
|
|
|
|
elif [ "$1" == "mnt-wechner" ]
|
|
then
|
|
rclone mount --vfs-cache-mode full -vvvv onedrive-school:projekt-autobatterie ~/work/htl/projekt/wechner/mnt
|
|
|
|
|
|
elif [ "$1" == "wstunnel" ]
|
|
then
|
|
wstunnel -L 55555:127.0.0.1:49388 ws://sebastian.dns.army:49389
|
|
|
|
|
|
|
|
elif [ "$1" == "speed-test-nixos-iso" ]
|
|
then
|
|
wget -O /tmp/speed-test.iso "https://dl.t2sde.org/binary/2022/t2-22.6-x86-64-minimal-desktop-gcc-glibc.iso"
|
|
rm /tmp/speed-test.iso
|
|
|
|
|
|
elif [ "$1" == "p" ]
|
|
then
|
|
ping orf.at
|
|
|
|
|
|
elif [ "$1" == "mnt-files-local" ]
|
|
then
|
|
sudo mount -t cifs //192.168.1.2/files /home/me/files -o x-gvfs-hide,rw,defaults,nofail,credentials=/home/me/.mysecrets/rpi-share-files,uid=1000,iocharset=utf8,gid=1000
|
|
|
|
|
|
|
|
|
|
elif [ "$1" == "mnt-files-remote" ]
|
|
then
|
|
sshfs -o default_permissions,idmap=user,uid=1000,gid=1000 files:/home/files/storage/files /home/me/files
|
|
|
|
#fusermount -u /home/sebastian/files
|
|
#fusermount -u /home/sebastian/lan
|
|
|
|
|
|
elif [ "$1" == "mnt-lan-remote" ]
|
|
then
|
|
sshfs -o default_permissions,idmap=user,uid=1000,gid=1000 files:/home/files/storage/lan /home/me/lan
|
|
|
|
|
|
elif [ "$1" == "mnt-lan-local" ]
|
|
then
|
|
sudo mount -t cifs //192.168.1.2/lan /home/me/lan -o x-gvfs-hide,username=guest,defaults,nofail,guest,uid=1000,gid=1000,iocharset=utf8
|
|
|
|
|
|
elif [ "$1" == "bat" ]
|
|
then
|
|
now=$(cat /sys/class/power_supply/BAT0/charge_now)
|
|
full=$(cat /sys/class/power_supply/BAT0/charge_full)
|
|
stat=$(python -c "print( round($now / float($full) *100) )")
|
|
echo BAT0 at: ${stat}%
|
|
|
|
|
|
|
|
elif [ "$1" == "bstat" ]
|
|
then
|
|
cat /sys/class/power_supply/BAT0/status
|
|
|
|
|
|
elif [ "$1" == "hibernate" ]
|
|
then
|
|
sudo systemctl hibernate
|
|
|
|
|
|
elif [ "$1" == "suspend" ]
|
|
then
|
|
sudo systemctl suspend
|
|
|
|
|
|
fi
|
|
|
|
|