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
#!/usr/bin/env bash | |
xset +dpms | |
xset dpms force standby | |
sleep 1 | |
xset dpms force suspend | |
sleep 1 | |
xset dpms force off | |
sleep 1 | |
xset dpms force on |
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
#!/usr/bin/env bash | |
xset dpms force off | |
sleep 1 | |
xset dpms force on | |
sleep 1 | |
#xrandr -q | grep "connected" | |
xrandr --output LVDS1 --brightness 0.2 | |
sleep 1 | |
xrandr --output LVDS1 --brightness 1.0 |
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
; toggle next, previous (virtual) desktop | |
^!Up:: | |
Send ^#{Left} | |
return | |
^!Down:: | |
Send ^#{Right} | |
return | |
; open “Terminal” |
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
A long list, based on [this info](https://pastebin.com/AWMtu5rK) | |
Usage, see advice below! | |
[actionscript] = lang-js | |
[ant] = lang-xml | |
[boost] = lang-c | |
[c#-4.0] = lang-cs | |
[c#] = lang-cs | |
[c++] = lang-c | |
[c] = lang-c |
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
// =below($size) | |
// @media only screen and (max-width: $size) | |
// @content | |
// =above($size) | |
// @media only screen and (min-width: $size) | |
// @content | |
// =lower($size) | |
// @media only screen and (max-height: $size) |