Skip to content

Instantly share code, notes, and snippets.

View AnalogFeelings's full-sized avatar
💊
slowly picking up pace

Nora AnalogFeelings

💊
slowly picking up pace
View GitHub Profile
@AnalogFeelings
AnalogFeelings / userChrome.css
Last active September 18, 2022 17:50
User stylesheet to bring back the old titlebars in firefox.
/*================================================RECREATION OF THE OLD FIREFOX TITLEBAR================================================*/
/*- Enabling user stylesheets: https://www.reddit.com/r/FirefoxCSS/comments/73dvty/tutorial_how_to_create_and_livedebug_userchromecss/ */
:root {
--tab-min-height: 26px !important;
}
:root #tabbrowser-tabs {
--tab-min-height: 26px !important;
}
@AnalogFeelings
AnalogFeelings / BuildSamm.sh
Last active November 15, 2023 11:30
Tiny build script for Samm-Bot. Used in my Raspberry Pi that I'm hosting it in.
#!/bin/bash
#Flags
configuration="Debug"
execute=false
rebuild=false
path="$HOME/Projects/SammBot"
#Script name.
script_name="$(basename $0)"
@AnalogFeelings
AnalogFeelings / friendlyos.cs
Created October 19, 2021 15:57
(dotnetcore) Friendly OS Name
public string FriendlyOSName()
{
string osName = string.Empty;
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
Version version = Environment.OSVersion.Version;
switch (version.Major)
{