added bin and wrote backup script, restore isnt finished

This commit is contained in:
2022-01-14 14:19:09 -05:00
parent e15a76ec40
commit d6c388bfb5
15 changed files with 378 additions and 0 deletions

7
bin/chrome Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
logfile="/dev/shm/chrome_log_$$"
google-chrome-stable --enable-features=UseOzonePlatform --ozone-platform=wayland "$@" &> "$logfile"
if [[ $? != 0 ]]; then
printf 'Check logfile: %s\n' "$logfile"
exit $?
fi