ftp -o - https://jcs.org/move_in | sh -
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

my new wacky colors

+109 -54
+32 -23
.Xdefaults
··· 2 2 3 3 #ifdef HIDPI 4 4 ! pkg_add xcursor-dmz 5 - Xcursor.theme: dmz 6 - Xcursor.size: 48 5 + Xcursor.theme: Simp1e 6 + Xcursor.size: 64 7 + 8 + Xft.dpi: 148 7 9 #endif 8 10 9 11 ! a muted palette for athena things like xterm, xfontsel, etc. 10 - #define BG #d9d5ba 12 + #define BG #eae5ce 11 13 #define FG #444444 12 14 *.background: BG 13 15 *.foreground: FG ··· 22 24 23 25 *.borderColor: BG 24 26 25 - ! a muted palette 27 + ! solarized (light) 26 28 27 29 ! black 28 30 *.color0: FG 29 31 *.color8: #333333 30 32 31 33 ! red 32 - *.color1: #825b69 33 - *.color9: #bda0aa 34 + *.color1: #dc322f 35 + *.color9: #cb4b16 34 36 35 37 ! green 36 - *.color2: #69825b 37 - *.color10: #aabda0 38 + *.color2: #859900 39 + *.color10: #93a1a1 38 40 39 41 ! yellow 40 - *.color3: #82755b 41 - *.color11: #bdb3a0 42 + *.color3: #b58900 43 + *.color11: #839496 42 44 43 45 ! blue 44 - *.color4: #5b6982 45 - *.color12: #a0aabd 46 + *.color4: #268bd2 47 + *.color12: #657b83 46 48 47 49 ! magenta 48 - *.color5: #755b82 49 - *.color13: #b3a0bd 50 + *.color5: #d33682 51 + *.color13: #6c71c4 50 52 51 53 ! cyan 52 - *.color6: #5b8275 53 - *.color14: #a0bdb3 54 + *.color6: #2aa198 55 + *.color14: #586e75 54 56 55 57 ! white (gray) 56 58 *.color7: #d9d7cc 57 59 *.color15: #e5e5e5 60 + 58 61 59 62 #ifdef HIDPI 60 63 *.font: -*-lucida-medium-r-*-*-24-*-*-*-*-*-*-* ··· 65 68 ! xterm-specific settings 66 69 67 70 #ifdef HIDPI 68 - *.internalBorder: 22 71 + *.internalBorder: 28 69 72 #else 70 73 *.internalBorder: 12 71 74 #endif ··· 82 85 ! hide when i type 83 86 XTerm.pointerMode: 2 84 87 URxvt.pointerBlank: true 88 + 89 + ! if i scrolled up, leave it that way when more output comes 90 + URxvt.scrollTtyOutput: false 91 + ! but not when i press a key 92 + URxvt.scrollTtyKeypress: true 85 93 86 94 ! needed by ratpoison 87 95 XTerm.allowSendEvents: true ··· 95 103 XTerm.vt100.faceName: monospace:size=12 96 104 URxvt.font: xft:monospace:size=12,xft:noto emoji:size=12 97 105 URxvt.boldFont: xft:monospace:weight=bold:size=12,xft:noto emoji:weight=bold:size=12,xft:symbola 98 - URxvt.letterSpace: -1 106 + URxvt.letterSpace: -2 107 + URxvt.lineSpace: 0 99 108 #else 100 109 URxvt.font: 6x13,xft:noto emoji:size=12,xft:symbola 101 110 URxvt.boldFont: 6x13bold,xft:noto emoji:weight=bold:size=12 ··· 133 142 qconsole.*.color0: #999999 134 143 135 144 #ifdef HIDPI 136 - SshAskpass*Button.font: -*-lucida-medium-r-*-*-24-*-*-*-*-*-*-* 137 - SshAskpass*Dialog.font: -*-lucida-medium-r-*-*-26-*-*-*-*-*-*-* 138 - SshAskpass*Indicator.width: 30 139 - SshAskpass*Indicator.height: 15 145 + SshAskpass*Button.font: -*-lucida-medium-r-*-*-32-*-*-*-*-*-*-* 146 + SshAskpass*Dialog.font: -*-lucida-medium-r-*-*-36-*-*-*-*-*-*-* 147 + SshAskpass*Indicator.width: 40 148 + SshAskpass*Indicator.height: 20 140 149 #endif 141 150 142 151 XClock*.update: 1 ··· 144 153 XClock*.render: True 145 154 XClock*.padding: 40 146 155 XClock*.face: Microsoft Sans Serif:size=20 147 - XClock*.strftime: %H:%M:%S %D 156 + XClock*.strftime: %a %b %d %H:%M 148 157 XClock*.background: #c0c7c8
+1 -1
.config/gtk-3.0/gtk.css
··· 1 1 * { 2 2 font-family: "sans-serif"; 3 - font-size: 14pt; 3 + font-size: 13pt; 4 4 } 5 5 6 6 menubar {
+10 -9
.config/picom/picom.conf
··· 3 3 glx-no-rebind-pixmap = true; 4 4 vsync = true; 5 5 6 + frame-opacity = 1; 7 + 6 8 shadow = true; 7 - shadow-opacity = 0.2; 8 - shadow-radius = 10; 9 - shadow-offset-x = -5; 10 - shadow-offset-y = -5; 9 + shadow-opacity = 1; 10 + shadow-radius = 0; 11 + shadow-offset-x = 10; 12 + shadow-offset-y = 10; 11 13 shadow-exclude = [ 12 - "name *?= \"Chrome\"", 13 - "name *?= \"Chromium\"", 14 - #"name *?= \"Mozilla Firefox\"", 15 14 "name *?= \"OpenSSH Authentication\"", 16 15 ]; 16 + 17 + fading = false; 17 18 18 19 # dim inactive windows 19 20 inactive-dim = 0.10; ··· 29 30 30 31 wintypes: 31 32 { 32 - tooltip = { shadow = false; focus = true; }; 33 - dock = { shadow = false; focus = true; }; 33 + tooltip = { shadow = true; focus = true; }; 34 + dock = { shadow = true; focus = true; }; 34 35 utility = { shadow = false; focus = true; }; 35 36 desktop = { shadow = false; focus = true; }; 36 37 };
+8
.config/qt5ct/qss/jcs.qss
··· 1 + QMainWindow { 2 + background-color:#eae5ce; 3 + } 4 + QTreeView { 5 + alternate-background-color: #d3ceb9; 6 + selection-color: black; 7 + selection-background-color: #a3ccbd; 8 + }
+16
.config/qt5ct/qt5ct.conf
··· 1 + [Appearance] 2 + color_scheme_path=/usr/local/share/qt5ct/colors/airy.conf 3 + custom_palette=false 4 + icon_theme=Adwaita 5 + standard_dialogs=gtk3 6 + style=Fusion 7 + 8 + [Fonts] 9 + fixed=@Variant(\0\0\0@\0\0\0\x12\0M\0o\0n\0o\0s\0p\0\x61\0\x63\0\x65@ \0\0\0\0\0\0\xff\xff\xff\xff\x5\x1\0\x32\x10) 10 + general=@Variant(\0\0\0@\0\0\0\x14\0\x43\0o\0m\0i\0\x63\0 \0N\0\x65\0u\0\x65@\"\0\0\0\0\0\0\xff\xff\xff\xff\x5\x1\0K\x10) 11 + 12 + [Interface] 13 + stylesheets=/home/jcs/.config/qt5ct/qss/jcs.qss 14 + 15 + [SettingsWindow] 16 + geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\x1b\0\0\0g\0\0\x3\xda\0\0\x5\x1a\0\0\0\x1f\0\0\0k\0\0\x3\xd6\0\0\x5\x16\0\0\0\0\0\0\0\0\a\xd0\0\0\0\x1f\0\0\0k\0\0\x3\xd6\0\0\x5\x16)
+20 -7
.config/sdorfehs/config
··· 1 - set barpadding 20 10 2 - set gap 26 1 + set barinpadding 0 2 + set barpadding 24 14 3 + set barbordercolor black 4 + set barborder 6 5 + set bgcolor #eae5ce 6 + set border 6 7 + set fgcolor #444444 3 8 set ignoreresizehints 1 4 - set onlyborder 0 9 + set font "comic neue:bold:embolden:size=14" 10 + set gap 20 11 + set onlyborder 1 12 + set padding 40 40 40 40 5 13 6 14 bind s split 7 15 bind C-s split ··· 14 22 # lock the screen 15 23 bind L exec pkill -USR1 xidle 16 24 25 + # web development view, split firefox and a terminal 26 + bind W exec sdorfehs -c "hsplit" -c "resize 200 0" 27 + 17 28 # prevent accidental closes 18 29 unbind k 19 30 ··· 47 58 #set rudeness 12 48 59 49 60 # let popups stay centered 50 - unmanage xmessage 51 - unmanage xprompt 52 61 unmanage OpenSSH Authentication Passphrase Request 53 - unmanage dzen title 54 62 55 63 # startup configuration 56 64 exec ruby ~/code/sdorfehs-bar/sdorfehs-bar.rb 57 - frestore (frame :number 0 :x 0 :y 40 :width 1080 :height 1400 :screenw 2160 :screenh 1440 :window 27262985 :last-access 29 :dedicated 0),(frame :number 1 :x 1080 :y 40 :width 1080 :height 1150 :screenw 2160 :screenh 1440 :window 18874377 :last-access 28 :dedicated 0),(frame :number 2 :x 1080 :y 1190 :width 1080 :height 250 :screenw 2160 :screenh 1440 :window 20971523 :last-access 26 :dedicated 0) 65 + 66 + hsplit 67 + fselect 1 68 + split 1490 69 + fselect 0 70 + 58 71 execf 0 env RUN_AND_RETURN=mutt urxvt -title mutt 59 72 execf 1 env RUN_AND_RETURN=irc urxvt -title irssi 60 73 fselect 2
+2 -2
.fonts.conf
··· 77 77 <const>regular</const> 78 78 </test> 79 79 <edit name="family" mode="assign" binding="same"> 80 - <string>Input Mono ExLight</string> 80 + <string>Input Mono Narrow ExLight</string> 81 81 </edit> 82 82 <edit name="embolden" mode="assign" binding="strong"> 83 83 <bool>true</bool> ··· 91 91 <const>regular</const> 92 92 </test> 93 93 <edit name="family" mode="assign" binding="same"> 94 - <string>Input Mono</string> 94 + <string>Input Mono Narrow</string> 95 95 </edit> 96 96 </match> 97 97
+10 -5
.vim/colors/jcs.vim
··· 20 20 hi DiffDelete cterm=bold ctermfg=NONE 21 21 hi DiffText cterm=reverse ctermfg=NONE 22 22 hi Directory cterm=bold ctermfg=NONE 23 - hi Error cterm=reverse ctermfg=9 ctermbg=15 24 - hi ErrorMsg cterm=reverse ctermfg=9 ctermbg=15 23 + hi Error cterm=NONE ctermfg=NONE ctermbg=224 24 + hi ErrorMsg cterm=NONE ctermfg=NONE ctermbg=224 25 25 hi FoldColumn cterm=standout ctermfg=NONE 26 26 hi Folded cterm=standout ctermfg=NONE 27 27 hi Identifier cterm=underline ctermfg=NONE ··· 33 33 hi MoreMsg cterm=bold ctermfg=NONE 34 34 hi NonText cterm=bold ctermfg=NONE 35 35 hi PreProc cterm=underline ctermfg=NONE 36 + hi Pmenu cterm=NONE ctermfg=NONE ctermbg=253 37 + hi PmenuSel cterm=bold ctermfg=NONE ctermbg=253 36 38 hi Question cterm=standout ctermfg=NONE 37 39 hi Search cterm=reverse ctermfg=NONE 40 + hi SignColumn cterm=NONE ctermfg=NONE ctermbg=NONE 41 + hi SpellBad cterm=NONE ctermfg=NONE ctermbg=224 42 + hi SpellLocal cterm=NONE ctermfg=NONE ctermbg=223 38 43 hi Special cterm=bold ctermfg=NONE 39 44 hi SpecialKey cterm=bold ctermfg=NONE 40 45 hi Statement cterm=bold ctermfg=NONE 41 46 hi StatusLine cterm=bold,reverse ctermfg=NONE 42 47 hi StatusLineNC cterm=reverse ctermfg=NONE 43 - hi TabLine cterm=reverse ctermfg=NONE 48 + hi TabLine cterm=reverse ctermfg=NONE ctermbg=NONE 44 49 hi Title cterm=bold ctermfg=NONE 45 50 hi Todo cterm=bold,standout ctermfg=185 ctermbg=0 46 51 hi Type cterm=bold ctermfg=NONE 47 52 hi Underlined cterm=underline ctermfg=NONE 48 53 hi VertSplit cterm=reverse ctermfg=NONE 49 - hi Visual cterm=reverse ctermfg=NONE 54 + hi Visual cterm=reverse ctermfg=NONE ctermbg=NONE 50 55 hi VisualNOS cterm=bold,underline ctermfg=NONE 51 56 hi WarningMsg cterm=standout ctermfg=NONE 52 57 hi WildMenu cterm=standout ctermfg=NONE 53 58 54 - hi ColorColumn cterm=NONE ctermfg=NONE ctermbg=251 59 + hi ColorColumn cterm=NONE ctermfg=NONE ctermbg=252 55 60 56 61 " for highlighting stray spaces/tabs (requires match statements in vimrc) 57 62 hi ExtraWhitespace cterm=reverse ctermfg=185 ctermbg=NONE
+8 -5
.xsession
··· 25 25 # force webrender to enable 26 26 export MOZ_WEBRENDER=1 27 27 28 + # to allow style changes with qt5ct 29 + export QT_QPA_PLATFORMTHEME="qt5ct" 30 + 28 31 SCREEN_WIDTH=`xrandr 2>&1 | grep "Screen 0: minimum" | sed -e 's/.*, current //' -e 's/ x.*//'` 29 32 if [ "${SCREEN_WIDTH}" -ge 1920 ]; then 30 33 echo "using HIDPI" ··· 60 63 61 64 WM=sdorfehs 62 65 63 - hsetroot -solid "#aab6b3" 66 + hsetroot -solid "#a3ccbd" 64 67 picom -b 65 68 66 69 case $MACHINE in ··· 75 78 echo "Xft.dpi: 100" | xrdb -merge 76 79 ;; 77 80 78 - "LENOVO 20UN0008US") 79 - xcalib ~/.icc/thinkpadx1n1.icc 80 - xdimmer -nk -t 5 -s 3 -b 3 & 81 - WM=~/code/progman/progman 81 + "HUAWEI EUL-WX9") 82 + xdimmer -n -a & 83 + # turn off the touchscreen 84 + xinput disable /dev/wsmouse2 82 85 WM=~/code/sdorfehs/sdorfehs 83 86 ;; 84 87
+2 -2
.zshrc
··· 131 131 132 132 case $TERM in 133 133 xterm*) 134 - precmd() { print -Pn "\e]0;%m:%~>\a" } 135 - preexec() { print -Pn "\e]0;%m:%~> $1\a" } 134 + precmd() { print -Pn "\e]0;%m:%~$\a" } 135 + preexec() { print -Pn "\e]0;%m:%~$ $1\a" } 136 136 ;; 137 137 esac 138 138