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
-- None of this animation shit: | |
hs.window.animationDuration = 0 | |
-- Get list of screens and refresh that list whenever screens are plugged or unplugged: | |
local screens = hs.screen.allScreens() | |
local screenwatcher = hs.screen.watcher.new(function() | |
screens = hs.screen.allScreens() | |
end) | |
screenwatcher:start() | |
-- Modifier shortcuts |
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
import * as React from "react"; | |
import { | |
Button, | |
Col, | |
Collapse, | |
Container, | |
Jumbotron, | |
Nav, | |
Navbar, |
NewerOlder