diff --git a/.Xresources b/.Xresources new file mode 100644 index 0000000..5fcba2f --- /dev/null +++ b/.Xresources @@ -0,0 +1,28 @@ +URxvt*termName: rxvt +URxvt*modifier: alt + +URxvt*scrollBar: false +URxvt*saveLines: 5000 + +URxvt.font: xft:DejaVuSansMono:pixelsize=15 +URxvt.boldfont: xft:DejaVuSandMono-Bold:pixelsize=15 + +Xft.dpi: 96 +Xft.antialias: true +Xft.rgba: rgb +Xft.hinting: true +Xft.hintstyle: hintfull + +URxvt*.shading: 20 +URxvt*depth: 32 +URxvt*borderless: 1 +URxvt*blr: 5 + +URxvt*perl-ext: default,matcher +URxvt*matcher.button: 1 +URxvt*urlLauncher: chromium + +!#include ".Xresources.d/solarized" +!#include ".Xresources.d/base16" +#include ".Xresources.d/mason" + diff --git a/.compton.conf b/.compton.conf new file mode 100644 index 0000000..363b6b4 --- /dev/null +++ b/.compton.conf @@ -0,0 +1,17 @@ +backend = "glx" + +shadow = false +fading = true + +sw-opti = true + +inactive-dim = 0.65 + +mark-wmwin-focused = true +mark-ovredir-focused = true + +# Window type settings +wintypes: +{ + tooltip = { fade = true; shadow = false; opacity = 0.75; }; +}; diff --git a/.xinitrc b/.xinitrc new file mode 100644 index 0000000..7f4f3e5 --- /dev/null +++ b/.xinitrc @@ -0,0 +1,18 @@ +#!/bin/bash + +# Disable screen turnoff +xset -dpms +xset s off + +# Composite manager +compton -d :0.0 -b +compton -d :0.1 -b + +# Background +xrdb ~/.Xresources +nitrogen --restore + +# Window manager +DISPLAY=:0.1 i3 & +exec i3 +