├── README.md ├── arch ├── .config │ ├── openbox │ │ ├── autostart │ │ ├── menu.xml │ │ └── rc.xml │ ├── polybar │ │ └── config │ ├── tint2 │ │ └── tint2rc │ └── zsh │ │ ├── functions.zsh │ │ └── prompt.zsh ├── .zshrc ├── bin │ ├── flac2mp3 │ └── love ├── corruptedcity │ └── .Xresources ├── etc │ ├── X11 │ │ └── xorg.conf │ └── fonts │ │ └── local.conf ├── glass_skull │ ├── .Xresources │ ├── userchrome.css │ ├── wal-discord │ │ ├── colors.scss │ │ ├── glass_style.css │ │ └── style.css │ └── wall.jpg ├── leaftop │ ├── .Xresources │ ├── .config │ │ ├── openbox │ │ │ └── autostart │ │ ├── polybar │ │ │ ├── config │ │ │ └── weather │ │ ├── tint2 │ │ │ └── tint2rc │ │ ├── vis │ │ │ ├── colors │ │ │ │ └── leaftop │ │ │ └── config │ │ └── zsh │ │ │ └── prompt.zsh │ ├── .irssi │ │ ├── config │ │ ├── irssi.theme │ │ └── scripts │ │ │ └── nickcolor.pl │ ├── .mpd │ │ └── mpd.conf │ ├── .ncmpcpp │ │ └── config │ ├── .zshrc │ ├── firefox userstyle │ ├── leaf oneechan │ └── leaf reddit ├── pixel │ ├── .Xresources │ ├── 4ch │ ├── ffx │ └── lastfm ├── purple_octo │ ├── .Xresources │ ├── polybar │ │ └── config │ └── tint2 │ │ └── tint2rc ├── scripts │ ├── 360 │ ├── gifUpscale │ ├── gmail_unread │ ├── imgur │ ├── lastfm_love.py │ ├── lock │ ├── mouse-acceleration │ ├── notify │ ├── notify-dxvk │ ├── notify-rpcs3 │ ├── pull-rpcs3 │ ├── reddit_mail │ ├── uDXVK │ ├── update │ ├── vidSort │ └── vortex └── warm │ ├── .Xresources │ ├── .config │ ├── dunst │ │ └── dunstrc │ ├── polybar │ │ └── config │ ├── tint2 │ │ └── tint2rc │ └── vis │ │ └── colors │ │ └── warm │ ├── .ncmcpp │ └── config │ ├── 4chan │ ├── firefox │ └── reddit ├── win ├── .mpd │ └── mpd.conf ├── .ncmpcpp │ └── config ├── 1080_tiles ├── 1440_tiles ├── bbZero │ ├── menu.rc │ ├── sys_bar.rc │ ├── workspace.rc │ └── workspaceImage │ │ ├── 1.ico │ │ ├── 2.ico │ │ └── 3.ico ├── bin │ ├── dunst.exe │ ├── mpc.exe │ ├── mpdcron.exe │ ├── mpdscribble.exe │ ├── scmpc.exe │ ├── toilet.exe │ └── tty-clock.exe ├── etc │ └── tmux.conf ├── floral │ ├── .Xresources │ ├── .zshrc │ ├── bb_floral │ ├── firefox theme │ └── reddit floral ├── neon │ ├── .Xresources │ ├── 4chan │ ├── firefox theme │ └── reddit └── scripts │ ├── vortex │ └── wthr └── wsl ├── .config └── polybar │ └── config ├── .ncmpcpp └── config ├── .vimrc ├── .zshrc ├── city ├── .Xresources ├── 4ch ├── lfm ├── rdt └── yt ├── nyc ├── .Xresources ├── .config │ └── polybar │ │ └── config ├── lfm ├── nyc rice ├── oneechan settings └── rdt ├── scripts ├── collage ├── lastfm_love.py ├── lock ├── lock_poly ├── mpddunst ├── mudl ├── music-dir.bat ├── music-dir.sh ├── musik ├── np ├── sshot ├── update └── vortex ├── start_mopidy.vbe ├── start_mpdscribble.vbe ├── start_plybr.vbe ├── start_pulse.vbe ├── startx..bat └── titlebar.ahk /README.md: -------------------------------------------------------------------------------- 1 | # arch 2 | dotfiles from my arch installation 3 | 4 | # win 5 | dotfiles from windows + cygwin 6 | 7 | # wsl 8 | dots using the linux subsystem on windows 10 9 | -------------------------------------------------------------------------------- /arch/.config/openbox/autostart: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | compton --config ~/.config/compton.conf -b & 4 | feh --bg-fill /mnt/win/Users/Shane/Pictures/4chan/wallpaper/alex-knight-326705-unsplash.jpg & 5 | ~/scripts/blurme & 6 | pulseaudio & 7 | mpd & 8 | mpdscribble & 9 | ckb-next & 10 | hue_ui & 11 | tint2 & 12 | polybar vortex & 13 | numlockx & 14 | redshift -l 53.3498:6.2603 & 15 | nvidia-settings -a "[gpu:0]/GPUFanControlState=1" -a "[fan:0]/GPUTargetFanSpeed=50" & 16 | xboxdrv --detach-kernel-driver --silent --mimic-xpad & 17 | -------------------------------------------------------------------------------- /arch/.config/openbox/menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | urxvt 10 | 11 | 12 | 13 | 14 | 15 | 16 | firefox 17 | 18 | 19 | 20 | 21 | 22 | 23 | thunar 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | steam 34 | 35 | 36 | 37 | 38 | 39 | 40 | wine "/home/shane/.wine/drive_c/Program Files (x86)/Steam/steam.exe" 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | wine "/mnt/vidya/ePSXe/ePSXe.exe 50 | 51 | 52 | 53 | 54 | 55 | 56 | PCSX2 57 | 58 | 59 | 60 | 61 | 62 | 63 | ~/Downloads/rpcs3.AppImage 64 | 65 | 66 | 67 | 68 | 69 | 70 | wine "/mnt/vidya/Program Files (x86)/BGB/bgb.exe" 71 | 72 | 73 | 74 | 75 | 76 | 77 | dolphin-emu 78 | 79 | 80 | 81 | 82 | 83 | 84 | ~/.citra/nightly/citra-qt 85 | 86 | 87 | 88 | 89 | 90 | 91 | wine "/mnt/vidya/Program Files (x86)/Cemu/Cemu.exe" 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | spotify 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | gimp 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | scrot '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/Pictures/' 122 | 123 | 124 | 125 | 126 | 127 | 128 | scrot -d 5 '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/Pictures/' 129 | 130 | 131 | 132 | 133 | 134 | 135 | scrot -d 10 '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/Pictures/' 136 | 137 | 138 | 139 | 140 | 141 | 142 | scrot -s '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/Pictures/' 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | qbittorrent 154 | 155 | 156 | 157 | 158 | 159 | 160 | soulseekqt 161 | 162 | 163 | 164 | 165 | 166 | 167 | filezilla 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | polybar -r vortex 178 | 179 | 180 | 181 | 182 | 183 | 184 | gedit /home/shane/.config/polybar/config 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | gedit /home/shane/.config/openbox/menu.xml 196 | 197 | 198 | 199 | 200 | 201 | 202 | gedit /home/shane/.config/openbox/rc.xml 203 | 204 | 205 | 206 | 207 | 208 | 209 | gedit "~/.config/openbox/autostart" 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | gedit /home/shane/.config/tint2/tint2rc 226 | 227 | 228 | 229 | 230 | 231 | 232 | tint2restart 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | ckb-next 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | pkill -u shane 254 | 255 | 256 | 257 | 258 | 259 | 260 | systemctl suspend 261 | 262 | 263 | 264 | 265 | 266 | 267 | systemctl reboot 268 | 269 | 270 | 271 | 272 | 273 | 274 | systemctl poweroff 275 | 276 | 277 | 278 | 279 | 280 | 281 | -------------------------------------------------------------------------------- /arch/.config/polybar/config: -------------------------------------------------------------------------------- 1 | ;; colors {{ 2 | [colors] 3 | background = ${xrdb:background} 4 | foreground = ${xrdb:foreground} 5 | 6 | ; Light bg 7 | primary = ${xrdb:color4} 8 | ; Dark bg 9 | secondary = ${xrdb:color8} 10 | ; Really dark bg/fg 11 | tertiary = ${xrdb:color0} 12 | ; Red 13 | urgency = ${xrdb:color1} 14 | ;; }} 15 | 16 | ;; workspaces {{ 17 | [bar/workspace] 18 | monitor = ${env:MONITOR:DP-0} 19 | width = 81 20 | height = 19 21 | bottom = false 22 | 23 | background = ${xrdb:background} 24 | foreground = ${colors.foreground} 25 | 26 | font-0 = MonteCarlo:pixelsize=12:antialias=false;1 27 | font-1 = "FuraCode Nerd Font:size=12;3" 28 | font-2 = "FuraCode Nerd Font:style=Bold:size=12;3" 29 | font-3 = unifont:fontformat=truetype:size=8:antialias=false;0 30 | font-4 = siji:pixelsize=10:antialias=false;1 31 | font-5 = Unifont Upper:fontformat=truetype:size1:antialias=false;0 32 | font-6 = artwiz cure:pixelsize=10:antialias=false;1 33 | font-7 = FontAwesome:pixelsize=10:antialias=false;1 34 | 35 | modules-left = workspaces dsPT 36 | ;; }} 37 | 38 | ;; main bar {{ 39 | [bar/top] 40 | monitor = ${env:MONITOR:DP-0} 41 | bottom = false 42 | fixed-center = true 43 | width = 1488 44 | offset-x = 1072 45 | height = 19 46 | 47 | background = ${xrdb:background} 48 | foreground = ${colors.foreground} 49 | 50 | tray-position = right 51 | tray-detached = false 52 | tray-maxsize = 15 53 | tray-background = ${xrdb:color4} 54 | tray-offset-y = 0 55 | tray-padding = 5 56 | tray-scale = 1.0 57 | 58 | font-0 = MonteCarlo:pixelsize=12:antialias=false;1 59 | font-1 = "FuraCode Nerd Font:size=12;3" 60 | font-2 = "FuraCode Nerd Font:style=Bold:size=12;3" 61 | font-3 = unifont:fontformat=truetype:size=8:antialias=false;0 62 | font-4 = siji:pixelsize=10:antialias=false;1 63 | font-5 = Unifont Upper:fontformat=truetype:size1:antialias=false;0 64 | font-6 = artwiz cure:pixelsize=10:antialias=false;1 65 | font-7 = FontAwesome:pixelsize=10:antialias=false;1 66 | 67 | modules-left = date 68 | modules-center = updates email 69 | modules-right = pulseaudio daTS 70 | 71 | locale = en_US.UTF-8 72 | 73 | override-redirect = false 74 | ;; }} 75 | 76 | ;; arrow modules {{ 77 | [module/dsPT] 78 | type = custom/text 79 | content = "" 80 | content-background = ${xrdb:color4} 81 | content-foreground = ${xrdb:background} 82 | 83 | [module/daTS] 84 | type = custom/text 85 | content = "%{O20}" 86 | content-foreground = ${xrdb:color4} 87 | content-background = ${xrdb:background} 88 | 89 | [module/dulT] 90 | type = custom/text 91 | content =  92 | content-foreground = ${xrdb:background} 93 | ;content-background = ${xrdb:background} 94 | 95 | [module/durT] 96 | type = custom/text 97 | content =  98 | content-foreground = ${xrdb:background} 99 | content-background = ${xrdb:background} 100 | ;; }} 101 | 102 | ;; workspace module {{ 103 | [module/workspaces] 104 | type = internal/xworkspaces 105 | pin-workspaces = true 106 | enable-click = true 107 | enable-scroll = true 108 | format-padding = 1 109 | format = 110 | label-active = "• " 111 | label-active-foreground = ${xrdb:color1} 112 | label-occupied = " > " 113 | label-urgent = " %icon% %name% " 114 | label-empty = "• " 115 | label-empty-foreground = ${xrdb:color3} 116 | format-background = ${colors.primary} 117 | ;; }} 118 | 119 | ;; main bar modules {{ 120 | [module/pulseaudio] 121 | type = internal/volume 122 | format-volume = 123 | label-volume = "%{O350}🔊" 124 | label-volume-foreground = ${xrdb:color1} 125 | 126 | format-muted-foreground = ${xrdb:color3} 127 | label-muted = "%{O350}🔇" 128 | 129 | bar-volume-width = 10 130 | bar-volume-foreground-0 = ${xrdb:color1} 131 | bar-volume-foreground-1 = ${xrdb:color1} 132 | bar-volume-foreground-2 = ${xrdb:color1} 133 | bar-volume-foreground-3 = ${xrdb:color6} 134 | bar-volume-foreground-4 = ${xrdb:color6} 135 | bar-volume-foreground-5 = ${xrdb:color6} 136 | bar-volume-foreground-6 = ${xrdb:color3} 137 | bar-volume-gradient = true 138 | bar-volume-indicator = 139 | bar-volume-indicator-font = 4 140 | bar-volume-fill = • 141 | #bar-volume-fill = ) 142 | bar-volume-fill-font = 4 143 | bar-volume-empty = · 144 | bar-volume-empty-font = 4 145 | bar-volume-empty-foreground = #666666 146 | 147 | [module/update] 148 | type = custom/script 149 | exec = ~/.config/polybar/arch-update.sh --display 150 | ; exec-if = wget -q --spider http://google.com 151 | exec-if = ping -q -c1 -l1 8.8.8.8 >/dev/null 152 | ; 10 minutes 153 | interval = 600 154 | 155 | format = 