Skip to content

Instantly share code, notes, and snippets.

View Bear-03's full-sized avatar
🐻

Bear_03 Bear-03

🐻
View GitHub Profile
@Bear-03
Bear-03 / Makefile.toml
Last active July 4, 2022 23:36
vosk-rs setup files
[config]
default_to_workspace = false
[config.modify_core_tasks]
private = true
namespace = "core"
[env]
RUST_BACKTRACE = 0
@Bear-03
Bear-03 / ServerColumns_NotifMarkerFix.css
Last active January 14, 2022 22:00
A modification for the ServerColumns theme for BetterDiscord that changes the notification markers for guilds so they don't look "cut off"
/* Check out the ServerColumns theme: https://betterdiscord.app/theme/ServerColumns */
/* Notif marker */
.item-2LIpTv {
--width: 6px;
--right-gap: 0px;
width: var(--width);
right: var(--right-gap);
margin-left: 0;
@Bear-03
Bear-03 / sort_packages_by_size.sh
Created July 25, 2021 16:00
Command that litst all installed linux packages, sorted by installed size.
#!/bin/bash
dpkg-query -W --showformat='${Installed-Size;10}\t${Package}\n' | sort -k 1,1n