This file contains hidden or 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
{ | |
"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"], |
This file contains hidden or 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 | |
export rpipe=$(mktemp -u --tmpdir run.XXXXXXXX) | |
mkfifo "$rpipe" | |
trap "rm -f $rpipe" EXIT | |
cmd=(yad | |
--form | |
--field "Open::T" |
This file contains hidden or 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
#!/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. |
This file contains hidden or 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 | |
# 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" |