Skip to content

Instantly share code, notes, and snippets.

@qtamaki
Created November 6, 2019 00:32
Show Gist options
  • Save qtamaki/ee874e51ae0201ca850e440a5bc49d6f to your computer and use it in GitHub Desktop.
Save qtamaki/ee874e51ae0201ca850e440a5bc49d6f to your computer and use it in GitHub Desktop.
#!/bin/bash
fileName="/Applications/Vivaldi.app/Contents/Frameworks/Vivaldi Framework.framework/Resources/vivaldi/style/common.css"
if [[ -f $fileName ]];then
echo "update..."
cp "$fileName" "${fileName}.org"
cat <<EOS >> "$fileName"
/* Move tab close button to the right */
.tab .close {
order: 0 !important;
margin-right: 6px;
}
/* Show tab favicon when mouse over */
.favicon {
display: flex !important;
}
EOS
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment