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
// ==UserScript== | |
// @name Steam Link Filter Auto-Continue | |
// @namespace https://steamcommunity.com/linkfilter/ | |
// @description Bypass Steam's Link Filter anti-feature. | |
// @include https://steamcommunity.com/linkfilter/* | |
// @include http://steamcommunity.com/linkfilter/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name StartPage Bangs | |
// @namespace http://tarkus.co/ | |
// @version 0.1 | |
// @description Adds !s to StartPage, like DDG | |
// @match https://startpage.com/* | |
// @run-at document-start | |
// ==/UserScript== | |
// Bangs |
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
var Sequence = function() { | |
this.iter = 0; | |
this.funcs = []; | |
this.waitFor = function(testFx, onReady, onTimeOut, timeOutMillis) { // Modified!!! | |
/* https://github.com/ariya/phantomjs/blob/master/examples/waitfor.js | |
view github page for credits */ | |
var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 3000, //< Default Max Timout is 3s | |
start = new Date().getTime(), | |
condition = false, |
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
// ==UserScript== | |
// @name Google Click Hijacking Killer | |
// @version 1 | |
// @namespace GCHK | |
// @description Remove Google's Click Hijacking | |
// @include http://www.google.com/search* | |
// @include https://www.google.com/search* | |
// @grant none | |
// ==/UserScript== |
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 bash | |
exec gnome-screenshot -a -f ${@:2} |
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
http://127.0.0.1:8888 |
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
configuration-url: "https://rawgit.com/thetarkus/5527f55dc1ce6eeaf805a9bb1bdc86da/raw/c1b7609801d77c24be6d5eed3329350bd73375f6/qemu_usb_dm_config.yml" | |
host-machine: | |
hostname: "pc" | |
virtual-machines: | |
windows-vm-1: | |
monitor: ":7101" | |
usb-devices: |
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
version: "3.3" | |
services: | |
script-server: | |
container_name: script-server | |
image: bugy/script-server | |
restart: unless-stopped | |
ports: | |
- "5000:5000" | |
volumes: | |
- type: bind |
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
if empty(glob('~/.vim/autoload/plug.vim')) | |
let plugurl = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' | |
silent execute '!wget -P ~/.vim/autoload ' . plugurl | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif |
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
// Fix (2022-12-30): Holding shift to open a link in a new tab using hints | |
// https://github.com/brookhong/Surfingkeys/issues/1897 | |
settings.hintShiftNonActive = true; | |
api.mapkey('<space>', 'Select a tab using the omnibar', function() { | |
api.Front.openOmnibar({ type: "Tabs" }); | |
}); |
OlderNewer