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
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="font" > | |
<edit mode="assign" name="autohint" > | |
<bool>false</bool> | |
</edit> | |
</match> | |
<match target="font" > | |
<edit mode="assign" name="rgba" > |
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
#!/bin/bash | |
# This is a script that will install a minimal GNOME on a minimal Fedora Everything install | |
# This script was made for Fedora 38 | |
# 1. Get the Fedora Everything ISO: https://alt.fedoraproject.org/ | |
# 2. When installing select "Minimal install" where you select software. | |
# Install curl to download and run this script trough that, or just copy paste the lines | |
# Let's make dnf a little bit faster first |
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
// My Firefox config | |
// PREF: Disable battery API (Firefox < 52) | |
user_pref("dom.battery.enabled", false); | |
// Don't close window with last tab | |
user_pref("browser.tabs.closeWindowWithLastTab", false); | |
// Because I don't use sync | |
user_pref("identity.fxaccounts.enabled", false); |
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
#!/bin/sh | |
# Firefox stand-alone install script | |
# This script will download and install the latest Firefox stable tar and create a desktop file for it. | |
# The Firefox stand-alone binary auto-updates just like on Windows, so no repository needed. | |
# Change the 2 variables below to match your preference. | |
# Change to where you want Firefox installed. ~/.local/bin is the default. |
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
#!/bin/sh | |
# Remove snaps completely from Ubuntu | |
# Tested on Ubuntu 22.04 | |
# WARNING: This script will remove ALL snap applications. (Includning Firefox and the Software store). | |
# Make backups of your configurations, bookmarks, etc. You should also make sure to have replacements | |
# ready for software that you use. (Like Firefox for example.) | |
# Lists all installed snap applications and then uninstalls them. |
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
// ==UserScript== | |
// @name Youtube shorts redirect | |
// @namespace ViolentMonkey Scripts | |
// @version 0.3 | |
// @match *://*.youtube.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
(function() { |
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
#!/bin/bash | |
# A simple script to set a random wallpaper in GNOME | |
# Add the script to ~/.bash_profile or ~/.profile to run it at each login | |
# Change to your wallpaper location | |
DIR="$HOME/.local/share/backgrounds" | |
PIC=$(ls $DIR/* | shuf -n1) |
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
:root { | |
/* Adjust the tab height to your liking */ | |
--tab-min-height: 30px !important; | |
--arrowpanel-menuitem-padding: 4px 8px !important; | |
} | |
#tabbrowser-tabs { | |
--user-tab-rounding: 2px; | |
} |
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
// ==UserScript== | |
// @name YouTube - Stop Channel Autoplay | |
// @namespace Violentmonkey Scripts | |
// @match https://www.youtube.com/* | |
// @grant none | |
// @version 1.0 | |
// @author https://github.com/lassekongo83 | |
// @description Stops channels you're not subscribed to from autoplaying the channel trailer | |
// ==/UserScript== |
NewerOlder