From d4cbda73c38d81e0db67de12cbd59add9767930d Mon Sep 17 00:00:00 2001 From: neodarz Date: Thu, 5 Sep 2019 21:16:44 +0200 Subject: Add Xresources config --- README.md | 1 + config.yaml | 4 ++ dotfiles/Xresources | 188 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 193 insertions(+) create mode 100644 dotfiles/Xresources diff --git a/README.md b/README.md index bbd1ad6..9617744 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ nvim > neovim config scripts > misc scripts systemd > user services for differents application + Xresources > theme config ``` # Managing diff --git a/config.yaml b/config.yaml index 4d0c5d2..36c0583 100644 --- a/config.yaml +++ b/config.yaml @@ -57,6 +57,9 @@ dotfiles: f_offlineimaprc: src: offlineimaprc dst: ~/.offlineimaprc + f_xresources: + src: Xresources + dst: ~/.Xresources profiles: unicorn: dotfiles: @@ -78,6 +81,7 @@ profiles: - f_init.vim - f_offlineimap.py - f_offlineimaprc + - f_xresources fenec: dotfiles: - d_i3pystatus diff --git a/dotfiles/Xresources b/dotfiles/Xresources new file mode 100644 index 0000000..9690b04 --- /dev/null +++ b/dotfiles/Xresources @@ -0,0 +1,188 @@ + +! ------------------------------------------------------------------------------ +! +! ------------------------------------------------------------------------------ + +*fading: 15 +*fadeColor: black +*cursorColor: white +*pointerColorBackground:white +*pointerColorForeground:black + +! --- special colors --- + +*background: #000000 +*foreground: #ffffff + +! --- standard colors --- + +! black +*color0: #000000 + +! bright_black +*color8: #262626 + +! red +*color1: #ff3399 + +! bright_red +*color9: #ff99cc + +! green +*color2: #99ff33 + +! bright_green +*color10: #ccff99 + +! yellow +*color3: #ff9933 + +! bright_yellow +*color11: #ffcc99 + +! blue +*color4: #3399ff + +! bright_blue +*color12: #99ccff + +! magenta +*color5: #9933ff + +! bright_magenta +*color13: #cc99ff + +! cyan +*color6: #33ff99 + +! bright_cyan +*color14: #99ffcc + +! white +*color7: #d9d9d9 + +! bright_white +*color15: #ffffff + +!! ------------------------------------------------------------------------------ +! Xft conf +! ------------------------------------------------------------------------------ + +Xft.dpi: 96 +Xft.antialias: true +Xft.hinting: true +Xft.rgba: rgb +Xft.autohint: false +Xft.hintstyle: hintslight +Xft.lcdfilter: lcddefault +Xcursor.theme: Chameleon-Pearl-Regular-0.5 +Xcursor.size: 0 + +! ------------------------------------------------------------------------------ +! XTerm conf +! ------------------------------------------------------------------------------ + +XTerm*background: #000000 +XTerm*foreground: #ffffff +!XTerm*reverseVideo: on +!XTerm*faceName: Terminus:size=11:antialias=true +XTerm*selectToClipboard: true +XTerm.font: xft:Monoid:size=7 + +! ------------------------------------------------------------------------------ +! URxvt conf +! ------------------------------------------------------------------------------ + +!URxvt.font: xft:Monoid:size=7 +!URxvt.depth: 32 +!URxvt.background: [80]#000000 +!URxvt*scrollBar: false +!URxvt*mouseWheelScrollPage: false +!URxvt*cursorBlink: true +!URxvt*background: black +!URxvt*foreground: white +!URxvt*saveLines: 5000 +!URxvt.perl-ext: default,url-select,tabbed,keyboard-select +!URxvt.keysym.M-u: perl:url-select:select_next +!URxvt.url-select.launcher: /usr/bin/xdg-open +!URxvt.url-select.underline: true +!URxvt.keysym.M-Escape: perl:keyboard-select:activate +!URxvt.keysym.M-s: perl:keyboard-select:search +!URxvt.keyboard-select.clipboard: true +! +! +! emulate XTerm for proper recognition of key combinations in Vim +!URxvt.keysym.Up : \033[A !breaks arrow keys in Vim +!URxvt.keysym.Down : \033[B !breaks arrow keys in Vim +!URxvt.keysym.Right : \033[C !breaks arrow keys in Vim +!URxvt.keysym.Left : \033[D !breaks arrow keys in Vim +!URxvt.keysym.Page_Up : \033[5~ !breaks scrolling in Rxvt +!URxvt.keysym.Page_Down : \033[6~ !breaks scrolling in Rxvt +!URxvt.keysym.Home : \033[H !breaks navigation in Vim +!URxvt.keysym.End : \033[F !breaks navigation in Vim +URxvt.keysym.S-Up : \033[1;2A +URxvt.keysym.S-Down : \033[1;2B +URxvt.keysym.S-Right : \033[1;2C +URxvt.keysym.S-Left : \033[1;2D +!URxvt.keysym.S-Page_Up : captured by terminal for scrolling +!URxvt.keysym.S-Page_Down : captured by terminal for scrolling +URxvt.keysym.S-Home : \033[1;2H +URxvt.keysym.S-End : \033[1;2F +URxvt.keysym.M-Up : \033[1;3A +URxvt.keysym.M-Down : \033[1;3B +URxvt.keysym.M-Right : \033[1;3C +URxvt.keysym.M-Left : \033[1;3D +URxvt.keysym.M-Page_Up : \033[5;3~ +URxvt.keysym.M-Page_Down : \033[6;3~ +URxvt.keysym.M-Home : \033[1;3H +URxvt.keysym.M-End : \033[1;3F +URxvt.keysym.M-S-Up : \033[1;4A +URxvt.keysym.M-S-Down : \033[1;4B +URxvt.keysym.M-S-Right : \033[1;4C +URxvt.keysym.M-S-Left : \033[1;4D +!URxvt.keysym.M-S-Page_Up : seen as Rxvt.keysym.S-Page_Up +!URxvt.keysym.M-S-Page_Down : seen as Rxvt.keysym.S-Page_Down +URxvt.keysym.M-S-Home : \033[1;4H +URxvt.keysym.M-S-End : \033[1;4F +URxvt.keysym.C-Up : \033[1;5A +URxvt.keysym.C-Down : \033[1;5B +URxvt.keysym.C-Right : \033[1;5C +URxvt.keysym.C-Left : \033[1;5D +URxvt.keysym.C-Page_Up : \033[5;5~ +URxvt.keysym.C-Page_Down : \033[6;5~ +URxvt.keysym.C-Home : \033[1;5H +URxvt.keysym.C-End : \033[1;5F +URxvt.keysym.C-S-Up : \033[1;6A +URxvt.keysym.C-S-Down : \033[1;6B +URxvt.keysym.C-S-Right : \033[1;6C +URxvt.keysym.C-S-Left : \033[1;6D +!URxvt.keysym.C-S-Page_Up : seen as Rxvt.keysym.S-Page_Up +!URxvt.keysym.C-S-Page_Down : seen as Rxvt.keysym.S-Page_Down +URxvt.keysym.C-S-Home : \033[1;6H +URxvt.keysym.C-S-End : \033[1;6F +URxvt.keysym.M-C-Up : \033[1;7A +URxvt.keysym.M-C-Down : \033[1;7B +URxvt.keysym.M-C-Right : \033[1;7C +URxvt.keysym.M-C-Left : \033[1;7D +URxvt.keysym.M-C-Page_Up : \033[5;7~ +URxvt.keysym.M-C-Page_Down : \033[6;7~ +URxvt.keysym.M-C-Home : \033[1;7H +URxvt.keysym.M-C-End : \033[1;7F +URxvt.keysym.M-C-S-Up : \033[1;8A +URxvt.keysym.M-C-S-Down : \033[1;8B +URxvt.keysym.M-C-S-Right : \033[1;8C +URxvt.keysym.M-C-S-Left : \033[1;8D +!URxvt.keysym.M-C-S-Page_Up : seen as Rxvt.keysym.S-Page_Up +!URxvt.keysym.M-C-S-Page_Down : seen as Rxvt.keysym.S-Page_Down +URxvt.keysym.M-C-S-Home : \033[1;8H +URxvt.keysym.M-C-S-End : \033[1;8F + +! ------------------------------------------------------------------------------ +! ROFI Color theme +! ------------------------------------------------------------------------------ +rofi.color-enabled: true +rofi.color-window: #000000, #000000, #ffffff +rofi.color-normal: #000000, #ffffff, #000000, #ffffff, #000000 +rofi.color-active: #000000, #0061ff, #000000, #ffffff, #0061ff +rofi.color-urgent: #000000, #ff0096, #000000, #ffffff, #ff0096 +rofi.font: fira-code regular 8 -- cgit v1.2.1