Skip to content

Instantly share code, notes, and snippets.

@LeReverandNox
LeReverandNox / .chunkwmrc
Created January 27, 2018 15:43
Chunkwm config
#!/bin/bash
#
# NOTE: specify the desired level of logging.
#
# - none, debug, warn, error
#
chunkc core::log_level error
provider "aws" {
region = "eu-west-1"
profile = "perso"
}
variable "web_port" {
description = "Port for the web server"
default = "8080"
}
version: '2'
services:
airsonic:
restart: unless-stopped
image: binhex/arch-airsonic
volumes:
- $DATA_VOLUME:/config:rw
- $MUSIC_VOLUME:/media:rw
- /etc/localtime:/etc/localtime:ro
@LeReverandNox
LeReverandNox / .Xdefaults
Last active May 13, 2022 20:11
i3 config
! Font
URxvt.font: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:hinting=true
URxvt.boldFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:bold:hinting=true
URxvt.italicFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:italic:autohint=true:hinting=true
URxvt.bolditalicFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:bold:italic:autohint=true:hinting=true
URxvt.letterSpace: -1
! Scrollbar
URxvt*scrollBar: false
@LeReverandNox
LeReverandNox / .gitignore
Last active May 30, 2017 11:02
A small scraping script to download wallpapers :p
node_modules
@LeReverandNox
LeReverandNox / bwactle.js
Created May 16, 2017 19:41
Bwactle socket test
let query = `login=${process.argv[2]}&pwd=${process.argv[3]}`;
var socket = require('socket.io-client')('http://wac.epitech.eu:1337', {query});
socket.on('connect', (msg) => {
console.log('Now connected');
console.log(msg);
socket.emit('toto', 'tata');
socket.emit('move', 'up');