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
;Config for Lemur7 on Archlinux | |
[colors] | |
;background = ${xrdb:color0:#222} | |
background = #222 | |
background-alt = #444 | |
;foreground = ${xrdb:color7:#222} | |
foreground = #dfdfdf | |
foreground-alt = #555 | |
primary = #ffb52a |
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
Section "InputDevice" | |
Identifier "Trackball" | |
Option "MatchProduct" "Primax Kensington Eagle Trackball" | |
Driver "evdev" | |
Option "Evdev Middle Button Emulation" "1" | |
EndSection |
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
ACTION=="add", SUBSYSTEM=="input", ATTRS{name}=="Bluetooth Gamepad", ATTRS{uniq}=="00:17:02:01:ae:2a", SYMLINK+="ipega" |
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:fileencoding=utf-8:ft=conf | |
# Font family. You can also specify different fonts for the | |
# bold/italic/bold-italic variants. By default they are derived automatically, | |
# by the OSes font system. Setting them manually is useful for font families | |
# that have many weight variants like Book, Medium, Thick, etc. For example: | |
# font_family Operator Mono Book | |
# bold_font Operator Mono Thick | |
# bold_italic_font Operator Mono Medium | |
font_family Hack |
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
#!/bin/bash | |
GOVERNOR=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor) | |
if [ $1 == "-d" ] | |
then | |
while : | |
do | |
GOVERNOR=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor) |
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
# Shadow | |
shadow = false; | |
no-dnd-shadow = true; | |
no-dock-shadow = true; | |
clear-shadow = true; | |
shadow-radius = 7; | |
shadow-offset-x = -7; | |
shadow-offset-y = -7; | |
# shadow-opacity = 0.7; | |
# shadow-red = 0.0; |
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
SUBSYSTEM=="usb", ATTR{idVendor}=="0603", ATTR{idProduct}=="0008", RUN+="/bin/sudo -u neothefox /bin/sh /usr/local/bin/init_keyboard.sh :0" |
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
#!/bin/bash | |
#This is a simple calc for looking glass | |
#Licenced by WTFPL | |
#by NeoTheFox 2018 | |
#USAGE: | |
#glasscalc.sh WidthxHeight | |
function printhelp |
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
### Keybase proof | |
I hereby claim: | |
* I am NeoTheFox on github. | |
* I am neothefox (https://keybase.io/neothefox) on keybase. | |
* I have a public key whose fingerprint is 8F6D 5625 1B75 F6F2 388B 3C63 AADE F32B D45E 6587 | |
To claim this, I am signing this object: |
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
#!/bin/sh | |
if [ -z "$1" ] | |
then | |
echo "No argument supplied" | |
else | |
export DISPLAY=$1 | |
fi | |
if pgrep Xorg > /dev/null | |
then |