Skip to content

Instantly share code, notes, and snippets.

View AndreBClark's full-sized avatar

Andre AndreBClark

View GitHub Profile
@AndreBClark
AndreBClark / package.json
Created January 23, 2022 04:59
root yarn package config
{
"name": "lunarium",
"packageManager": "yarn@3.1.1",
"workspaces": [
"frontend",
"studio"
],
"devDependencies": {
"eslint-config-prettier": "^8.3.0",
"husky": ">=6",
@AndreBClark
AndreBClark / netlify.toml
Created January 23, 2022 04:50
netlify build settings for lunarium site
[context.main]
base = "/"
command = "yarn workspace frontend build"
publish = "frontend/dist"
workspace = "frontend"
[[plugins]]
package = "netlify-plugin-subfont"
[plugins.inputs]
inlineCss = true
inlineFonts = true
{"game":"stellaris","name":"ironman","mods":[{"displayName":"*Remastered Human Portraits","enabled":true,"position":0,"steamId":"1591647610"},{"displayName":"ASB Ironman","enabled":true,"position":1,"steamId":"1880071041"},{"displayName":"Backgrounds+ Combined","enabled":true,"position":2,"steamId":"1420427657"},{"displayName":"Backgrounds+ Vanilla Add-on","enabled":true,"position":3,"steamId":"1545833973"},{"displayName":"Beautiful Universe v2.0","enabled":true,"position":4,"steamId":"697938908"},{"displayName":"Better Ecumenopoli","enabled":true,"position":5,"steamId":"2503331607"},{"displayName":"Better Galaxy Icon Overview","enabled":true,"position":6,"steamId":"1607355392"},{"displayName":"Clearer System Occupation Icons - ALTERNATIVE 2","enabled":true,"position":7,"steamId":"2461099846"},{"displayName":"Epic Explosions","enabled":true,"position":8,"steamId":"692492543"},{"displayName":"Flags: Emblems & Backgrounds UP-TO-DATE","enabled":true,"position":9,"steamId":"2104538771"},{"displayName":"Human Vari
# vim:ft=zsh ts=2 sw=2 sts=2
#
# Shades of Nord.
# Forked agnoster's Theme - https://gist.github.com/3712874
# A Powerline-inspired theme for ZSH
#
# # README.
#
# In order for this theme to render correctly, you will need a
# [Powerline-patched font](https://gist.github.com/1595572).
#!/bin/bash
# from https://github.com/StevenBlack/hosts
curl https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts > /etc/hosts
@AndreBClark
AndreBClark / gnome-shell-theme.gresource.xml
Created July 8, 2021 05:21 — forked from rajeshksv/gnome-shell-theme.gresource.xml
Template for gnome-shell-theme.gresource.xml
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/org/gnome/shell/theme">
<file>calendar-arrow-left.svg</file>
<file>calendar-arrow-right.svg</file>
<file>calendar-today.svg</file>
<file>checkbox-focused.svg</file>
<file>checkbox-off-focused.svg</file>
<file>checkbox-off.svg</file>
<file>checkbox.svg</file>
@AndreBClark
AndreBClark / .zshrc
Last active November 25, 2021 09:22
zsh config
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
#!/bin/zsh
# install nvm
if [ ! $NVM_DIR ]
then
curl -o- "https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh" | zsh
. $HOME/.zshrc
echo 'installed NVM'
else
#!/bin/bash
USER_PATH=/home/$USER
if [ ! -x /bin/zsh ]
then
sudo apt update
sudo apt install zsh
echo 'ZSH installed!'
else
echo 'zsh already installed, skipping...'