Skip to content

Instantly share code, notes, and snippets.

View sophiiss's full-sized avatar
✍️
Coding

sophia sophiiss

✍️
Coding
  • 20:40 (UTC -03:00)
View GitHub Profile
@sophiiss
sophiiss / theme.css
Created September 29, 2025 07:05
Red Theme for Twitter
/* ==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... */
/* 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);
@sophiiss
sophiiss / screeenshot with flameshot
Created August 19, 2022 23:40
screeenshot with flameshot
#!/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)
@sophiiss
sophiiss / screenshot.sh
Last active August 9, 2022 22:53
A simple screenshot script that uploads to imgur
#!/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}"