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
| /* ==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 |
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
| # .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" |
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/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 |
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
| ' 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") |
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
| /* ==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 |
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
| // ==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== |
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
| # 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 |
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
| # 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)' && \ |
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
| ### 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 |
NewerOlder