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 elk.zone - 3/29/2023, 4:23:38 PM | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description A new userstyle | |
@author Me | |
==/UserStyle== */ | |
@-moz-document domain("elk.zone") { | |
:root { |
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
function cputurbo() { | |
# CHECK IF THE NOFITY-SEND BINARY EXISTS IN THE SYSTEM | |
# AND ALERT THE USER IF IT DOESN'T | |
if ! command -v notify-send &> /dev/null; then | |
echo -e "\nWarning: notify-send could not be found.\ | |
\nPlease install it using your distribution native package manager.\ | |
\n\nOn Arch Linux, you can install it with \"sudo pacman -Sy libnotify\".\ | |
\nOn Ubuntu, use \"sudo apt install libnotify-bin\"." | |
return 1 2>/dev/null |
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
* { | |
-webkit-font-smoothing: subpixel-antialiased !important; | |
text-rendering: optimizelegibility !important; | |
-moz-osx-font-smoothing: grayscale !important; | |
font-smooth: always !important; | |
font-family: rubik !important; | |
} | |
body, | |
td, |
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
function sysupdate { | |
local native() { | |
tput bold; | |
echo "\n\e[0;93mUpdating native packages..." | |
tput sgr0; | |
paru -Syyuv; | |
} | |
local fltpk() { |
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
function XScreenManage { | |
if ! command -v notify-send &> /dev/null; then | |
echo -e "Warning: notify-send could not be found. Please install it using\ | |
your distribution native package manager. On Arch Linux, you can install it\ | |
with \"sudo pacman -Sy libnotify\"" | |
return 1 2>/dev/null | |
fi | |
local blanking() { |
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
# Toot with images from the command line | |
# License: GPLv3 (https://www.gnu.org/licenses/gpl-3.0.txt) | |
function tooti { | |
# Allow using trap inside a function | |
set -o localoptions -o localtraps | |
# Check if toot is in $PATH | |
if ! type toot > /dev/null; then | |
echo -e "\n\e[0;93mWarning: toot not found in \$PATH\n" | |
echo -e "Please install it using your package manager or from https://github.com/ihabunek/toot\n" |
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
:root, | |
html, | |
body { | |
font-family: "inter", rubik, sans-serif !important; | |
} | |
body.theme-mastodon-light { | |
background: #f4f8fa !important; | |
} |
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
# ░█▀█░▀█▀░█▀▀░█▀█░█▄█░░░░█▀▀░█▀█░█▀█░█▀▀ | |
# ░█▀▀░░█░░█░░░█░█░█░█░░░░█░░░█░█░█░█░█▀▀ | |
# ░▀░░░▀▀▀░▀▀▀░▀▀▀░▀░▀░▀░░▀▀▀░▀▀▀░▀░▀░▀░░ | |
# | |
# X compositor configuration | |
# ░█▀▀░█░█░█▀█░█▀▄░█▀█░█░█ | |
# ░▀▀█░█▀█░█▀█░█░█░█░█░█▄█ | |
# ░▀▀▀░▀░▀░▀░▀░▀▀░░▀▀▀░▀░▀ |
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
* { | |
-webkit-font-smoothing: subpixel-antialiased !important; | |
text-rendering: optimizelegibility !important; | |
-moz-osx-font-smoothing: grayscale !important; | |
/*font-smooth: grayscale !important;*/ | |
font-smooth: always !important; | |
} | |
:root { | |
--text-link: hsl(212,calc(var(--saturation-factor, 1)*100%),43.9%); |
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
/* I'm using FiraGo (https://github.com/bBoxType/FiraGO) as the default font in the browser */ | |
* {font-family: sans-serif !important;} | |
/* adds a bit of padding to the card showing a tweet */ | |
article { | |
padding: 10px 5px !important | |
} | |
/* I prefer light borders */ | |
html.dark .stream-item, html.dark .column-header { |
NewerOlder