added various X related stuff
This commit is contained in:
parent
ffce5b5875
commit
222d15919d
3 changed files with 63 additions and 0 deletions
28
.Xresources
Normal file
28
.Xresources
Normal file
|
@ -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"
|
||||
|
17
.compton.conf
Normal file
17
.compton.conf
Normal file
|
@ -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; };
|
||||
};
|
18
.xinitrc
Normal file
18
.xinitrc
Normal file
|
@ -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
|
||||
|
Loading…
Add table
Reference in a new issue