commit 1cb97c855d610f17f5dcc7506179c2b913bf9e9b Author: justmidi Date: Mon Sep 27 20:55:53 2021 +0000 Initial commit diff --git a/Xauthority b/Xauthority new file mode 100755 index 0000000..e69de29 diff --git a/oldXResourceColors b/oldXResourceColors new file mode 100644 index 0000000..520bd42 --- /dev/null +++ b/oldXResourceColors @@ -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 diff --git a/xinitrc b/xinitrc new file mode 100755 index 0000000..92f7b93 --- /dev/null +++ b/xinitrc @@ -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 diff --git a/xresources b/xresources new file mode 100755 index 0000000..670ac51 --- /dev/null +++ b/xresources @@ -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 diff --git a/xserverrc b/xserverrc new file mode 100755 index 0000000..6b57eeb --- /dev/null +++ b/xserverrc @@ -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