From 82df70eff06e7b44ee84283070d7f801f7fc1d92 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sat, 6 Nov 2021 20:25:45 -0400 Subject: initial commit --- .config/x11/xinitrc | 24 +++++++++++++++++++ .config/x11/xresources | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 .config/x11/xinitrc create mode 100644 .config/x11/xresources (limited to '.config/x11') diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc new file mode 100644 index 0000000..25b2fab --- /dev/null +++ b/.config/x11/xinitrc @@ -0,0 +1,24 @@ +# disable screensaver +xset s off +# disable power saving +xset -dpms +# set refresh rate +xrandr -r 144 +# set background +bgscript +# remap keys +kbremaps +# load Xresources +xrdb ~/.config/x11/xresources +# start compositor +picom --config ~/.config/picom/picom.conf & +# start notification daemon +dunst & +# start unclutter +unclutter & +# start keybind daemon +sxhkd & +# start status bar +dwmblocks & +# start window manager (and keep starting when shutdown) +dwm diff --git a/.config/x11/xresources b/.config/x11/xresources new file mode 100644 index 0000000..33df06e --- /dev/null +++ b/.config/x11/xresources @@ -0,0 +1,63 @@ +URxvt.scrollBar: false +*.font: xft:monospace:size=12 + +! Brogrammer +*.foreground: #d6dbe5 +*.background: #131313 +*.color0: #1f1f1f +*.color1: #f81118 +*.color2: #2dc55e +*.color3: #ecba0f +*.color4: #2a84d2 +*.color5: #4e5ab7 +*.color6: #1081d6 +*.color7: #d6dbe5 +*.color8: #d6dbe5 +*.color9: #de352e +*.color10: #1dd361 +*.color11: #f3bd09 +*.color12: #1081d6 +*.color13: #5350b9 +*.color14: #0f7ddb +*.color15: #ffffff +*.colorBD: #d6dbe5 + +! Dracula +!*.foreground: #F8F8F2 +!*.background: #282A36 +!*.color0: #000000 +!*.color8: #4D4D4D +!*.color1: #FF5555 +!*.color9: #FF6E67 +!*.color2: #50FA7B +!*.color10: #5AF78E +!*.color3: #F1FA8C +!*.color11: #F4F99D +!*.color4: #BD93F9 +!*.color12: #CAA9FA +!*.color5: #FF79C6 +!*.color13: #FF92D0 +!*.color6: #8BE9FD +!*.color14: #9AEDFE +!*.color7: #BFBFBF +!*.color15: #E6E6E6 + +! Gruvbox +!*.color0: #1d2021 +!*.color1: #cc241d +!*.color2: #98971a +!*.color3: #d79921 +!*.color4: #458588 +!*.color5: #b16286 +!*.color6: #689d6a +!*.color7: #a89984 +!*.color8: #928374 +!*.color9: #fb4934 +!*.color10: #b8bb26 +!*.color11: #fabd2f +!*.color12: #83a598 +!*.color13: #d3869b +!*.color14: #8ec07c +!*.color15: #ebdbb2 +!*.color256: #1d2021 +!*.color257: #ebdbb2 -- cgit v1.2.3