dotfiles

Configuration for the software I use.
git clone https://git.sr.ht/~jbauer/dotfiles
Log | Files | Refs | README | LICENSE

commit 06b6cb1a951a9bd188dc9fb78fe0d68e79fc1fd1
parent b0dc412c90f508955de090e3d208bcd0f6a81357
Author: Jake Bauer <jbauer@paritybit.ca>
Date:   Wed,  8 Mar 2023 21:19:25 -0500

Remove Xresources dark theme

Dark themes are dead to me.

Diffstat:
R.Xresources-light -> .Xresources | 0
D.Xresources-dark | 47-----------------------------------------------
Msetup.sh | 11-----------
3 files changed, 0 insertions(+), 58 deletions(-)

diff --git a/.Xresources-light b/.Xresources diff --git a/.Xresources-dark b/.Xresources-dark @@ -1,47 +0,0 @@ -#ifdef HIDPI -Xcursor.size: 48 -*.font: xft:IBM Plex Mono:size=18,xft:noto emoji:size=18 -xft.dpi: 164 -*.internalBorder: 28 -#else -*.font: xft:IBM Plex Mono:size=10,xft:noto emoji:size=10 -*.internalBorder: 12 -#endif - -Xcursor.theme: Paper -*.termName: xterm-256color -*.loginShell: true -*.scrollTtyOutput: false -*.scrollBar: false -*.saveLines: 20000 -*.selectToClipboard: true -*.trimSelection: true - -! special -*.foreground: #DDDDDD -*.background: #111111 -*.cursorColor: #DDDDDD -! black -*.color0: #121212 -*.color8: #454545 -! red -*.color1: #994444 -*.color9: #CC7777 -! green -*.color2: #449944 -*.color10: #77CC77 -! yellow -*.color3: #999444 -*.color11: #CCC777 -! blue -*.color4: #336699 -*.color12: #6699CC -! magenta -*.color5: #994499 -*.color13: #CC77CC -! cyan -*.color6: #449999 -*.color14: #77CCCC -! white -*.color7: #DDDDDD -*.color15: #FFFFFF diff --git a/setup.sh b/setup.sh @@ -33,17 +33,6 @@ done doas cp xenodm.Xresources /etc/X11/xenodm/Xresources doas cp xenodm.Xsetup_0 /etc/X11/xenodm/Xsetup_0 -# Light or dark theme? -echo "Light or dark theme (light/dark) [light]: " -read theme -if [ "$theme" = "dark" ]; then - echo "Selected: dark" - ln -s ~/.Xresources-dark ~/.Xresources -else - echo "Selected: light" - ln -s ~/.Xresources-light ~/.Xresources -fi - # Install packages if [ ! -x "$(command -v pkg_add)" ]; then echo "Looks like this isn't an OpenBSD machine; not auto-installing packages."