Skip to content

Instantly share code, notes, and snippets.

View TiZ-HugLife's full-sized avatar

Trent McPheron TiZ-HugLife

View GitHub Profile
@TiZ-HugLife
TiZ-HugLife / scvi-cas-ellie.md
Last active April 24, 2021 16:50
SCVI CaS: Ellie Luisante Recipe

hao 2 make ellei in gaem x calibur

except EVEN CUTER

Defined Colors

Her main style is themed around three central colors and three accent colors:

  • Main: 16,33,9: This is Ellie's main thematic color.
  • Skirt: 19,0,0 stickers, 31,0,0 regular: The off-white compensates jank sticker blending.
  • Accent: 4,33,7: This is mainly used in patterns.
@TiZ-HugLife
TiZ-HugLife / lightdm-bg
Created March 29, 2015 21:37
Script that blurs xfce's current wallpaper and sets it as lightdm's background.
#!/bin/bash
[[ "$(whoami)" != "root" ]] && exit 1
[[ "$(hostname)" = "TiZLappy" ]] && RES="1600x900" && MON="eDP1"
[[ "$(hostname)" = "NH116" ]] && RES="1680x1050" && MON="1"
[[ -z "$RES" ]] && exit 1
WALL="$(xmlstarlet sel -t -v "//property[@name='monitor$MON']/property[@name='workspace0']/property[@name='last-image']/@value" /home/trent/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml)"
gm convert "$WALL" -resize $RES^ -gravity center -extent $RES -blur 0x5 /var/lib/lightdm/background.png
@TiZ-HugLife
TiZ-HugLife / conky-toggle
Created March 27, 2015 19:29
conky-toggle
#!/bin/bash
if [[ "$(cat /tmp/.conkystate)" = "above" ]]; then
STATE="below"
REMOVE="above"
else
STATE="above"
REMOVE="below"
fi
echo $STATE > /tmp/.conkystate
@TiZ-HugLife
TiZ-HugLife / compton.conf
Last active August 29, 2015 14:15
compton.conf
# Core options
backend = "glx";
paint-on-overlay = true;
glx-no-stencil = true;
glx-no-rebind-pixmap = true;
glx-use-copysubbuffermesa = false;
vsync = "opengl";
dbus = true;
detect-client-opacity = true;
xrender-sync-fence = true;
@TiZ-HugLife
TiZ-HugLife / conkyrc
Last active August 29, 2015 14:15
Quod Libet conky
update_interval 1.0
update_interval_on_battery 5.0
total_run_times 0
alignment br
gap_x 83
gap_y 15
use_xft yes
override_utf8_locale yes
@TiZ-HugLife
TiZ-HugLife / conkyrc
Last active October 31, 2022 12:13
todo.txt conky
update_interval 1.0
update_interval_on_battery 5.0
total_run_times 0
alignment bl
gap_x 2
gap_y 2
use_xft yes
override_utf8_locale yes
@TiZ-HugLife
TiZ-HugLife / bspwmrc
Created February 11, 2015 04:21
bspwm config files
#! /bin/sh
bspc config top_padding 24
bspc config bottom_padding 0
bspc config left_padding 0
bspc config right_padding 0
bspc config border_width 3
bspc config window_gap 16
# Borders and gaps
@TiZ-HugLife
TiZ-HugLife / .gtkrc-2.0
Created February 11, 2015 04:07
gtkrc files
gtk-enable-mnemonics = 0
gtk-auto-mnemonics = 1
gtk-icon-sizes = "gtk-large-toolbar=22,22:gtk-small-toolbar=16,16"
# I like small scrollbars.
style "size-default" {
GtkScrollbar::slider-width = 8
}
class "GtkWidget" style "size-default"