name | description | version | |
---|---|---|---|
change case | change the case of selected text | ||
dynaclip | basic web clipper for dynalist.io | ||
file properties | open properties for the selected file | 1.1 | |
google time range | π | switch between the various time ranges (hour, day, week, month, year) | |
goto open folder | π | show a list of open folders when youre at a "save as" or "open" dialog | 1.3 |
i.mage | π§ββοΈ | one click image download | 0.1 |
[lightshot+](https://gist.github.com/da |
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
# boxstarter url: http://boxstarter.org/package/nr/url?GIST_URL_HERE/raw | |
# http://boxstarter.org/package/nr/url?https://gist.github.com/davebrny/dc654fc79beae23764d61cc357579324/raw | |
# short url: bit.ly/CUSTOM_URL | |
Disable-UAC | |
Install-WindowsUpdate | |
Set-WindowsExplorerOptions -EnableShowFileExtensions | |
Set-TaskbarOptions -Size Large -Lock -Dock Right | |
cinst chocolatey -y |
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
<TaskerData sr="" dvi="1" tv="4.8u5m"> | |
<Profile sr="prof78" ve="2"> | |
<cdate>1466773290996</cdate> | |
<edate>1466784552162</edate> | |
<id>78</id> | |
<mid0>97</mid0> | |
<nme>search - show keyboard</nme> | |
<App sr="con0" ve="2"> | |
<cls0>com.google.android.googlequicksearchbox.SearchActivity</cls0> | |
<flags>2</flags> |
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
ahk_help(search_term="") { | |
static ahk_dir | |
if (search_term = "") ; check for a selection | |
{ | |
revert_clipboard := clipboardAll | |
clipboard = | |
send ^{c} | |
clipWait, 0.3 | |
search_term := clipboard |
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
msg_box(string=". . .", options="") { | |
string := format_text(string, options) | |
msgBox, % string | |
} | |
msg_tray(string=". . .", options="") { | |
string := format_text(string, options) | |
trayTip, , % string, 10 | |
} |
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
/* | |
[strip] | |
version = 2.3.1 | |
description = strip comments, comment blocks and empty lines from a string | |
author = davebrny | |
source = https://gist.github.com/davebrny/13b4ab574fd125d732749b406c4351d5 | |
*/ | |
strip(string, option="") { |
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
+#w::send #{up} ; maximise window | |
+#x::send #{down} ; minimize window | |
+#a::send #{left}{Lwin up} ; snap window left | |
+#d::send #{right}{Lwin up} ; snap window right | |
+#s::send #+{left} ; move window to another monitor | |
+#z::send !{esc} ; cycle through all windows | |
#\::send !{tab}{tab up} ; toggle between this window and the last | |
#z::send #{tab} ; windows 10 task switcher |
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
/* | |
[script info] | |
version = 2.5 | |
description = wrap selected text in %symbols% | |
author = davebrny | |
source = https://gist.github.com/davebrny/088c48d6678617876b34f53571e92ee6 | |
*/ | |
sendMode input | |
return ; end of auto-execute |
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
#if winActive("ahk_exe Spotify.exe") | |
or winActive("Spotify ahk_exe chrome.exe") | |
or winActive("Spotify ahk_exe firefox.exe") | |
:*:a;:: ; album | |
:*:ar;:: ; artist | |
:*:t;:: ; track | |
:*:g;:: ; genre | |
:*:y;:: ; year |
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
send_hotkey(string){ | |
modifiers := regExReplace(string, "[^\W]") | |
stringReplace, key, string, % modifiers, , | |
return modifiers "{" key "}" | |
} | |
/* | |
[send hotkey] | |
description = prepare hotkey text for the send command: ^!a to ^!{a} |
OlderNewer