Created
November 6, 2019 00:32
-
-
Save qtamaki/ee874e51ae0201ca850e440a5bc49d6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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