Compare commits

..

No commits in common. "a94f10504887168efcbe970df4d06937d62f0198" and "7f2ed096d20d4d57607ac74fa4777e4810305d31" have entirely different histories.

2 changed files with 1 additions and 8 deletions

View File

@ -25,7 +25,7 @@ if [ $? -ne 0 ]; then
fi
echo;
echo "Restoring up partition table...";
sfdisk "/dev/$2" < "/mnt/tabls/$1.tbl";
sfdisk -d "/dev/$2" < "/mnt/tabls/$1.tbl";
rm -rf /tmp/a;
echo "Finished!";
exit 0;

View File

@ -1,7 +1,6 @@
if [ -f ~/.bash_aliases_priv ]; then
. ~/.bash_aliases_priv
fi
alias ssh-host-key='ssh-keyscan localhost | ssh-keygen -lf -'
alias weston-phone="weston --width=1920 --height=1056 -S /run/user/1000/wayland-1"
alias waydroid-start="waydroid session start"
alias waydroid-show="waydroid show-full-ui"
@ -233,9 +232,3 @@ function apt-search() {
function apt-search-installed() {
apt list --installed | grep "$1";
}
function attach-raw-img() {
sudo udisksctl loop-setup -f "$1";
}
function dettach-raw-img() {
sudo udisksctl loop-delete -b "$1";
}