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 | |
| if maestral status | grep -qFi 'not running'; then | |
| err='Maestral not running' | |
| elif ! droot="`maestral config get path`"; then | |
| err='Maestral not found' | |
| elif ! real="`realpath -eLPq "$1"`"; then | |
| err='Path does not exist' | |
| elif [[ ${#real} -le ${#droot} || "${real:0:${#droot}}" != "$droot" ]]; then | |
| err="The path $real is not below the Dropbox root directory $droot" | |
| else |
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
| /* | |
| * See https://kb.mozillazine.org/Browser.tabs.closeButtons | |
| * 0 is new Firefox default, 3 not possible in CSS alone. | |
| */ | |
| @media -moz-pref('browser.tabs.closeButtons', 1) { | |
| #tabbrowser-tabs[closebuttons="activetab"][orient="horizontal"] .tab-close-button:not([selected], [pinned]) { | |
| display: inline-flex !important; | |
| } | |
| } | |
| @media -moz-pref('browser.tabs.closeButtons', 2) { |
NewerOlder