Updated Xresources and xinit
This commit is contained in:
parent
86c5b42d67
commit
1872ea63f8
2 changed files with 29 additions and 18 deletions
14
.Xresources
14
.Xresources
|
@ -1,11 +1,11 @@
|
||||||
! __ __
|
! _ _ ____ ____ ____ ____ _ _ ____ ____ ____ ____
|
||||||
! \ \/ /_ _ ___ ___ ___ _ _ _ _ __ ___ ___
|
! \/ |__/ |___ [__ | | | | |__/ | |___ [__
|
||||||
! _ > <| '_/ -_|_-</ _ \ || | '_/ _/ -_|_-<
|
! ._/\_ | \ |___ ___] |__| |__| | \ |___ |___ ___]
|
||||||
! (_)_/\_\_| \___/__/\___/\_,_|_| \__\___/__/
|
|
||||||
|
|
||||||
#include ".cache/wal/colors.Xresources"
|
#include ".cache/wal/colors.Xresources"
|
||||||
|
|
||||||
URxvt.font: xft:scientifica:size=12
|
URxvt.font: xft:scientifica:size=12
|
||||||
|
URxvt.letterSpace: 1
|
||||||
URxvt.scrollBar: False
|
URxvt.scrollBar: False
|
||||||
URxvt.internalBorder: 25
|
URxvt.internalBorder: 25
|
||||||
URxvt.perl-ext-common: default,matcher
|
URxvt.perl-ext-common: default,matcher
|
||||||
|
@ -13,9 +13,9 @@ URxvt.url-launcher: surf
|
||||||
URxvt.matcher.button: 1
|
URxvt.matcher.button: 1
|
||||||
|
|
||||||
twobwm.enable_compton: true
|
twobwm.enable_compton: true
|
||||||
twobwm.border_width: 8
|
twobwm.border_width: 12
|
||||||
twobwm.outer_border: 5
|
twobwm.outer_border: 8
|
||||||
twobwm.inverted_colors: false
|
twobwm.inverted_colors: false
|
||||||
|
|
||||||
rofi.font: scientifica 12
|
rofi.font: scientifica 12
|
||||||
rofi.theme: colors-rofi-dark
|
rofi.theme: ~/.cache/wal/colors-rofi-dark.rasi
|
||||||
|
|
29
.xinitrc
29
.xinitrc
|
@ -1,17 +1,22 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# __ _(_)_ _ (_) |_ _ _ __
|
# __ __ __ __ __ __ ______ ______
|
||||||
# _\ \ / | ' \| | _| '_/ _|
|
# /\_\_\_\ /\ \ /\ "-.\ \ /\ \ /\ == \ /\ ___\
|
||||||
#(_)_\_\_|_||_|_|\__|_| \__|
|
# \/_/\_\/_ \ \ \ \ \ \-. \ \ \ \ \ \ __< \ \ \____
|
||||||
|
# /\_\/\_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \_\ \ \_____\
|
||||||
|
# \/_/\/_/ \/_/ \/_/ \/_/ \/_/ \/_/ /_/ \/_____/
|
||||||
|
|
||||||
|
# Turn off that damn bell!
|
||||||
|
xset -b
|
||||||
|
|
||||||
userresources=$HOME/.Xresources
|
userresources=$HOME/.Xresources
|
||||||
usermodmap=$HOME/.Xmodmap
|
usermodmap=$HOME/.Xmodmap
|
||||||
sysresources=/etc/X11/xinit/.Xresources
|
sysresources=/etc/X11/xinit/.Xresources
|
||||||
sysmodmap=/etc/X11/xinit/.Xmodmap
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
||||||
|
|
||||||
wallpaper=$(shuf -n1 -e $HOME/Wallpapers/*)
|
# pshuf and wal.sh can found in github.com/gigavinyl/.scripts
|
||||||
wal -b 0f0f0f -i $wallpaper -n
|
wallpaper=$(find "$HOME"/Wallpapers/* | pshuf | head -n1)
|
||||||
$HOME/.scripts/wal.sh
|
wal -b 0f0f0f -i "$wallpaper" -n --backend colorz
|
||||||
|
wal.sh
|
||||||
|
|
||||||
# merge in defaults and keymaps
|
# merge in defaults and keymaps
|
||||||
|
|
||||||
|
@ -31,6 +36,13 @@ if [ -f "$usermodmap" ]; then
|
||||||
xmodmap "$usermodmap"
|
xmodmap "$usermodmap"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# UTF8
|
||||||
|
setxkbmap -option compose:ralt
|
||||||
|
|
||||||
|
# Get fonts all setup
|
||||||
|
xset +fp "$HOME/.fonts"
|
||||||
|
xset fp rehash
|
||||||
|
|
||||||
# start some nice programs
|
# start some nice programs
|
||||||
|
|
||||||
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||||||
|
@ -40,10 +52,9 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||||||
unset f
|
unset f
|
||||||
fi
|
fi
|
||||||
|
|
||||||
feh --bg-fill $wallpaper
|
feh --bg-fill "$wallpaper"
|
||||||
|
|
||||||
compton &
|
compton &
|
||||||
sxhkd &
|
sxhkd &
|
||||||
urxvtd &
|
urxvtd &
|
||||||
2bwm &
|
exec 2bwm
|
||||||
exec xwait
|
|
||||||
|
|
Loading…
Reference in a new issue