This file contains 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/zsh | |
ws1= # main | |
ws2= # web | |
ws3= # mail | |
ws4= # code | |
ws5= # math [infinity] (term icon) | |
ws6= # media | |
ws7= # misc (9 squares icon) | |
ws8= # notes/docs (pdf icon) |
This file contains 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
# -*- coding: utf-8 -*- | |
from json import dumps | |
from subprocess import Popen, PIPE | |
from sys import argv, stdout | |
from time import sleep, time | |
NAP_TIME = 5 | |
if len(argv) > 1: | |
NAP_TIME = float(argv[1]) |
This file contains 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
# gist:4f51b2f23ae8b90e160877e8a8f29bb5 | |
#Requires -Version 7 | |
# === TROUBLESHOOT STARTUP === | |
#Set-PSDebug -Trace 1 | |
# Install-Module PSProfiler | |
# Import-Module PSProfiler | |
# Measure-Script -Top 3 $profile | |
# === MODULES === |