Iosevka is hands down the best font family for any kind of programming.
For Chinese and Japanese users check out Sarasa Gothic.
- open-source
- sans-serif + slab-serif, monospace + quasi‑proportional typeface family
| #!/bin/bash | |
| # Check if Script is Run as Root | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "You must be a root user to run this script, please run sudo ./fedora_customizer.sh" 2>&1 | |
| exit 1 | |
| fi | |
| # Updating System | |
| dnf update -y |
Iosevka is hands down the best font family for any kind of programming.
For Chinese and Japanese users check out Sarasa Gothic.
| <settings> | |
| <channel>daily</channel> | |
| <arch>x86_64-v3</arch> | |
| <autodelete>true</autodelete> | |
| <getffmpeg>true</getffmpeg> | |
| </settings> |
| #? Config file for btop4win v. 1.0.4 | |
| #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. | |
| #* Themes should be placed in "themes" folder in same folder as btop4win.exe | |
| color_theme = "Default" | |
| #* If the theme set background should be shown, set to False if you want terminal background transparency. | |
| theme_background = True | |
| #* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. |
Search Everything is a fast, powerful, and effective search tool for Windows.
This cheatsheet acts as a quick start reference to get more out of Search Everything.
It compliments the official documentation.
| [[Shows]] | |
| # platform name | |
| Platform = "youtube" | |
| # room id | |
| RoomID = "UC3M7l8ved_rYQ45AVzS0RGA" | |
| # streamer name | |
| StreamerName = "thejimmydoreshow" | |
| SaveDir = "C:/Temp/olive-streams" | |
| Parser = "streamlink" |
| #!/bin/sh | |
| # Version: 1.1.5 | |
| # Last Edit: 2025-10-17 13:24:12 +1100 | |
| # Tested on the following stable Linux-based OSs: Arch, Fedora, Fedora Silverblue, Linux Mint, Manjaro, POP_OS! and Ubuntu | |
| # Checks if apt-get is available (Ubuntu, Debian and similar) | |
| if [ -x "$(command -v apt-get)" ]; then | |
| echo 'apt-get package manager detected - running update process..' >&2 | |
| if [ -x "$(command -v timeshift)" ]; then |
| #!/bin/sh | |
| sudo eopkg up && echo ✅ UPDATES COMPLETED |
| #!/bin/sh | |
| sudo pacman -Syu -y && echo ✅ UPDATES COMPLETED |