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
| /* This style will merge the tab- and urlbar into one bar and hide colors, indicators, | |
| * icons, seperators, ... . The goal is to provide a minimal and non distractive UX, | |
| * while still being fully useable. | |
| * | |
| * Currently tested on MacOS Sierra with Firefox 65 (dark theme) (desity compact) | |
| * | |
| * Inspiration and some parts taken from: | |
| * https://github.com/Timvde/UserChrome-Tweaks/tree/master/navbar | |
| * https://github.com/TheBreno123p/dotfiles/blob/master/Firefox/userChrome.css | |
| * https://www.reddit.com/r/FirefoxCSS/comments/8cnmwt/new_ui_to_maximise_screen_real_estate_let_me_know/ |
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
| (ns mandelclj.core | |
| (:gen-class) | |
| (:import | |
| (sun.java2d SunGraphics2D) | |
| (javax.swing JFrame JLabel) | |
| (java.awt.image BufferedImage) | |
| (java.awt Dimension Color) | |
| (java.awt.event ActionEvent | |
| ActionListener | |
| MouseAdapter |