From 45d4c398ab28f9c08de931a7170d53790f04a3dd Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Thu, 20 Jan 2022 22:18:00 -0500 Subject: [PATCH] Added and changed to zenburn theme globally --- Xresources | 76 ------------------------------------------------------ install.sh | 10 ++++--- 2 files changed, 7 insertions(+), 79 deletions(-) delete mode 100644 Xresources diff --git a/Xresources b/Xresources deleted file mode 100644 index 6749ac8..0000000 --- a/Xresources +++ /dev/null @@ -1,76 +0,0 @@ -! ----------------------------------------------------------------------------- -! Based on: gruvbox-dark.xresources -! Description: Retro groove colorscheme generalized -! Source: https://github.com/morhetz/gruvbox-generalized -! ----------------------------------------------------------------------------- - -! hard contrast: *background: #1d2021 -! medium contrast: *background: #282828 -! soft contrast: *background: #32302f -*background: #1d2021 -*foreground: #ebdbb2 -! Black + DarkGrey -*color0: #282828 -*color8: #928374 -! DarkRed + Red -*color1: #cc241d -*color9: #fb4934 -! DarkGreen + Green -*color2: #98971a -*color10: #b8bb26 -! DarkYellow + Yellow -*color3: #d79921 -*color11: #fabd2f -! DarkBlue + Blue -*color4: #458588 -*color12: #83a598 -! DarkMagenta + Magenta -*color5: #b16286 -*color13: #d3869b -! DarkCyan + Cyan -*color6: #689d6a -*color14: #8ec07c -! LightGrey + White -*color7: #a89984 -*color15: #ebdbb2 - -!!! urxvt -URxvt.perl-ext-common: default,matcher -URxvt*buffered: true -URxvt*saveLines: 5000 -URxvt*cursorBlink: true -URxvt*borderless: 1 -URxvt*internalBorder: 20 -URxvt*scrollBar: false -URxvt.url-launcher: /usr/bin/xdg-open -URxvt.matcher.button: 1 -URxvt.clipboard.autocopy: true - -! do not scroll with output -URxvt*scrollTtyOutput: false -! scroll in relation to buffer (with mouse scroll or Shift+Page Up) -URxvt*scrollWithBuffer: true -! scroll back to the bottom on keypress -URxvt*scrollTtyKeypress: true -! disable scrollback buffer in secondary screen (allows scrolling pager when using 'less' etc) -URxvt.secondaryScreen: 1 -URxvt.secondaryScroll: 0 -! Disable printing the terminal contents when pressing PrintScreen. -URxvt.print-pipe: "cat > /dev/null" -!! copy/paste -! disable default ctrl-shift binding -URxvt.iso14755: false -URxvt.iso14755_52: false -! disable default copy/paste bindings -URxvt.keysym.Control-Meta-c: builtin-string: -URxvt.keysym.Control-Meta-v: builtin-string: -! new copy/paste bindings -URxvt.keysym.Shift-Control-V: eval:paste_clipboard -URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard -!! font -!URxvt.letterSpace: -1 -URxvt.font: xft:Hack:regular:size=12, \ - xft:Font Awesome 5 Brands:Regular:size=10, \ - xft:Font Awesome 5 Free:Solid:size=10, \ - xft:Font Awesome 5 Free:Regular:size=10 - diff --git a/install.sh b/install.sh index 8f321f2..d2ceaa6 100755 --- a/install.sh +++ b/install.sh @@ -48,20 +48,23 @@ ln -sf $dotfiles_dir/profile ~/.profile ln -sf $dotfiles_dir/emacs.d ~/.emacs.d ln -sf $dotfiles_dir/xinitrc ~/.xinitrc ln -sf $dotfiles_dir/vimrc ~/.vimrc -ln -sf $dotfiles_dir/Xresources ~/.Xresources +#ln -sf $dotfiles_dir/Xresources.gruvbox ~/.Xresources +ln -sf $dotfiles_dir/Xresources.zenburn ~/.Xresources # Create $config_dir, sub-directories, and symlinks mkdir -p $config_dir/{bspwm,dunst,kitty,nvim,polybar,rofi,sxhkd} ln -sf $dotfiles_dir/config/bspwm/bspwmrc $config_dir/bspwm/bspwmrc ln -sf $dotfiles_dir/config/dunst/dunstrc $config_dir/dunst/dunstrc ln -sf $dotfiles_dir/config/kitty/kitty.conf $config_dir/kitty/kitty.conf -ln -sf $dotfiles_dir/config/kitty/gruvbox.conf $config_dir/kitty/gruvbox.conf +#ln -sf $dotfiles_dir/config/kitty/gruvbox.conf $config_dir/kitty/gruvbox.conf +ln -sf $dotfiles_dir/config/kitty/zenburn.conf $config_dir/kitty/zenburn.conf ln -sf $dotfiles_dir/config/nvim/init.vim $config_dir/nvim/init.vim ln -sf $dotfiles_dir/config/polybar/config.ini $config_dir/polybar/config.ini ln -sf $dotfiles_dir/config/polybar/colors.ini $config_dir/polybar/colors.ini ln -sf $dotfiles_dir/config/polybar/modules.ini $config_dir/polybar/modules.ini ln -sf $dotfiles_dir/config/polybar/custom_modules.ini $config_dir/polybar/custom_modules.ini -ln -sf $dotfiles_dir/config/rofi/config.rasi $config_dir/rofi/config.rasi +#ln -sf $dotfiles_dir/config/rofi/config.rasi.gruvbox $config_dir/rofi/config.rasi +ln -sf $dotfiles_dir/config/rofi/config.rasi.zenburn $config_dir/rofi/config.rasi ln -sf $dotfiles_dir/config/sxhkd/sxhkdrc $config_dir/sxhkd/sxhkdrc # Create $bin_dir and symlinks @@ -73,5 +76,6 @@ ln -sf $dotfiles_dir/bin/toggle-wifi $bin_dir # Finishing up source ~/.bashrc source ~/.bash_profile +source ~/.profile xrdb ~/.Xresources