Skip to content

Instantly share code, notes, and snippets.

View cwillsey06's full-sized avatar
🪫

Coltrane Willsey cwillsey06

🪫
  • Albuquerque, New Mexico
  • 01:33 (UTC -07:00)
View GitHub Profile
@cwillsey06
cwillsey06 / more-space-outlook.user.css
Last active October 4, 2023 05:08
more space outlook
/* ==UserStyle==
@name more space outlook
@namespace github.com/cwillsey06
@version 1.0.0
@description sex
@author cwillsey06
@preprocessor uso
@var text header-height "header height when minimized" 5px
@var text header-opacity "header opacity when minimized" 0
@var text sidebar-width "sidebar width when minimized" 5px
@cwillsey06
cwillsey06 / .bashrc
Created September 16, 2023 06:01
new omb config
# .bashrc
# 2023.09.15 [23:55]
## oh-my-bash configuration
export OSH="$HOME/.oh-my-bash"
OSH_THEME='barebones'
plugins=(git)
source "$OSH/oh-my-bash.sh"
@cwillsey06
cwillsey06 / pull-app.sh
Created September 14, 2023 15:29
Pull current roblox dmg, then extract the app.
#!/bin/sh
# obtain the current client version string
VERSION="$(curl -fLs 'https://clientsettings.roblox.com/v2/client-version/MacPlayer' | grep -Eho 'version-.{16}')"
# test VERSION var, if zero, exit with a log
[ -z "$VERSION" ] \
&& printf '%s\n' 'Unable to pull current version string. The dependent service may be down, or your proxy denies connections to it.' \
&& exit 1
@cwillsey06
cwillsey06 / BingWallpaper.vbs
Last active July 16, 2023 01:25
Public-domain Bing wallpaper fetcher & setter
' This is free and unencumbered software released into the public domain.
'
' Anyone is free to copy, modify, publish, use, compile, sell, or
' distribute this software, either in source code form or as a compiled
' binary, for any purpose, commercial or non-commercial, and by any
' means.
Option Explicit
Dim wShell: Set wShell = CreateObject("WScript.Shell")
@cwillsey06
cwillsey06 / minimize-codepen-header.user.css
Last active June 17, 2023 06:17
Minimize Copepen Header
/* ==UserStyle==
@name Minimize Copepen Header
@namespace github.com/openstyles/stylus
@version 1.0.0
@description minimizes codepen header-bar (supposedly a pro feature...)
@author cwillsey06
@preprocessor uso
@var text panel-height "header height when minimized" 5px
@var text panel-opacity "header opacity when minimized" 0
@var text animation-dur "header animation duration" 500ms
@cwillsey06
cwillsey06 / hide-blocked-messages.user.js
Last active March 13, 2023 15:12
Discord — hide blocked messages and their "spoiler blocks"
// ==UserScript==
// @name Hide blocked messages
// @namespace https://gist.github.com/cwillsey06
// @version 1.0
// @description Hide blocked messages and their "spoiler blocks"
// @author cwillsey06
// @license Unlicense
// @run-at document-start
// @match *://discord.com/channels/*
// ==/UserScript==
@cwillsey06
cwillsey06 / discordapp-responsive-sidebars.user.css
Last active March 7, 2023 00:21
Minimize Discord sidebars when viewport is too small
/* ==UserStyle==
@name Responsive sidebars
@namespace github.com/cwillsey06
@version 1.0.0
@description minimizes sidebars when viewport is too small
@author cwillsey06
@preprocessor uso
@var text viewport-size "minimum viewport size" 1024px
@var text servers-width "width of servers panel when minimized" 5px
@var text channel-width "width of channel panel when minimized" 5px
@cwillsey06
cwillsey06 / Dockerfile
Created January 1, 2023 02:40
build swww-git
# syntax=docker/dockerfile:1.3
FROM fedora:latest AS build
RUN dnf install -y git-core rustc cargo libxkbcommon-*
RUN dnf clean all -y
WORKDIR /tmp
RUN git clone --recurse-submodules https://github.com/Horus645/swww.git /tmp/swww
WORKDIR /tmp/swww
@cwillsey06
cwillsey06 / Dockerfile
Created January 1, 2023 02:19
build hyprland-waybar-git
# syntax=docker/dockerfile:1.3
FROM fedora:latest AS build
RUN dnf install -y @c-development git-core meson scdoc 'pkgconfig(date)' \
'pkgconfig(dbusmenu-gtk3-0.4)' 'pkgconfig(fmt)' 'pkgconfig(gdk-pixbuf-2.0)' \
'pkgconfig(gio-unix-2.0)' 'pkgconfig(gtk-layer-shell-0)' 'pkgconfig(gtkmm-3.0)' \
'pkgconfig(jsoncpp)' 'pkgconfig(libinput)' 'pkgconfig(libmpdclient)' \
'pkgconfig(libnl-3.0)' 'pkgconfig(libnl-genl-3.0)' 'pkgconfig(libpulse)' \
'pkgconfig(libudev)' 'pkgconfig(pugixml)' 'pkgconfig(sigc++-2.0)' 'pkgconfig(spdlog)' \
'pkgconfig(wayland-client)' 'pkgconfig(wayland-cursor)' 'pkgconfig(wayland-protocols)' 'pkgconfig(xkbregistry)' && \
@cwillsey06
cwillsey06 / .zshrc
Last active April 1, 2023 21:57
backup
### zshrc
### cwillsey
### 2022-11-1 [14:00]
### oh-my-zsh configuration
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="barebones" # set by `omz`
plugins=(git)
source $ZSH/oh-my-zsh.sh