12 lines
440 B
Bash
Executable File
12 lines
440 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Make sure Chromium profile is marked clean, even if it crashed
|
|
# https://stedolan.github.io/jq/manual/
|
|
cat .config/chromium/Default/Preferences \
|
|
| jq '.profile.exit_type = "SessionEnded" | .profile.exited_cleanly = true' \
|
|
> .config/chromium/Default/Preferences-clean
|
|
mv .config/chromium/Default/Preferences{-clean,}
|
|
|
|
# http://peter.sh/experiments/chromium-command-line-switches/
|
|
chromium-browser --start-fullscreen
|