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
| .tab-background { | |
| border-radius: var(--tab-border-radius) var(--tab-border-radius) 0px 0px !important; | |
| margin-bottom: 0px !important; | |
| } | |
| #tabbrowser-tabs:not([movingtab]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab > .tab-stack > .tab-background[multiselected="true"]:-moz-lwtheme, #tabbrowser-tabs:not([movingtab]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab > .tab-stack > .tab-background[selected="true"]:-moz-lwtheme { | |
| background-image: linear-gradient(var(--toolbar-bgcolor, transparent), var(--toolbar-bgcolor, transparent)), linear-gradient(var(--toolbar-bgcolor), var(--toolbar-bgcolor)), var(--lwt-header-image, none) !important; | |
| } | |
| #TabsToolbar[brighttext] #tabbrowser-tabs:not([noshadowfortests]) .tabbrowser-tab:is([visuallyselected="true"], [multiselected]) > .tab-stack > .tab-background:-moz-lwtheme { |
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
| #KeyHistory 0 | |
| SetCapsLockState, AlwaysOff | |
| #If GetKeyState("CapsLock","P") | |
| o::Send {ö} | |
| u::Send {ü} | |
| +o::Send {Ö} | |
| +u::Send {Ü} | |
| <^>!o::Send {ő} | |
| <^>!u::Send {ű} | |
| +<^>!o::Send {Ő} |
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
| #!/usr/bin/env python3 | |
| """ | |
| b5i2iso.py - convert BlindWrite B5I/BWI images to ISO 9660 (or BIN/CUE). | |
| Original: b5i2iso.c v0.2 by Salvatore Santagati (GPL v2 or later). | |
| Source: https://launchpad.net/ubuntu/trusty/+package/b5i2iso | |
| Ported to Python 3 by Claude Fable 5.1 | |
| """ | |
| import argparse |