I hereby claim:
- I am emjayoh on github.
- I am emjayoh (https://keybase.io/emjayoh) on keybase.
- I have a public key ASA8Bof3vd4LsonpO6KnJqZOWgFECLA6pYTBScAzxhJtawo
To claim this, I am signing this object:
| find . -name '*.js' | xargs wc -l |
| // ==UserScript== | |
| // @name SlackPGP | |
| // @namespace slack | |
| // @description slackPGP | |
| // @include https://*.slack.com/messages/* | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| pmset displaysleepnow |
| #!/usr/bin/env bash | |
| (set -x; brew update;) | |
| (set -x; brew cleanup;) | |
| (set -x; brew cask cleanup;) | |
| red=`tput setaf 1` | |
| green=`tput setaf 2` | |
| reset=`tput sgr0` |
I hereby claim:
To claim this, I am signing this object:
| brew cask install $( brew search font | grep nerd | tr '\n' ' ' ) |
I followed the instructions in this blog post Multiple Fonts: Alternative to Operator Mono in VSCode, but did not see any changes made to VS Code. After digging a bit, I discovered that all the CSS class names had changed. They’re now e.g. .mtk13, .mtk16 { … }.
{ "vscode_custom_css.imports": [ "file:///Users/Brian/Desktop/vscode-style.css" ] }I followed the instructions in this blog post Multiple Fonts: Alternative to Operator Mono in VSCode, but did not see any changes made to VS Code. After digging a bit, I discovered that all the CSS class names had changed. They’re now e.g. .mtk13, .mtk16 { … }.
{ "vscode_custom_css.imports": [ "file:///Users/Brian/Desktop/vscode-style.css" ] }| OSX Apps | |
| - Total Spaces, for keeping X11 in different space and faster switching | |
| - MenuAndDockless for hidding topbar menu | |
| X11 - Macports | |
| - sudo port install xorg-server | |
| - sudo port install xinit | |
| - sudo port install terminus-font dejavu-fonts bitstream-fonts | |
| Suckless - suckless.org |
| hs.hotkey.bind({}, "F15", function() | |
| local app = hs.application.get("kitty") | |
| if app then | |
| if not app:mainWindow() then | |
| app:selectMenuItem({"kitty", "New OS window"}) | |
| elseif app:isFrontmost() then | |
| app:hide() | |
| else | |
| app:activate() |