Skip to content

Instantly share code, notes, and snippets.

View madprops's full-sized avatar

madprops madprops

View GitHub Profile
@madprops
madprops / bckgit.py
Created August 9, 2022 01:27
Backup your public repos. Usernames/Orgs as arguments
import os
import sys
import requests
from pathlib import Path
def main():
usernames = sys.argv[1:]
for user in usernames:
userdir = Path(user)
import os
import sys
from pathlib import Path
# Main function
def main() -> None:
# Arguments
path = sys.argv[1]
if (len(sys.argv)) > 2:
@madprops
madprops / timer.py
Last active July 20, 2022 08:28
Start a timer using rofi
#!/usr/bin/env python
import re
import os
from sys import argv
from subprocess import Popen, PIPE
# Get input information using rofi
def get_input(prompt: str) -> str:
proc = Popen(f"rofi -dmenu -p '{prompt}'", stdout=PIPE, stdin=PIPE, shell=True, text=True)
@madprops
madprops / countrstring.sh
Created December 3, 2021 00:57
Show a message with the number of characters of the string in the clipboard
#!/bin/bash
string=$(xclip -o -sel clip)
numchars=$(echo -n "$string" | wc -c)
awesome-client "msg('$numchars')"
@madprops
madprops / toucher.py
Created September 13, 2021 18:52
Update the modification date of files in a directory in sorted order
#!/usr/bin/python3
import pathlib
for p in sorted(pathlib.Path('.').iterdir()):
if p.is_file():
print(p)
p.touch()
#!/bin/bash
n=$((1 + RANDOM % 2))
if [[ "$n" == "1" ]]; then
str=$(shuf -n1 /usr/share/dict/american-english | cut -d$'\t' -f1 | tr '\n' ' ' | sed "s/'s//g")
else
str=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 4 | head -n 1)
fi
#!/bin/bash
date=$(($(date +%s%N)/1000000))
odate=$([ -r /tmp/closer_click_date ] && cat /tmp/closer_click_date)
oid=$([ -r /tmp/closer_click_id ] && cat /tmp/closer_click_id)
sedGetValue='s/.*=\(.*\)/\1/'
id=$(xdotool getmouselocation --shell 2>/dev/null | grep WINDOW | sed "$sedGetValue")
class=$(xprop -id "$id" | grep WM_CLASS)
type="normal"
if [[ "$class" == *"Firefox"* ]]; then
@madprops
madprops / notify.sh
Created March 10, 2020 10:52
Script to easily make naughty notifications ( awesome wm) when using bash scripts
#!/bin/bash
# Arguments: title message icon timeout mode
# If mode is 'update' it will update an existing notification with the same title
# Example usage: ~/scripts/notify.sh 'Audio Volume' ${vol} ~/scripts/music.jpg 2 update
awesome-client 'naughty = require("naughty")
local title = "'"$1"'"
local message = "'"$2"'"
@madprops
madprops / nimtut.nim
Created November 25, 2019 18:14
Used for a video tutorial on Nim
# Mutable variable
var a = "hello"
# Immutable variable
let a = "hello"
# Specify a type
var age: int
var name: string
@madprops
madprops / setup_snes_controller.sh
Last active November 3, 2019 17:23
This maps some buttons of generic usb snes controllers to F keys
#!/bin/bash
# Run with root privileges
product_id="D015"
product_id_o="d015"
vendor_id="12BD"
vendor_id_o="12bd"
cat - <<UDEV_RULESET > /etc/udev/rules.d/10-usb-snes.rules