Skip to content

Instantly share code, notes, and snippets.

View ecodz's full-sized avatar
🏳️‍🌈
uwu

E-Codz ecodz

🏳️‍🌈
uwu
View GitHub Profile
@ecodz
ecodz / theme-switcher
Last active July 27, 2023 11:39
Simple XFCE Theme Switcher
#!/bin/bash
# XFCE Theme Switcher
# Created by E-Codz (https://github.com/ecodz)
######## SETTINGS ########
LIGHT_THEME="Mint-Y"
DARK_THEME="Mint-Y-Dark"
WM_LIGHT_THEME="Mint-Y"
#!/usr/bin/env python3
# A simple script to decode the ips file from https://github.com/mat-1/minecraft-scans
#
# Created by E-Codz
#
# Usage:
# python parse.py /path/to/ips -o /path/to/decoded/output
#
# If -o is not defined the output will be printed to stdout.
@ecodz
ecodz / run
Created August 4, 2023 20:50
kinda working windows run dialog for linux, made with yad
#!/bin/bash
export rpipe=$(mktemp -u --tmpdir run.XXXXXXXX)
mkfifo "$rpipe"
trap "rm -f $rpipe" EXIT
cmd=(yad
--form
--field "Open::T"
@ecodz
ecodz / config
Created November 16, 2023 15:26
my very messy waybar
{
"layer": "top", // Waybar at top layer
"position": "top", // Waybar position (top|bottom|left|right)
"height": 30, // Waybar height (to be removed for auto height)
// "width": 1280, // Waybar width
"spacing": 0, // Gaps between modules (4px)
// Choose the order of the modules
"modules-left": ["hyprland/workspaces", "custom/newworkspace", "custom/media", "custom/mediakde", "custom/mediakdevol"],
"modules-center": ["hyprland/window"],
"modules-right": ["pulseaudio", "custom/updates", "network", "cpu", "memory", "clock", "tray"],