sudo apt-get install imwheelgedit ~/.imwheelrc | #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| !c::Send, ^c | |
| !v::Send, ^v | |
| !x::Send, ^x | |
| !a::Send, ^a | |
| !z::Send, ^z | |
| !y::Send, ^y |
| { | |
| "version":"2.0.101", | |
| "settings":{ | |
| "autofocusevents":"ads,annotations,cinema,size,boost,loop,speed,filters", | |
| "autopausevideos":true, | |
| "backgroundcolor":"#000000", | |
| "backgroundopacity":85, | |
| "blur":0, | |
| "brightness":100, | |
| "cinemamode":false, |
| # github aliases | |
| alias gs='git status -sb' | |
| alias ga='git add' | |
| alias gaa='git add .' | |
| alias gc='git checkout ' | |
| alias gcm='git commit -m' | |
| alias gpush='git push origin master' | |
| alias gpull='git pull origin master' | |
| alias gamend='git commit -a --amend -m' | |
| alias glog='git log --all --graph --decorate --oneline --abbrev-commit' |