[init checkin] user chrome to disable wobbling icon on DRM enabled sites
This commit is contained in:
14
link
Executable file
14
link
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
here="$(pwd)"
|
||||
if [[ ! "$here" =~ custom_firefox$ ]]; then
|
||||
printf 'I dunno where I am\n' >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
find "${HOME}/.mozilla/firefox" -maxdepth 1 -type d -name '*.default' \
|
||||
| while read dir; do
|
||||
printf 'ln -fs "%s/userChrome.css" "%s"\n' "$here" "$dir"
|
||||
ln -fs "${here}/userChrome.css" "$dir"
|
||||
done
|
Reference in New Issue
Block a user