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
// ==UserScript== | |
// @name AntiSPAM++ JVC | |
// @author GodTier | |
// @description Antispam avancé pour jvc | |
// @version 1 | |
// @match https://www.jeuxvideo.com/* | |
// @grant GM.setValue | |
// @grant GM.getValue | |
// @require http://code.jquery.com/jquery-3.4.1.min.js | |
// ==/UserScript== |
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/bash | |
############ | |
# @Description Paste stdin to current window | |
# @Author https://github.com/BelkaDev | |
# @Requires xclip,xdotool | |
# @Usage ${0} <string> | |
# @Usage <cmd> | ${0} | |
# @Example ${0} "hi" | |
# @Example curl -s "cht.sh/$(xclip -o -sel)?T?Q" | ${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
#!/bin/bash | |
# requires: bspwm,xdotool,wmctrl,wmutils... | |
# usage: attach.sh [n] | |
# n is the size of the docked window, 1 equals 100% the parent size, 2 is 50% and so on.. | |
unset x y w h | |
# kill old instance of the script to save resources: only one terminal allowed | |
script_name=${BASH_SOURCE[0]} | |
for pid in $(pidof -x $script_name); do | |
if [ $pid != $$ ]; then |