Initial commit
This commit is contained in:
commit
1cb97c855d
5 changed files with 103 additions and 0 deletions
0
Xauthority
Executable file
0
Xauthority
Executable file
31
oldXResourceColors
Normal file
31
oldXResourceColors
Normal file
|
@ -0,0 +1,31 @@
|
|||
!! black
|
||||
!*color0: #1e222a
|
||||
!*color8: #e06c75 !red
|
||||
!
|
||||
!! red
|
||||
!*color1: #353b45
|
||||
!*color9: #d19a66 !darkyellow
|
||||
!
|
||||
!! green
|
||||
!*color2: #3e4451
|
||||
!*color10: #e5c07b !yellow
|
||||
!
|
||||
!! yellow
|
||||
!*color3: #545862
|
||||
!*color11: #98c379 !green
|
||||
!
|
||||
!! blue
|
||||
!*color4: #565c64
|
||||
!*color12: #56b6c2 !cyan
|
||||
!
|
||||
!! magenta
|
||||
!*color5: #abb2bf
|
||||
!*color13: #61afef !blue
|
||||
!
|
||||
!! cyan
|
||||
!*color6: #b6bdca
|
||||
!*color14: #c678dd !magenta
|
||||
!
|
||||
!! white
|
||||
!*color7: #c8ccd4 !brightwhite
|
||||
!*color15: #be5046 !brightred
|
25
xinitrc
Executable file
25
xinitrc
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/env sh
|
||||
#
|
||||
#if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
||||
# for f in /etc/X11/xinit/xinitrc.d/*; do
|
||||
# [ -x "$f" ] && . "$f"
|
||||
# done
|
||||
# unset f
|
||||
#fi
|
||||
|
||||
# Compositor
|
||||
picom &
|
||||
|
||||
# Wallpaper
|
||||
#wal -i ~/Media/Images/wallpapers/Cityscapes
|
||||
wal -i "$(< "${HOME}/.cache/wal/wal")"
|
||||
|
||||
|
||||
# Window Manager
|
||||
while true; do
|
||||
#dwmstatus 2>&1 >/dev/null &
|
||||
dwmblocks &
|
||||
dwm > /dev/null 2>&1
|
||||
done
|
||||
|
||||
exec dwm
|
41
xresources
Executable file
41
xresources
Executable file
|
@ -0,0 +1,41 @@
|
|||
! Xft settings
|
||||
Xft.antialias: true
|
||||
|
||||
! Base16 OneDark
|
||||
! Scheme: Lalit Magant
|
||||
|
||||
*foreground: #c8ccd4
|
||||
*background: #1e222a
|
||||
*cursorColor: #abb2bf
|
||||
|
||||
! black
|
||||
*color0: #282c34
|
||||
*color8: #545862
|
||||
|
||||
! red
|
||||
*color1: #be5046
|
||||
*color9: #e06c75
|
||||
|
||||
! green
|
||||
*color2: #98c379
|
||||
*color10: #98c379
|
||||
|
||||
! yellow
|
||||
*color3: #d19a66
|
||||
*color11: #e5c07b
|
||||
|
||||
! blue
|
||||
*color4: #61afef
|
||||
*color12: #61afef
|
||||
|
||||
! magenta
|
||||
*color5: #c678dd
|
||||
*color13: #c678dd
|
||||
|
||||
! cyan
|
||||
*color6: #56b6c2
|
||||
*color14: #56b6c2
|
||||
|
||||
! white
|
||||
*color7: #abb2bf
|
||||
*color15: #c8ccd4
|
6
xserverrc
Executable file
6
xserverrc
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
if [ -z "$XDG_VTNR" ]; then
|
||||
exec /usr/bin/X -nolisten tcp "$@"
|
||||
else
|
||||
exec /usr/bin/X -nolisten tcp "$@" vt$XDG_VTNR
|
||||
fi
|
Loading…
Reference in a new issue