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
import os | |
import sys | |
import requests | |
from pathlib import Path | |
def main(): | |
usernames = sys.argv[1:] | |
for user in usernames: | |
userdir = Path(user) |
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
import os | |
import sys | |
from pathlib import Path | |
# Main function | |
def main() -> None: | |
# Arguments | |
path = sys.argv[1] | |
if (len(sys.argv)) > 2: |
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
#!/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) |
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 | |
string=$(xclip -o -sel clip) | |
numchars=$(echo -n "$string" | wc -c) | |
awesome-client "msg('$numchars')" |
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
#!/usr/bin/python3 | |
import pathlib | |
for p in sorted(pathlib.Path('.').iterdir()): | |
if p.is_file(): | |
print(p) | |
p.touch() |
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 | |
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 |
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 | |
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 |
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 | |
# 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"'" |
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
# Mutable variable | |
var a = "hello" | |
# Immutable variable | |
let a = "hello" | |
# Specify a type | |
var age: int | |
var name: string |
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 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 |