This file contains hidden or 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
/* ==UserStyle== | |
@name Red X | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description my red X accent colour, based on idfk Some Extension lmao I can't remember | |
@author Lucia Scarlet | |
==/UserStyle== */ | |
@-moz-document domain("x.com") { | |
/* Insert code here... */ |
This file contains hidden or 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
/* change this to your favourite colour */ | |
:root { | |
--custom: color(display-p3 0.778 0.115 0.181 / 1); | |
--custom-rgb: color(display-p3 0.778 0.115 0.181 / 1); | |
--custom-cval: color(display-p3 0.778 0.115 0.181); |
This file contains hidden or 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 | |
# get current year and month | |
year_month=$(date +%Y-%m) | |
# set dir to Screenshots folder + current year-month | |
dir="$(xdg-user-dir PICTURES)/Screenshots/${year_month}" | |
# get current day-hour-minute-seconds | |
time=$(date +%d_%H-%M-%S) |
This file contains hidden or 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 | |
# Imgur uploader: https://github.com/tremby/imgur.sh | |
# get current year and month | |
year_month=$(date +%Y-%m) | |
# set dir to Screenshots folder + current year-month | |
dir="$(xdg-user-dir PICTURES)/Screenshots/${year_month}" |