Skip to content

Instantly share code, notes, and snippets.

View sl5net's full-sized avatar
🏠
Working from home

sl5net

🏠
Working from home
View GitHub Profile
@sl5net
sl5net / temp.py
Created November 9, 2020 18:29
some helper working with autokey
doPopupNotify_howItWorks = True # subprocess.Popen(['notify-send', "will be showed right top"]) # will be showed right top
def popupNotify(text):
subprocess.Popen(['notify-send', text]) # will be showed right top
def popupNotify_howItWorks(text):
global doPopupNotify_howItWorks
if doPopupNotify_howItWorks:
subprocess.Popen(['notify-send', text]) # will be showed right top
time.sleep(.2)
def beeps(duration=.1, freq=2000, loops=1):
# duration = .8 # second
@sl5net
sl5net / .run-run-lintalistAHK-all.json
Created November 7, 2020 15:40
that not change, it adds
{
"type": "script",
"description": "run-run-lintalistAHK-all",
"store": {},
"modes": [
3
],
"usageCount": 12,
"prompt": false,
"omitTrigger": false,
@sl5net
sl5net / install.sh
Created November 7, 2020 15:31
this adds and not changes values
#!/bin/bash
# Start it for e.g. so:
#/‾‾‾ problems installing autohokey using this line
# clear ; cd /tmp ; wget https://raw.githubusercontent.com/sl5net/Lintalist4Linux/master/install.sh ./install.sh ; sudo chmod +wx ./install.sh ; ./install.sh ; rm ./install.sh ;
#/‾‾‾ no problems # chmod +rwx :))))
# clear ; cd /tmp ; rm ./install.sh ; wget https://raw.githubusercontent.com/sl5net/Lintalist4Linux/master/install.sh ./install.sh ; sudo chmod 777 ./install.sh ; ./install.sh ; rm ./install.sh ;
#/‾‾‾ no problems bash: ./install.sh: Permission denied
# clear ; sudo wget https://raw.githubusercontent.com/sl5net/Lintalist4Linux/master/install.sh ~/Downloads/install.sh ; cd ~/Downloads ; sudo chmod 750 ./install.sh ; ./install.sh
#/‾‾‾ solution without sh-script
@sl5net
sl5net / configParser-set-defaults.py
Created November 7, 2020 13:54
working example change shortcut in autokey script
from pathlib import Path
import json
home = str(Path.home())
path = home + "/.config/autokey/data/Sample Scripts/"
jsonFilePath = home + "/.config/autokey/data/Sample Scripts/.run-run-lintalistAHK-all.json"
file = open(jsonFilePath)
data = json.load(file)
for x in data['hotkey']:
data['hotkey'][x] = '<f11>'
print(data)
@sl5net
sl5net / configParser-set-defaults.py
Created November 7, 2020 13:22
data["hotKey"]["hotKey"] = "<f11>" KeyError: 'hotKey'
from pathlib import Path
import json
home = str(Path.home())
path = home + "/.config/autokey/data/Sample Scripts/"
jsonFilePath = home + "/.config/autokey/data/Sample Scripts/.run-run-lintalistAHK-all.json"
# /home/administrator/.config/autokey/data/Sample Scripts/.run-run-lintalistAHK-all.json
# /home/administrator.config/autokey/data/Sample Scripts/.run-run-lintalistAHK-all.json'
# {
# "hotkey": {
# "modifiers": [],
@sl5net
sl5net / 0 A.D. pause - p1.py
Created November 7, 2020 01:29
0 A.D. pause - p
from autopilot.input import Mouse
doOnlyPreview = True
doOnlyPreview = False
# winTitle = window.get_active_title()
# winClass = window.get_active_class()
# if winTitle != "0 A.D." or winClass != 'pyrogenesis.pyrogenesis':
# keyboard.send_keys("p") # ü
# quit()
@sl5net
sl5net / 0 A.D. fast - ue.py
Created November 7, 2020 01:27
AutoKey Script AutoKey Script
from autopilot.input import Mouse
doOnlyPreview = True
doOnlyPreview = False
# winTitle = window.get_active_title()
# winClass = window.get_active_class()
# if winTitle != "0 A.D." or winClass != 'pyrogenesis.pyrogenesis':
# keyboard.send_keys("ü") # ü
# quit()
# https://askubuntu.com/a/149264/1017209
# xrandr -q | grep " connected"
# bug report:
# there is sometimes a toggle. severel versions of this scripts run sometimes.
# for minutes i have tested this script with "1" and then with with "0.2".
# during this video it jumps back to "1" ?? whey? lets try kill autokey and start it again
# you could see. it dont toggle. if autokey is off. brightness stays. not toggle.
# ups. noooo. i doesent !!!!!!. my system automatically set brightness to 1???? whey??
#!/bin/bash
echo "########## Please Exit AutoHotKey (right Click Taskbar on little Icon) then the installation will continue automatically. #########"
autokey-qt & sleep 3s ; killall -9 autokey-qt
sudo apt -y install git || exit
mkdir ~/ahk
mkdir ~/ahk/github
cd ~/ahk/github || exit
git clone https://github.com/lintalist/lintalist
cd ~/Downloads || exit
git clone https://github.com/sl5net/Lintalist4Linux
#!/bin/bash
echo "########## \n Please Exit AutohotKey (right Click Taskbar on little Icon) then the installation will continue automatically. \n#########"
autokey-qt & sleep 3s ; killall -9 autokey-qt
sudo apt -y install git
mkdir ~/ahk
mkdir ~/ahk/github
cd ~/ahk/github/
git clone https://github.com/lintalist/lintalist
cd ~/Downloads/
git clone https://github.com/sl5net/Lintalist4Linux