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
#include <stdio.h> | |
#include <string.h> | |
#define ShiftMask (1<<0) | |
#define LockMask (1<<1) | |
#define ControlMask (1<<2) | |
#define Mod1Mask (1<<3) | |
#define Mod2Mask (1<<4) | |
#define Mod3Mask (1<<5) | |
#define Mod4Mask (1<<6) |
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 bash | |
#This script was made on a request from one of my human | |
# friends. He needed a folder that would delete itself when | |
# leaves it. | |
# | |
# Press Ctrl+d to leave the folder and let it delete itself | |
#time used to creaate uniques folders | |
time=$(printf "%(%l%M%S)T\\n" "-1") |