Skip to content

Instantly share code, notes, and snippets.

View milovangudelj's full-sized avatar
Wut?

Milo milovangudelj

Wut?
View GitHub Profile
@milovangudelj
milovangudelj / .bashrc
Last active October 3, 2025 20:40
Shell config
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
@milovangudelj
milovangudelj / tray
Last active March 30, 2022 01:01
A script to show/hide any window given it's name
#!/bin/bash
version=1.0.0
name=$1
mode=windowunmap
# Print help message
function help()
{
echo "Tray - v$version"