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
using System; | |
using System.Threading; | |
using System.Diagnostics; | |
namespace csgo_walls { | |
public class Glow { | |
public static int Client; | |
public static string process = "csgo"; |
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
using System; | |
using System.Threading; | |
using System.Diagnostics; | |
namespace csgo_walls { | |
public class Glow { | |
public static int Client; | |
public static string process = "csgo"; |
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
; Based on https://superuser.com/a/768060/542406 | |
!`:: ; Next window | |
WinGet, ActiveProcessName, ProcessName, A | |
WinGet, WinClassCount, Count, ahk_exe %ActiveProcessName% | |
IF WinClassCount = 1 | |
Return | |
Else | |
WinSet, Bottom,, A | |
WinActivate, ahk_exe %ActiveProcessName% | |
return |
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/sh | |
for i in /etc/xdg/autostart/tracker-*.desktop; do | |
echo -e "Hidden=true" | sudo tee --append "$i" >/dev/null | |
done | |
gsettings set org.freedesktop.Tracker.Miner.Files crawling-interval -2 | |
gsettings set org.freedesktop.Tracker.Miner.Files enable-monitors false | |
tracker reset --hard |
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 | |
# run this script with environmental variables like so: | |
# env WINEARCH=win64 WINEPREFIX=$HOME/Documents/Wine/Overwatch ~/wine_gaming.sh | |
# | |
# the above will create a new wine prefix, removing it if it already exists | |
# you will be prompted to hit enter before continuing or aborting with a ctrl-c | |
# | |
# it will also download/run the latest Battle.net client but this is optional | |
# ensure wine-staging, winetricks, wineasio and dxvk are installed prior to running |
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
package main | |
import ( | |
"github.com/davecgh/go-spew/spew" | |
psDisk "github.com/shirou/gopsutil/disk" | |
"github.com/sirupsen/logrus" | |
) | |
func main() { | |
partitions, err := psDisk.Partitions(false) |
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 | |
TRICKS=() | |
TRICKS+=(corefonts) | |
TRICKS+=(dotnet462) | |
TRICKS+=(vcrun2005) | |
TRICKS+=(vcrun2008) | |
TRICKS+=(vcrun2015) | |
test -z "$WINEPREFIX" && WINEPREFIX="${1:-$HOME/.wine}" |
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
# Maintainer: Tony Lambiris <[email protected]> | |
pkgbase=capstone | |
pkgname=lib32-capstone | |
pkgver=4.0.1 | |
pkgrel=1 | |
pkgdesc='Lightweight multi-platform, multi-architecture disassembly framework (32-bit)' | |
url='https://www.capstone-engine.org/index.html' | |
arch=('x86_64') | |
license=('BSD') |
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
# Contributor: Yauheni Kirylau <yawghen-gmail-dot-com> | |
pkgname=libui-git | |
pkgver=alpha4.1.r314.g17486fd1 | |
pkgrel=1 | |
pkgdesc='A portable GUI library for C' | |
arch=('i686' 'x86_64') | |
url='https://github.com/andlabs/libui' | |
license=('MIT') | |
depends=('gtk3' 'libx11' 'libxcb' 'libffi') |
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
if [ $# -gt 0 ]; then | |
$* | |
else | |
dbus-update-activation-environment --systemd DISPLAY | |
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh) | |
export SSH_AUTH_SOCK | |
exec gnome-session | |
fi |