Skip to content

Instantly share code, notes, and snippets.

@lesliesrussell
lesliesrussell / 1_intro.txt
Created March 26, 2019 01:21 — forked from jgillman/1_intro.txt
i3 config from /u/twodogsdave
If this is hard to read in your browser, just copy the text and paste it into your editor.
Turn 'line wrapping' on. :)
This is a 'how to' for anyone interested in a i3 setup and also for anyone currently
using i3 and wants to tweak there setup a little more. I am constantly updating my
i3 config with cool 'stuff.' I hope you enjoy reading and if you use some of the code,
great! I don't know everything and am still learning, too. :)
This is my system settings for i3. Specifically, I use [Manjaro i3](https://forum.manjaro.org/index.php?topic=28022.0).
@lesliesrussell
lesliesrussell / wallpaper.sh
Last active April 4, 2019 14:07 — forked from sewera/wallpaper.sh
A simple bash script using feh and date to enjoy a different background every day!
#!/bin/bash
NIGHT_PAPERS=~/Pictures/wallpaper/blue/*
DAY_PAPERS=~/Pictures/wallpaper/amber/*
if [ $(( $(date --date=now +10#%H) )) -gt 6 ] && [ $(( $(date --date=now +10#%H) )) -lt 19 ]
then
WALLPAPER_DIR=$DAY_PAPERS
else
WALLPAPER_DIR=$NIGHT_PAPERS