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
| /* | |
| Twitch chat browsersource CSS for OBS | |
| Just set the URL as https://www.twitch.tv/popout/%%TWITCHCHANNEL%%/chat | |
| And paste this entire file into the CSS box | |
| Original by twitch.tv/starvingpoet modified by github.com/Bluscream | |
| Readjusted for new (2019/2020) Twitch by github.com/mjbogusz | |
| General Settings | |
| */ | |
| body { |
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
| # Maintainer: Alexis "Horgix" Chotard <[email protected]> | |
| # Contributor: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG | |
| pkgname=py3status | |
| pkgver=3.12 | |
| pkgrel=1 | |
| pkgdesc="An extensible i3status replacement/wrapper written in python" | |
| url="http://www.ultrabug.fr/tag/py3status/" | |
| arch=('any') | |
| license=('custom: Simplified BSD') |
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
| // blob to base64: | |
| // https://stackoverflow.com/questions/12786818/file-api-blob-to-json | |
| // https://stackoverflow.com/a/11562550/3217805 | |
| // base64 to blob: | |
| // https://stackoverflow.com/a/16245768/3217805 | |
| var exportTiles = function() { | |
| Tiles.getAllTiles().then(tiles => { | |
| return Promise.all(tiles.map(tile => { | |
| return new Promise(resolve => { | |
| let fr = new FileReader(); |
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
| { | |
| "src_folders" : ["src"], | |
| "output_folder" : "reports", | |
| "custom_commands_path" : "", | |
| "custom_assertions_path" : "", | |
| "page_objects_path" : "", | |
| "globals_path" : "", | |
| "selenium" : { | |
| "start_process" : true, | |
| "server_path" : "./node_modules/selenium-standalone/.selenium/selenium-server/3.4.0-server.jar", |
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
| #!/usr/bin/env zsh | |
| local direction="left" | |
| local -a screens; screens=(`xrandr | grep " connected" | awk -F' ' '{print $1}'`) | |
| local lidStatus=`cat /proc/acpi/button/lid/LID/state | awk -F' ' '{print $2}'` | |
| disableAllButLVDS() { | |
| xrandr --output VGA1 --off | |
| xrandr --output HDMI1 --off |
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
| # vim:ft=zsh ts=2 sw=2 sts=2 | |
| # | |
| # agnoster's Theme - https://gist.github.com/3712874 | |
| # A Powerline-inspired theme for ZSH | |
| # | |
| # # README | |
| # | |
| # In order for this theme to render correctly, you will need a | |
| # [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts). | |
| # Make sure you have a recent version: the code points that Powerline |
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
| local USERNAME=`id -un` | |
| local TMPFILE_NAME=`ls -t /tmp/ | grep -m 1 clonepwd-${USERNAME}-` | |
| if ( [ "${TMPFILE_NAME}" ] ); then | |
| local TMPFILE="/tmp/${TMPFILE_NAME}" | |
| local CLONEDIR=`cat ${TMPFILE}` | |
| if ( [ "${CLONEDIR}" ] ); then | |
| cd "${CLONEDIR}" | |
| fi | |
| else |