Skip to content

Instantly share code, notes, and snippets.

View shateq's full-sized avatar

Simon shateq

View GitHub Profile
@shateq
shateq / dwm-patcher.sh
Last active January 9, 2026 22:56
Suckless DWM patching utility to work with GNU Quilt, contains aliases for Xephyr testing and downloading the patches.
#!/usr/bin/env bash
PATCHFILE="patch.list"
# Sorts files by descending file sizes
sort_by_size() {
ls -S --ignore "series" ./patches > ./patches/series
}
cleanup() {
@shateq
shateq / my-windows-path.md
Created October 30, 2025 12:56
what would you change switching to linux

Software I used to use on Windows

after I roughly started using fedora and my life changed drastically

I'm gonna start a blog, lmao, check it out

Why does one switch to linux from windows? CAUSE IT MAKES SENSE, I don't want to have a computer just to play games, I want to control my "workflow" you Valorant <insert some rank from valorant, idk>, that's what pc's should be for I hope my web camera functions properly with firefox this time, see you again my readers Yo, if you are still here, check out my website where youy can find all about cooking recipes :)) <3 subscrire

import XMonad
import XMonad.Hooks.EwmhDesktops ( ewmh, ewmhFullscreen )
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.StatusBar
import XMonad.Hooks.StatusBar.PP
import XMonad.Hooks.ManageDocks
import XMonad.Layout.NoBorders
@shateq
shateq / configuration.nix
Created July 2, 2025 22:59
My first ever nixOS encounter (went badly)
# Help is available in the configuration.nix(5) man page
{ lib, config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
];
# Bootloader.
@shateq
shateq / sketch.kts
Created November 18, 2022 20:24
Fabric Mod Json
plugins {
id("fabricmod-json") version "1.0.0"
}
fabric {
schemaVersion = 1 //default 1
id = "modid"
version = rootProject.version
environment = ModEnvironment.DEFAULT
@shateq
shateq / .gitignore
Created September 28, 2022 13:55
Kotlin Project Scaffolding including SHADOW PLUGIN!
*~
*.DS_Store
# gradle
.gradle/
build/
out/
classes/
run/