See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| @-moz-document url("about:newtab"), url("about:home"), url(about:privatebrowsing) { | |
| /* Sets background image and autoscale image to browser window. */ | |
| body{ | |
| background-image: url("") !important; | |
| background-size: cover !important; | |
| background-repeat: no-repeat !important; | |
| background-attachment: fixed !important; | |
| background-position-x: center !important; | |
| background-position-y: bottom !important; | |
| } |
| # placed in ~/.local/share/nautilus-python/extensions/open-kitty.py | |
| # you will need the package nautilus-python on fedora, or python-nautilus on ubuntu... | |
| # french version | |
| # translate and enjoy | |
| import os | |
| try: | |
| from urllib import unquote | |
| except ImportError: | |
| from urllib.parse import unquote |