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
int UCLN(int a, int b) { | |
if (b==0) return a; | |
return UCLN(b, b%a); | |
} | |
int BCLN(int a, int b) { | |
return (a * b) / UCLN(a,b); | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
using System.Threading; | |
using System.Windows.Forms; | |
using System.Drawing; | |
namespace ADBToolkit |
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
{"name":"HERO","modConfig":{"mods":[{"allowed":true,"name":"ActiveMods","options":[{"name":"Size","value":"Tiny"},{"name":"Animations","value":true},{"name":"Sound","value":true}],"enabled":true},{"allowed":true,"name":"Aimbot","options":[{"name":"Type","value":"Basic"},{"name":"Players","value":true},{"name":"Animals/Monsters","value":false},{"name":"Invisible","value":true}],"sub-options":{"Basic":[{"name":"Range","value":4}],"C&C":[],"Smooth":[{"name":"Range","value":4}]},"enabled":false},{"allowed":true,"name":"AntiBlind","options":[],"enabled":true},{"allowed":true,"name":"AntiBot","options":[{"name":"Mode","value":"Advanced"}],"enabled":true},{"allowed":true,"name":"AntiCactus","options":[{"name":"Above","value":true}],"enabled":true},{"allowed":true,"name":"AntiKnockBack","options":[{"name":"Type","value":"Delay"}],"sub-options":{"Basic":[{"name":"Explosions","value":true},{"name":"H-Multiplier","value":0.02},{"name":"V-Multiplier","value":0.02}],"AAC":[{"name":"Strengh","value":0.7}],"Spartan":[{"name |
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
################################# | |
# Corners # | |
################################# | |
# requires: https://github.com/sdhand/compton | |
corner-radius = 4; | |
rounded-corners-exclude = [ | |
#"window_type = 'normal'", | |
#"class_g = 'awesome'", | |
#"class_g = 'URxvt'", | |
"class_g = 'XTerm'", |
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 dash | |
export XDG_CURRENT_DESKTOP=bspwm | |
export QT_QPA_PLATFORMTHEME=qt5ct | |
pgrep -x sxhkd > /dev/null || sxhkd & | |
bspc monitor -d 'web' 'code' 'chat' 'games' 'music' 'vscode' 'spotify' 'discord' 'other' | |
bspc config border_width 2 | |
bspc config window_gap 12 | |
bspc config split_ratio 0.5 | |
bspc config borderless_monocle true | |
bspc config pointer_action1 move |