├── .Xresources ├── .Xresources.d ├── firefox │ ├── bridge.css │ ├── floral.css │ ├── grayscale.css │ ├── rust-book.css │ ├── startpages │ │ ├── bridge.css │ │ ├── floral.css │ │ ├── grayscale.css │ │ ├── start.html │ │ └── touka.css │ ├── taiga.css │ └── touka.css ├── rofi │ ├── alley.rofi │ ├── bridge.rofi │ ├── donut.rofi │ ├── dr17.rofi │ ├── floral.rofi │ ├── grayscale.rofi │ ├── senjou.rofi │ ├── taiga.rofi │ └── touka.rofi ├── themes │ ├── alley │ ├── bridge │ ├── cmyk │ ├── donut │ ├── dr17 │ ├── floral │ ├── grayscale │ ├── kiss_shot │ ├── senjou │ ├── taiga │ └── touka └── urxvt ├── .aliases ├── .bash_profile ├── .bashrc ├── .config ├── compton.conf ├── dunst │ └── dunstrc ├── firejail │ └── firefox.profile ├── i3 │ ├── config │ └── ws1.json ├── i3blocks │ └── config ├── mopidy │ └── mopidy.conf ├── mpv │ └── input.conf ├── ncmpcpp │ ├── bindings │ └── config ├── neofetch │ └── config ├── polybar │ ├── config │ └── launch.sh ├── qutebrowser │ └── autoconfig.yml ├── ranger │ ├── commands.py │ ├── rc.conf │ └── scope.sh ├── redshift.conf ├── stalonetrayrc ├── tmux.conf ├── vimfx ├── xbindkeysrc └── zathura │ └── zathurarc ├── .gitignore ├── .vimrc ├── .weechat ├── alias.conf ├── irc.conf └── weechat.conf ├── .xinitrc ├── .xprofile ├── .zprofile ├── .zshrc ├── README.md ├── etc └── mopidy │ └── mopidy.conf ├── important └── openings.moe ├── mac ├── .vimrc ├── .zshrc ├── iTerm │ ├── Default.json │ └── dr17.itermcolors ├── vimium-options.json └── weechat │ ├── alias.conf │ ├── irc.conf │ └── weechat.conf ├── utils ├── battery-percent.py ├── bonsai.sh ├── bwkiller.sh ├── ccv.sh ├── chkstat ├── col2xres.py ├── colorblks.sh ├── colors ├── japinput.sh ├── line_shuffle.py ├── lock.sh ├── makesoup.py ├── nmgui.sh ├── pac-updates.sh ├── playstat.py ├── pokestat.py ├── power_menu.sh ├── teknik ├── vpn.sh ├── wav-to-mp3.sh ├── weather.py └── weather.sh └── wallpapers ├── alley.jpg ├── bridge.png ├── donut.png ├── dr17.png ├── floral.png ├── geo.png ├── grayscale.png ├── kiss_shot.png ├── senjou.png ├── taiga.png └── touka.jpg /.Xresources: -------------------------------------------------------------------------------- 1 | ! Commented lines start with '!' 2 | 3 | ! Import theme colors + rofi 4 | #include ".Xresources.d/themes/alley" 5 | !#include ".Xresources.d/themes/bridge" 6 | !#include ".Xresources.d/themes/cmyk" 7 | !#include ".Xresources.d/themes/donut" 8 | !#include ".Xresources.d/themes/floral" 9 | !#include ".Xresources.d/themes/grayscale" 10 | !#include ".Xresources.d/themes/kiss_shot" 11 | !#include ".Xresources.d/themes/senjou" 12 | !#include ".Xresources.d/themes/sky" 13 | !#include ".Xresources.d/themes/sunsetcity" 14 | !#include ".Xresources.d/themes/taiga" 15 | !#include ".Xresources.d/themes/touka" 16 | 17 | ! Some font rendering fixings 18 | Xft.dpi: 96 19 | Xft.rgba: rgb 20 | Xft.autohint: 0 21 | Xft.antialias: true 22 | Xft.hinting: true 23 | Xft.hintstyle: hintnone 24 | Xft.lcdfilter: lcddefault 25 | 26 | ! Rofi defaults 27 | rofi.eh: 3 28 | rofi.width: 100 29 | rofi.padding: 300 30 | rofi.lines: 4 31 | rofi.line-margin: 5 32 | rofi.hide_scrollbar: True 33 | rofi.scrollbar_width: 0 34 | rofi.terminal: urxvt 35 | rofi.location: 0 36 | 37 | #include ".Xresources.d/urxvt" 38 | 39 | -------------------------------------------------------------------------------- /.Xresources.d/firefox/rust-book.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("rust-lang.github.io") { 2 | body { 3 | line-height: 1.6 4 | } 5 | 6 | .hljs { 7 | font-family: Hack; 8 | font-size: 12px; 9 | } 10 | } 11 | 12 | @-moz-document domain("doc.rust-lang.org") { 13 | body { 14 | line-height: 1.6 15 | } 16 | 17 | .hljs { 18 | font-family: Hack; 19 | font-size: 12px; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /.Xresources.d/firefox/startpages/bridge.css: -------------------------------------------------------------------------------- 1 | #container{ 2 | position: relative; 3 | width: 720px; 4 | height: 480px; 5 | margin: auto; 6 | font-family: 'Tewi', 'Noto Sans', sans-serif; 7 | font-size: 13px; 8 | top: 100px; 9 | } 10 | 11 | .links{ 12 | display: inline; 13 | float: left; 14 | width: 220px; 15 | padding: 10px; 16 | } 17 | 18 | body{ 19 | background-color: #2b4758; 20 | } 21 | 22 | h3{ 23 | color: #e1d8cb; 24 | } 25 | 26 | hr{ 27 | color: #e1d8cb; 28 | } 29 | 30 | a{ 31 | color: #e1d8cb; 32 | text-decoration: none; 33 | display: block; 34 | } 35 | 36 | /*input{*/ 37 | /*width: 100%;*/ 38 | /*box-sizing: border-box;*/ 39 | /*-webkit-box-sizing: border-box;*/ 40 | /*-moz-box-sizing: border-box;*/ 41 | } 42 | -------------------------------------------------------------------------------- /.Xresources.d/firefox/startpages/floral.css: -------------------------------------------------------------------------------- 1 | #container{ 2 | position: relative; 3 | width: 720px; 4 | height: 480px; 5 | margin: auto; 6 | font-family: 'Tewi', 'Noto Sans', sans-serif; 7 | font-size: 13px; 8 | top: 100px; 9 | } 10 | 11 | .links{ 12 | display: inline; 13 | float: left; 14 | width: 220px; 15 | padding: 10px; 16 | } 17 | 18 | body{ 19 | background-color: #191b20; 20 | } 21 | 22 | h3{ 23 | color: #e09d99; 24 | } 25 | 26 | hr{ 27 | color: #e09d99; 28 | } 29 | 30 | a{ 31 | color: #e09d99; 32 | text-decoration: none; 33 | display: block; 34 | } 35 | 36 | /*input{*/ 37 | /*width: 100%;*/ 38 | /*box-sizing: border-box;*/ 39 | /*-webkit-box-sizing: border-box;*/ 40 | /*-moz-box-sizing: border-box;*/ 41 | } 42 | -------------------------------------------------------------------------------- /.Xresources.d/firefox/startpages/grayscale.css: -------------------------------------------------------------------------------- 1 | #container{ 2 | position: relative; 3 | width: 720px; 4 | height: 480px; 5 | margin: auto; 6 | font-family: 'Tewi', 'Noto Sans', sans-serif; 7 | font-size: 13px; 8 | top: 100px; 9 | } 10 | 11 | .links{ 12 | display: inline; 13 | float: left; 14 | width: 220px; 15 | padding: 10px; 16 | } 17 | 18 | body{ 19 | background-color: #101010; 20 | } 21 | 22 | h3{ 23 | color: #f7f7f7; 24 | } 25 | 26 | hr{ 27 | color: #b9b9b9; 28 | } 29 | 30 | a{ 31 | color: #b9b9b9; 32 | text-decoration: none; 33 | display: block; 34 | } 35 | 36 | /*input{*/ 37 | /*width: 100%;*/ 38 | /*box-sizing: border-box;*/ 39 | /*-webkit-box-sizing: border-box;*/ 40 | /*-moz-box-sizing: border-box;*/ 41 | } 42 | -------------------------------------------------------------------------------- /.Xresources.d/firefox/startpages/start.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |