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
LWin & Y:: | |
#HotkeyInterval 200 | |
WinGet, active_id, ID, A | |
WinActivate, ahk_exe Teams.exe | |
Send ^+m | |
WinActivate, ahk_id %active_id% | |
return |
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 file was initially generated by Windows Terminal 1.0.1811.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", |
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
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
Attribute VB_Name = "cc_counter" | |
Option Explicit | |
Sub cc_counter() | |
Dim ns As NameSpace | |
Dim myStore As Store | |
Dim rootFolder As MAPIFolder | |
Dim subFolder As MAPIFolder | |
Dim item As Object | |
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
{ | |
"comment": " | |
-------------------------- | |
This theme requires this Consolas font patched for Powerline: | |
https://github.com/runsisi/consolas-font-for-powerline | |
You'll also have to enable it for console usage: | |
http://www.techrepublic.com/blog/windows-and-office/quick-tip-add-fonts-to-the-command-prompt/ | |
-------------------------- | |
", | |
"plugins": [ "git", "ssh", "z", "aliases" ], |
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
{ | |
"cursor_size": "small", | |
"font_face": "Source Code Pro", | |
"font_size": "0x16", | |
"popup_colors": "dark_magenta,white", | |
"dark_gray": "#7c7c7c", | |
"screen_colors": "gray,black", | |
"dark_green": "#74aa04", | |
"command_history_no_duplication": false, | |
"window_size": "120x40", |
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
#!/bin/sh | |
# Remove MacOS .DS_Store (otherwise directories are truely not empty) | |
find . -name '.DS_Store' -exec rm {} \; | |
# Finally, get rid of empty folders | |
find . -depth -type d -empty -exec rmdir {} \; |
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
#!/bin/sh | |
find . -type l ! -exec test -r {} \; -print |