├── .Xresources ├── .aether-corevar ├── .config ├── Thunar │ ├── accels.scm │ └── uca.xml ├── alacritty │ └── alacritty.yml ├── arigram │ └── config.py ├── cava │ └── config ├── dunst │ ├── dunstrc │ ├── dunstrc-dark-left │ └── dunstrc-dark-right ├── fontconfig │ └── fonts.conf ├── geany │ ├── colorschemes │ │ ├── bespin.conf │ │ ├── black.conf │ │ ├── darcula.conf │ │ ├── dark-colors.conf │ │ ├── dark-fruit-salad.conf │ │ ├── dark.conf │ │ ├── delt-dark.conf │ │ ├── epsilon.conf │ │ ├── fluffy.conf │ │ ├── gedit.conf │ │ ├── github.conf │ │ ├── himbeere.conf │ │ ├── inkpot.conf │ │ ├── kugel.conf │ │ ├── mc.conf │ │ ├── metallic-bottle.conf │ │ ├── monokai.conf │ │ ├── notepad-plus-plus.conf │ │ ├── oblivion2.conf │ │ ├── pygments.conf │ │ ├── railcasts2.conf │ │ ├── retro.conf │ │ ├── sleepy-pastel.conf │ │ ├── slushpoppies.conf │ │ ├── solarized-dark.conf │ │ ├── solarized-light.conf │ │ ├── spyder-dark.conf │ │ ├── steampunk.conf │ │ ├── tango-dark.conf │ │ ├── tango-light.conf │ │ ├── tinge.conf │ │ ├── ubuntu.conf │ │ ├── vibrant-ink.conf │ │ └── zenburn.conf │ ├── filedefs │ │ └── filetypes.README │ ├── geany.conf │ ├── keybindings.conf │ └── templates │ │ └── templates.README ├── htop │ └── htoprc ├── mpv │ ├── input.conf │ └── mpv.conf ├── neofetch │ ├── config.conf │ └── images │ │ ├── arch.png │ │ ├── arch_dark.png │ │ ├── artix.png │ │ ├── bedrock.png │ │ ├── gentoo.png │ │ ├── gentoo_dark.png │ │ ├── lofi.png │ │ ├── sakura.png │ │ ├── ubuntu.png │ │ ├── ubuntu_dark.png │ │ ├── void.png │ │ └── void_dark.png ├── nvim │ ├── .stylua.toml │ ├── examples │ │ ├── chadrc.lua │ │ ├── example_chadrc.lua │ │ ├── example_init.lua │ │ └── init.lua │ ├── init.lua │ ├── lua │ │ ├── colors │ │ │ ├── highlights.lua │ │ │ └── init.lua │ │ ├── core │ │ │ ├── autocmds.lua │ │ │ ├── customPlugins.lua │ │ │ ├── default_config.lua │ │ │ ├── hooks.lua │ │ │ ├── mappings.lua │ │ │ ├── options.lua │ │ │ └── utils.lua │ │ ├── custom │ │ │ ├── chadrc.lua │ │ │ ├── example_chadrc.lua │ │ │ ├── example_init.lua │ │ │ └── init.lua │ │ └── plugins │ │ │ ├── configs │ │ │ ├── bufferline.lua │ │ │ ├── cmp.lua │ │ │ ├── dashboard.lua │ │ │ ├── icons.lua │ │ │ ├── lspconfig.lua │ │ │ ├── lspkind_icons.lua │ │ │ ├── nvimtree.lua │ │ │ ├── others.lua │ │ │ ├── sidebar-nvim.lua │ │ │ ├── statusline.lua │ │ │ ├── telescope.lua │ │ │ └── treesitter.lua │ │ │ ├── init.lua │ │ │ └── packerInit.lua │ └── plugin │ │ └── packer_compiled.lua ├── picom.conf ├── pipewire │ └── pipewire.conf ├── ranger │ ├── commands.py │ ├── plugins │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-310.opt-1.pyc │ │ └── ranger_devicons │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.opt-1.pyc │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ ├── devicons.cpython-310.opt-1.pyc │ │ │ └── devicons.cpython-39.opt-1.pyc │ │ │ └── devicons.py │ ├── rc.conf │ ├── rifle.conf │ └── scope.sh ├── rofi │ ├── assets │ │ ├── dark │ │ │ ├── launcher-header.png │ │ │ └── network-header.png │ │ └── light │ │ │ ├── launcher-header.png │ │ │ └── network-header.png │ ├── config.rasi │ ├── img │ │ ├── back.png │ │ ├── bg-2.jpg │ │ ├── bg.jpg │ │ └── original.png │ ├── scripts │ │ ├── appsmenu.sh │ │ ├── launcher.sh │ │ ├── powermenu.sh │ │ ├── promptmenu.sh │ │ ├── runcommand.sh │ │ ├── screenshot.sh │ │ └── volume.sh │ └── themes │ │ ├── appsmenu.rasi │ │ ├── catppuccin.rasi │ │ ├── forest.rasi │ │ ├── gruv.rasi │ │ ├── launcher.rasi │ │ ├── monitormenu.rasi │ │ ├── networkmenu.rasi │ │ ├── nord.rasi │ │ ├── onedark.rasi │ │ ├── powermenu.rasi │ │ ├── promptmenu.rasi │ │ ├── runcommand.rasi │ │ ├── screenshotsmenu.rasi │ │ ├── shared │ │ ├── colorschemes │ │ │ ├── color-dark.rasi │ │ │ └── color-light.rasi │ │ └── settings.rasi │ │ ├── three-horizontal-MINMOD.rasi │ │ ├── volumemenu.rasi │ │ └── youtubemenu.rasi ├── user-dirs.dirs ├── viewnior │ ├── accel_map │ └── viewnior.conf └── ytfzf │ └── conf.sh ├── .dwm ├── autostart └── bar │ ├── backup.sh │ ├── bar.sh │ └── themes │ ├── aesthetic │ ├── catppuccin │ ├── cyber │ ├── gruvchad │ ├── nord │ ├── onedark │ └── uwu ├── .fonts ├── Cantarell │ ├── Cantarell-Bold.otf │ ├── Cantarell-ExtraBold.otf │ ├── Cantarell-Light.otf │ ├── Cantarell-Regular.otf │ ├── Cantarell-Thin.otf │ └── Cantarell-VF.otf ├── Comfortaa │ ├── Comfortaa-Bold.ttf │ └── Comfortaa-Regular.ttf ├── Feather.ttf ├── Iosevka Nerd Font Complete Mono.ttf ├── Iosevka Nerd Font Complete.ttf ├── M+ 1mn Nerd Font Complete Mono.ttf ├── M+ 1mn Nerd Font Complete.ttf └── Material.ttf ├── .icons ├── Gladient │ ├── advanced-settings.png │ ├── appearance.png │ ├── eyecandy.artistic.png │ ├── eyecandy.interactive.png │ ├── file-manager.png │ ├── find.png │ ├── lock.png │ ├── logout.png │ ├── mechanical.artistic.png │ ├── mechanical.interactive.png │ ├── mode.png │ ├── monitor-settings.png │ ├── music.png │ ├── ob-button-change.png │ ├── ob-button-swap.png │ ├── restart-ui.png │ ├── screenshot.png │ ├── terminal-reverse-visual.png │ ├── terminal.png │ ├── theme.png │ └── wallpaper.png ├── Nordzy │ ├── cursors │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 028006030e0e7ebffc7f7070c0600140 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 03b6e0fcb3499374a867d041f52298f0 │ │ ├── 0426c94ea35c87780ff01dc239897213 │ │ ├── 043a9f68147c53184671403ffa811cc5 │ │ ├── 048008013003cff3c00c801001200000 │ │ ├── 0876e1c15ff2fc01f906f1c363074c0f │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 08ffe1cb5fe6fc01f906f1c063814ccf │ │ ├── 08ffe1e65f80fcfdf9fff11263e74c48 │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 14fef782d02440884392942c11205230 │ │ ├── 208530c400c041818281048008011002 │ │ ├── 2870a09082c103050810ffdffffe0204 │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 38c5dff7c7b8962045400281044508d2 │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 50585d75b494802d0151028115016902 │ │ ├── 5aca4d189052212118709018842178c0 │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9116a3ea924ed2162ecab71ba103b17f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── X_cursor │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── alias │ │ ├── all-scroll │ │ ├── arrow │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── based_arrow_down │ │ ├── based_arrow_up │ │ ├── bd_double_arrow │ │ ├── bottom_left_corner │ │ ├── bottom_right_corner │ │ ├── bottom_side │ │ ├── bottom_tee │ │ ├── c07385c7190e701020ff7ffffd08103c │ │ ├── c7088f0f3e6c8088236ef8e1e3e70000 │ │ ├── cell │ │ ├── center_ptr │ │ ├── circle │ │ ├── clock │ │ ├── closedhand │ │ ├── col-resize │ │ ├── color-picker │ │ ├── context-menu │ │ ├── copy │ │ ├── cross │ │ ├── cross_reverse │ │ ├── crossed_circle │ │ ├── crosshair │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── default │ │ ├── diamond_cross │ │ ├── dnd-ask │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── dot │ │ ├── dot_box_mask │ │ ├── dotbox │ │ ├── double_arrow │ │ ├── down-arrow │ │ ├── down_arrow │ │ ├── draft │ │ ├── draped_box │ │ ├── e-resize │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── ew-resize │ │ ├── f41c0e382c94c0958e07017e42b00462 │ │ ├── f41c0e382c97c0938e07017e42800402 │ │ ├── fcf1c3c7cd4491d801f1e1c78f100000 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── fd_double_arrow │ │ ├── fleur │ │ ├── forbidden │ │ ├── grab │ │ ├── grabbing │ │ ├── gumby │ │ ├── h_double_arrow │ │ ├── half-busy │ │ ├── hand │ │ ├── hand1 │ │ ├── hand2 │ │ ├── help │ │ ├── ibeam │ │ ├── icon │ │ ├── kill │ │ ├── left-arrow │ │ ├── left_arrow │ │ ├── left_ptr │ │ ├── left_ptr_watch │ │ ├── left_side │ │ ├── left_tee │ │ ├── link │ │ ├── ll_angle │ │ ├── lr_angle │ │ ├── move │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── nesw-resize │ │ ├── no-drop │ │ ├── not-allowed │ │ ├── ns-resize │ │ ├── nw-resize │ │ ├── nwse-resize │ │ ├── openhand │ │ ├── pencil │ │ ├── pirate │ │ ├── plus │ │ ├── pointer │ │ ├── pointer-move │ │ ├── pointing_hand │ │ ├── progress │ │ ├── question_arrow │ │ ├── right-arrow │ │ ├── right_arrow │ │ ├── right_ptr │ │ ├── right_side │ │ ├── right_tee │ │ ├── row-resize │ │ ├── s-resize │ │ ├── sb_down_arrow │ │ ├── sb_h_double_arrow │ │ ├── sb_left_arrow │ │ ├── sb_right_arrow │ │ ├── sb_up_arrow │ │ ├── sb_v_double_arrow │ │ ├── se-resize │ │ ├── size-bdiag │ │ ├── size-fdiag │ │ ├── size-hor │ │ ├── size-ver │ │ ├── size_all │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ ├── size_hor │ │ ├── size_ver │ │ ├── split_h │ │ ├── split_v │ │ ├── sw-resize │ │ ├── target │ │ ├── tcross │ │ ├── text │ │ ├── top_left_arrow │ │ ├── top_left_corner │ │ ├── top_right_arrow │ │ ├── top_right_corner │ │ ├── top_side │ │ ├── top_tee │ │ ├── ul_angle │ │ ├── up-arrow │ │ ├── up_arrow │ │ ├── ur_angle │ │ ├── v_double_arrow │ │ ├── vertical-text │ │ ├── w-resize │ │ ├── wait │ │ ├── watch │ │ ├── wayland-cursor │ │ ├── whats_this │ │ ├── x-cursor │ │ ├── xterm │ │ ├── zoom-in │ │ ├── zoom-out │ │ ├── zoom_in │ │ └── zoom_out │ └── index.theme ├── Papirus-Custom.tar.xz ├── Papirus-Dark-Custom.tar.xz ├── aether │ ├── dark │ │ ├── brightness-full.png │ │ ├── brightness-high.png │ │ ├── brightness-low.png │ │ ├── brightness-medium.png │ │ ├── brightness-off.png │ │ ├── headphones.png │ │ ├── info.png │ │ ├── media-next.png │ │ ├── media-playpause.png │ │ ├── media-previous.png │ │ ├── shot.png │ │ ├── small │ │ │ ├── accessories-menu.png │ │ │ ├── changetheme-menu.png │ │ │ ├── changewp.png │ │ │ ├── editors-menu.png │ │ │ ├── filemanager-menu.png │ │ │ ├── internet-menu.png │ │ │ ├── logout.png │ │ │ ├── scripts-menu.png │ │ │ ├── system-menu.png │ │ │ └── terminal-menu.png │ │ ├── speaker.png │ │ ├── theme.png │ │ ├── volume-high.png │ │ ├── volume-low.png │ │ ├── volume-medium.png │ │ ├── volume-muted.png │ │ └── wallpaper.png │ └── light │ │ ├── brightness-full.png │ │ ├── brightness-high.png │ │ ├── brightness-low.png │ │ ├── brightness-medium.png │ │ ├── brightness-off.png │ │ ├── info.png │ │ ├── media-next.png │ │ ├── media-playpause.png │ │ ├── media-previous.png │ │ ├── shot.png │ │ ├── small │ │ ├── accessories-menu.png │ │ ├── changetheme-menu.png │ │ ├── changewp.png │ │ ├── editors-menu.png │ │ ├── filemanager-menu.png │ │ ├── internet-menu.png │ │ ├── logout.png │ │ ├── scripts-menu.png │ │ ├── system-menu.png │ │ └── terminal-menu.png │ │ ├── theme.png │ │ ├── volume-high.png │ │ ├── volume-low.png │ │ ├── volume-medium.png │ │ ├── volume-muted.png │ │ └── wallpaper.png └── default │ └── index.theme ├── .joyfuld ├── .local ├── bin │ ├── hello.sh │ ├── meow │ └── youtube └── share │ ├── applications │ └── nvim.desktop │ └── fonts │ ├── Material.ttf │ ├── MaterialIcons-Regular.ttf │ ├── materialdesignicons-webfont.ttf │ ├── materialdesignicons-webfont.woff │ └── materialdesignicons-webfont.woff2 ├── .mailcap ├── .misc ├── monitor.png ├── neofetch.png ├── nvim.png ├── playlist.png ├── rofi.png ├── thunar.png ├── vid.gif └── youtube.png ├── .mozilla └── firefox │ └── userChrome.css ├── .nano ├── AUTHORS.rst ├── Dockerfile.nanorc ├── Rnw.nanorc ├── apacheconf.nanorc ├── arduino.nanorc ├── asciidoc.nanorc ├── asm.nanorc ├── awk.nanorc ├── batch.nanorc ├── c.nanorc ├── clojure.nanorc ├── cmake.nanorc ├── coffeescript.nanorc ├── colortest.nanorc ├── conf.nanorc ├── conky.nanorc ├── creole.nanorc ├── csh.nanorc ├── csharp.nanorc ├── css.nanorc ├── csv.nanorc ├── cython.nanorc ├── dot.nanorc ├── dotenv.nanorc ├── elixir.nanorc ├── email.nanorc ├── erb.nanorc ├── etc-hosts.nanorc ├── fish.nanorc ├── fortran.nanorc ├── fsharp.nanorc ├── gemini.nanorc ├── genie.nanorc ├── gentoo.nanorc ├── git.nanorc ├── gitcommit.nanorc ├── glsl.nanorc ├── go.nanorc ├── gophermap.nanorc ├── gradle.nanorc ├── groff.nanorc ├── haml.nanorc ├── haskell.nanorc ├── hcl.nanorc ├── html.j2.nanorc ├── html.nanorc ├── i3.nanorc ├── ical.nanorc ├── ini.nanorc ├── inputrc.nanorc ├── install.sh ├── jade.nanorc ├── java.nanorc ├── javascript.nanorc ├── js.nanorc ├── json.nanorc ├── keymap.nanorc ├── kickstart.nanorc ├── kotlin.nanorc ├── ledger.nanorc ├── license ├── lisp.nanorc ├── lua.nanorc ├── m3u.nanorc ├── makefile.nanorc ├── man.nanorc ├── markdown.nanorc ├── moonscript.nanorc ├── mpdconf.nanorc ├── mutt.nanorc ├── nanorc ├── nanorc.nanorc ├── nginx.nanorc ├── nmap.nanorc ├── ocaml.nanorc ├── octave.nanorc ├── patch.nanorc ├── peg.nanorc ├── perl.nanorc ├── perl6.nanorc ├── php.nanorc ├── pkg-config.nanorc ├── pkgbuild.nanorc ├── po.nanorc ├── pov.nanorc ├── powershell.nanorc ├── privoxy.nanorc ├── prolog.nanorc ├── properties.nanorc ├── pug.nanorc ├── puppet.nanorc ├── python.nanorc ├── reST.nanorc ├── readme.md ├── rego.nanorc ├── rever.xsh ├── rpmspec.nanorc ├── ruby.nanorc ├── rust.nanorc ├── scala.nanorc ├── sed.nanorc ├── sh.nanorc ├── shellcheck.sh ├── sieve.nanorc ├── sls.nanorc ├── sparql.nanorc ├── sql.nanorc ├── svn.nanorc ├── swift.nanorc ├── systemd.nanorc ├── tcl.nanorc ├── tex.nanorc ├── toml.nanorc ├── ts.nanorc ├── twig.nanorc ├── vala.nanorc ├── verilog.nanorc ├── vi.nanorc ├── x11basic.nanorc ├── xml.nanorc ├── xresources.nanorc ├── yaml.nanorc ├── yum.nanorc ├── zig.nanorc ├── zsh.nanorc └── zshrc.nanorc ├── .nanorc ├── .oh-my-zsh └── custom │ └── themes │ ├── ar-round.zsh-theme │ ├── arch.zsh-theme │ ├── example.zsh-theme │ ├── la-round.zsh-theme │ ├── lena.zsh-theme │ ├── lnxmbl.zsh-theme │ ├── skill.zsh-theme │ ├── skull.zsh-theme │ ├── theto.zsh-theme │ └── unicorn.zsh-theme ├── .owl4ce_var ├── .scripts ├── default-apps │ ├── launch │ └── list.joy ├── fet ├── killprocess ├── monitor ├── notify │ ├── change-brightness │ ├── change-volume │ ├── notify-send.sh │ └── short-notify ├── playlist ├── playlist-run ├── rxfetch ├── screenshot-countdown.sh ├── screenshot-screen.sh ├── screenshot-selection.sh ├── screenshot.sh ├── show_info.sh ├── volume ├── wp ├── youtube ├── yt-r ├── ytmusic └── zsh │ ├── block │ ├── blockify_conf │ ├── cl │ ├── codify_conf │ ├── rain │ ├── sing │ └── tp ├── .themes ├── ZorinBlue │ ├── gnome-shell │ │ ├── assets │ │ │ ├── activities-active.svg │ │ │ ├── activities.svg │ │ │ ├── calendar-arrow-left.svg │ │ │ ├── calendar-arrow-right.svg │ │ │ ├── calendar-today.svg │ │ │ ├── checkbox-active.svg │ │ │ ├── checkbox-focused.svg │ │ │ ├── checkbox-off-active.svg │ │ │ ├── checkbox-off-focused.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox.svg │ │ │ ├── close-window-active.svg │ │ │ ├── close-window-hover.svg │ │ │ ├── close-window.svg │ │ │ ├── corner-ripple-ltr.svg │ │ │ ├── corner-ripple-rtl.svg │ │ │ ├── dash-placeholder.svg │ │ │ ├── key-enter.svg │ │ │ ├── key-hide.svg │ │ │ ├── key-layout.svg │ │ │ ├── key-shift-latched-uppercase.svg │ │ │ ├── key-shift-uppercase.svg │ │ │ ├── key-shift.svg │ │ │ ├── message-indicator-symbolic.svg │ │ │ ├── noise-texture.svg │ │ │ ├── page-indicator-active.svg │ │ │ ├── page-indicator-checked.svg │ │ │ ├── page-indicator-hover.svg │ │ │ ├── page-indicator-inactive.svg │ │ │ ├── process-working.svg │ │ │ ├── toggle-off.svg │ │ │ └── toggle-on.svg │ │ ├── gnome-shell.css │ │ └── pad-osd.css │ ├── gtk-2.0 │ │ ├── apps.rc │ │ ├── assets │ │ │ ├── arrow-down-insens.png │ │ │ ├── arrow-down-prelight.png │ │ │ ├── arrow-down-small-insens.png │ │ │ ├── arrow-down-small-prelight.png │ │ │ ├── arrow-down-small.png │ │ │ ├── arrow-down.png │ │ │ ├── arrow-left-insens.png │ │ │ ├── arrow-left-prelight.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right-insens.png │ │ │ ├── arrow-right-prelight.png │ │ │ ├── arrow-right.png │ │ │ ├── arrow-up-insens.png │ │ │ ├── arrow-up-prelight.png │ │ │ ├── arrow-up-small-insens.png │ │ │ ├── arrow-up-small-prelight.png │ │ │ ├── arrow-up-small.png │ │ │ ├── arrow-up.png │ │ │ ├── button-active.png │ │ │ ├── button-hover.png │ │ │ ├── button-insensitive.png │ │ │ ├── button.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ ├── combo-entry-border-focus.png │ │ │ ├── combo-entry-border-rtl.png │ │ │ ├── combo-entry-border.png │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ ├── combo-entry-button-active.png │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ ├── combo-entry-button-insensitive.png │ │ │ ├── combo-entry-button-rtl.png │ │ │ ├── combo-entry-button.png │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ ├── combo-entry-focus-notebook.png │ │ │ ├── combo-entry-focus-rtl.png │ │ │ ├── combo-entry-focus.png │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ ├── combo-entry-insensitive.png │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ ├── combo-entry-notebook.png │ │ │ ├── combo-entry-rtl.png │ │ │ ├── combo-entry.png │ │ │ ├── down-background-disable-rtl.png │ │ │ ├── down-background-disable.png │ │ │ ├── down-background-rtl.png │ │ │ ├── down-background.png │ │ │ ├── entry-active-bg.png │ │ │ ├── entry-active-notebook.png │ │ │ ├── entry-active-toolbar.png │ │ │ ├── entry-background-disabled.png │ │ │ ├── entry-background.png │ │ │ ├── entry-bg.png │ │ │ ├── entry-border-active-bg.png │ │ │ ├── entry-border-bg.png │ │ │ ├── entry-disabled-bg.png │ │ │ ├── entry-disabled-notebook.png │ │ │ ├── entry-disabled-toolbar.png │ │ │ ├── entry-notebook.png │ │ │ ├── entry-toolbar.png │ │ │ ├── focus-line.png │ │ │ ├── frame-gap-end.png │ │ │ ├── frame-gap-start.png │ │ │ ├── frame.png │ │ │ ├── handle-h.png │ │ │ ├── handle-v.png │ │ │ ├── inline-toolbar.png │ │ │ ├── line-h.png │ │ │ ├── line-v.png │ │ │ ├── menu-arrow-prelight.png │ │ │ ├── menu-arrow.png │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ ├── menu-checkbox-checked.png │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ ├── menu-checkbox-unchecked.png │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ ├── menu-radio-checked-selected.png │ │ │ ├── menu-radio-checked.png │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ ├── menu-radio-unchecked.png │ │ │ ├── menubar.png │ │ │ ├── menubar_button.png │ │ │ ├── menuitem.png │ │ │ ├── minus.png │ │ │ ├── notebook-gap-horiz.png │ │ │ ├── notebook-gap-vert.png │ │ │ ├── notebook.png │ │ │ ├── null.png │ │ │ ├── pathbar_button_active.png │ │ │ ├── pathbar_button_prelight.png │ │ │ ├── plus.png │ │ │ ├── progressbar.png │ │ │ ├── progressbar_v.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked.png │ │ │ ├── slider-horiz-active.png │ │ │ ├── slider-horiz-insens.png │ │ │ ├── slider-horiz-prelight.png │ │ │ ├── slider-horiz.png │ │ │ ├── slider-insensitive.png │ │ │ ├── slider-prelight.png │ │ │ ├── slider-vert-active.png │ │ │ ├── slider-vert-insens.png │ │ │ ├── slider-vert-prelight.png │ │ │ ├── slider-vert.png │ │ │ ├── slider.png │ │ │ ├── tab-bottom-active.png │ │ │ ├── tab-left-active.png │ │ │ ├── tab-right-active.png │ │ │ ├── tab-top-active.png │ │ │ ├── toolbar.png │ │ │ ├── tree_header.png │ │ │ ├── trough-horizontal-active.png │ │ │ ├── trough-horizontal.png │ │ │ ├── trough-progressbar.png │ │ │ ├── trough-progressbar_v.png │ │ │ ├── trough-scrollbar-horiz.png │ │ │ ├── trough-scrollbar-vert.png │ │ │ ├── trough-vertical-active.png │ │ │ ├── trough-vertical.png │ │ │ ├── up-background-disable-rtl.png │ │ │ ├── up-background-disable.png │ │ │ ├── up-background-rtl.png │ │ │ └── up-background.png │ │ ├── gtkrc │ │ ├── main.rc │ │ ├── menubar-toolbar.rc │ │ ├── panel.rc │ │ └── xfce-notify.rc │ ├── gtk-3.0 │ │ ├── assets │ │ │ ├── bullet-symbolic.svg │ │ │ ├── bullet-symbolic.symbolic.png │ │ │ ├── check-symbolic.svg │ │ │ ├── check-symbolic.symbolic.png │ │ │ ├── dash-symbolic.svg │ │ │ ├── dash-symbolic.symbolic.png │ │ │ ├── slider-horz-scale-has-marks-above-symbolic.svg │ │ │ ├── slider-horz-scale-has-marks-above-symbolic.symbolic.png │ │ │ ├── slider-horz-scale-has-marks-below-symbolic.svg │ │ │ ├── slider-horz-scale-has-marks-below-symbolic.symbolic.png │ │ │ ├── slider-vert-scale-has-marks-above-symbolic.svg │ │ │ ├── slider-vert-scale-has-marks-above-symbolic.symbolic.png │ │ │ ├── slider-vert-scale-has-marks-below-symbolic.svg │ │ │ ├── slider-vert-scale-has-marks-below-symbolic.symbolic.png │ │ │ ├── text-select-end-symbolic.svg │ │ │ ├── text-select-end-symbolic.symbolic.png │ │ │ ├── text-select-start-symbolic.svg │ │ │ └── text-select-start-symbolic.symbolic.png │ │ ├── custom.css │ │ └── gtk.css │ ├── gtk-assets │ │ ├── thunar-sidebar.png │ │ ├── thunar-sidebar.png.bak │ │ └── thunar-sidebars.png │ ├── index.theme │ ├── openbox-3 │ │ ├── close.xbm │ │ ├── close_pressed.xbm │ │ ├── desk.xbm │ │ ├── desk_toggled.xbm │ │ ├── iconify.xbm │ │ ├── iconify_pressed.xbm │ │ ├── max.xbm │ │ ├── max_pressed.xbm │ │ ├── max_toggled.xbm │ │ ├── shade.xbm │ │ ├── shade_pressed.xbm │ │ └── themerc │ └── xfwm4 │ │ ├── bottom-active.png │ │ ├── bottom-active.xpm │ │ ├── bottom-inactive.png │ │ ├── bottom-inactive.xpm │ │ ├── bottom-left-active.png │ │ ├── bottom-left-active.xpm │ │ ├── bottom-left-inactive.png │ │ ├── bottom-left-inactive.xpm │ │ ├── bottom-right-active.png │ │ ├── bottom-right-active.xpm │ │ ├── bottom-right-inactive.png │ │ ├── bottom-right-inactive.xpm │ │ ├── close-active.png │ │ ├── close-active.xpm │ │ ├── close-inactive.png │ │ ├── close-inactive.xpm │ │ ├── close-prelight.png │ │ ├── close-prelight.xpm │ │ ├── close-pressed.png │ │ ├── close-pressed.xpm │ │ ├── hide-active.png │ │ ├── hide-active.xpm │ │ ├── hide-inactive.png │ │ ├── hide-inactive.xpm │ │ ├── hide-prelight.png │ │ ├── hide-prelight.xpm │ │ ├── hide-pressed.png │ │ ├── hide-pressed.xpm │ │ ├── left-active.png │ │ ├── left-active.xpm │ │ ├── left-inactive.png │ │ ├── left-inactive.xpm │ │ ├── maximize-active.png │ │ ├── maximize-active.xpm │ │ ├── maximize-inactive.png │ │ ├── maximize-inactive.xpm │ │ ├── maximize-prelight.png │ │ ├── maximize-prelight.xpm │ │ ├── maximize-pressed.png │ │ ├── maximize-pressed.xpm │ │ ├── maximize-toggled-active.png │ │ ├── maximize-toggled-active.xpm │ │ ├── maximize-toggled-inactive.png │ │ ├── maximize-toggled-inactive.xpm │ │ ├── maximize-toggled-prelight.png │ │ ├── maximize-toggled-prelight.xpm │ │ ├── maximize-toggled-pressed.png │ │ ├── maximize-toggled-pressed.xpm │ │ ├── menu-active.png │ │ ├── menu-active.xpm │ │ ├── menu-inactive.png │ │ ├── menu-inactive.xpm │ │ ├── menu-prelight.png │ │ ├── menu-prelight.xpm │ │ ├── menu-pressed.png │ │ ├── menu-pressed.xpm │ │ ├── right-active.png │ │ ├── right-active.xpm │ │ ├── right-inactive.png │ │ ├── right-inactive.xpm │ │ ├── shade-active.png │ │ ├── shade-active.xpm │ │ ├── shade-inactive.png │ │ ├── shade-inactive.xpm │ │ ├── shade-prelight.png │ │ ├── shade-prelight.xpm │ │ ├── shade-pressed.png │ │ ├── shade-pressed.xpm │ │ ├── shade-toggled-active.png │ │ ├── shade-toggled-active.xpm │ │ ├── shade-toggled-inactive.png │ │ ├── shade-toggled-inactive.xpm │ │ ├── shade-toggled-prelight.png │ │ ├── shade-toggled-prelight.xpm │ │ ├── shade-toggled-pressed.png │ │ ├── shade-toggled-pressed.xpm │ │ ├── stick-active.png │ │ ├── stick-active.xpm │ │ ├── stick-inactive.png │ │ ├── stick-inactive.xpm │ │ ├── stick-prelight.png │ │ ├── stick-prelight.xpm │ │ ├── stick-pressed.png │ │ ├── stick-pressed.xpm │ │ ├── stick-toggled-active.png │ │ ├── stick-toggled-active.xpm │ │ ├── stick-toggled-inactive.png │ │ ├── stick-toggled-inactive.xpm │ │ ├── stick-toggled-prelight.png │ │ ├── stick-toggled-prelight.xpm │ │ ├── stick-toggled-pressed.png │ │ ├── stick-toggled-pressed.xpm │ │ ├── themerc │ │ ├── title-1-active.png │ │ ├── title-1-active.xpm │ │ ├── title-1-inactive.png │ │ ├── title-1-inactive.xpm │ │ ├── title-2-active.png │ │ ├── title-2-active.xpm │ │ ├── title-2-inactive.png │ │ ├── title-2-inactive.xpm │ │ ├── title-3-active.png │ │ ├── title-3-active.xpm │ │ ├── title-3-inactive.png │ │ ├── title-3-inactive.xpm │ │ ├── title-4-active.png │ │ ├── title-4-active.xpm │ │ ├── title-4-inactive.png │ │ ├── title-4-inactive.xpm │ │ ├── title-5-active.png │ │ ├── title-5-active.xpm │ │ ├── title-5-inactive.png │ │ ├── title-5-inactive.xpm │ │ ├── top-left-active.png │ │ ├── top-left-active.xpm │ │ ├── top-left-inactive.png │ │ ├── top-left-inactive.xpm │ │ ├── top-right-active.png │ │ ├── top-right-active.xpm │ │ ├── top-right-inactive.png │ │ └── top-right-inactive.xpm └── ZorinGrey │ ├── gnome-shell │ ├── assets │ │ ├── activities-active.svg │ │ ├── activities.svg │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-today.svg │ │ ├── checkbox-active.svg │ │ ├── checkbox-focused.svg │ │ ├── checkbox-off-active.svg │ │ ├── checkbox-off-focused.svg │ │ ├── checkbox-off.svg │ │ ├── checkbox.svg │ │ ├── close-window-active.svg │ │ ├── close-window-hover.svg │ │ ├── close-window.svg │ │ ├── corner-ripple-ltr.svg │ │ ├── corner-ripple-rtl.svg │ │ ├── dash-placeholder.svg │ │ ├── key-enter.svg │ │ ├── key-hide.svg │ │ ├── key-layout.svg │ │ ├── key-shift-latched-uppercase.svg │ │ ├── key-shift-uppercase.svg │ │ ├── key-shift.svg │ │ ├── message-indicator-symbolic.svg │ │ ├── noise-texture.svg │ │ ├── page-indicator-active.svg │ │ ├── page-indicator-checked.svg │ │ ├── page-indicator-hover.svg │ │ ├── page-indicator-inactive.svg │ │ ├── process-working.svg │ │ ├── toggle-off.svg │ │ └── toggle-on.svg │ ├── gnome-shell.css │ └── pad-osd.css │ ├── gtk-2.0 │ ├── apps.rc │ ├── assets │ │ ├── arrow-down-insens.png │ │ ├── arrow-down-prelight.png │ │ ├── arrow-down-small-insens.png │ │ ├── arrow-down-small-prelight.png │ │ ├── arrow-down-small.png │ │ ├── arrow-down.png │ │ ├── arrow-left-insens.png │ │ ├── arrow-left-prelight.png │ │ ├── arrow-left.png │ │ ├── arrow-right-insens.png │ │ ├── arrow-right-prelight.png │ │ ├── arrow-right.png │ │ ├── arrow-up-insens.png │ │ ├── arrow-up-prelight.png │ │ ├── arrow-up-small-insens.png │ │ ├── arrow-up-small-prelight.png │ │ ├── arrow-up-small.png │ │ ├── arrow-up.png │ │ ├── button-active.png │ │ ├── button-hover.png │ │ ├── button-insensitive.png │ │ ├── button.png │ │ ├── checkbox-checked-insensitive.png │ │ ├── checkbox-checked.png │ │ ├── checkbox-unchecked-insensitive.png │ │ ├── checkbox-unchecked.png │ │ ├── combo-entry-border-focus-rtl.png │ │ ├── combo-entry-border-focus.png │ │ ├── combo-entry-border-rtl.png │ │ ├── combo-entry-border.png │ │ ├── combo-entry-button-active-rtl.png │ │ ├── combo-entry-button-active.png │ │ ├── combo-entry-button-insensitive-rtl.png │ │ ├── combo-entry-button-insensitive.png │ │ ├── combo-entry-button-rtl.png │ │ ├── combo-entry-button.png │ │ ├── combo-entry-focus-notebook-rtl.png │ │ ├── combo-entry-focus-notebook.png │ │ ├── combo-entry-focus-rtl.png │ │ ├── combo-entry-focus.png │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ ├── combo-entry-insensitive-notebook.png │ │ ├── combo-entry-insensitive-rtl.png │ │ ├── combo-entry-insensitive.png │ │ ├── combo-entry-notebook-rtl.png │ │ ├── combo-entry-notebook.png │ │ ├── combo-entry-rtl.png │ │ ├── combo-entry.png │ │ ├── down-background-disable-rtl.png │ │ ├── down-background-disable.png │ │ ├── down-background-rtl.png │ │ ├── down-background.png │ │ ├── entry-active-bg.png │ │ ├── entry-active-notebook.png │ │ ├── entry-active-toolbar.png │ │ ├── entry-background-disabled.png │ │ ├── entry-background.png │ │ ├── entry-bg.png │ │ ├── entry-border-active-bg.png │ │ ├── entry-border-bg.png │ │ ├── entry-disabled-bg.png │ │ ├── entry-disabled-notebook.png │ │ ├── entry-disabled-toolbar.png │ │ ├── entry-notebook.png │ │ ├── entry-toolbar.png │ │ ├── focus-line.png │ │ ├── frame-gap-end.png │ │ ├── frame-gap-start.png │ │ ├── frame.png │ │ ├── handle-h.png │ │ ├── handle-v.png │ │ ├── inline-toolbar.png │ │ ├── line-h.png │ │ ├── line-v.png │ │ ├── menu-arrow-prelight.png │ │ ├── menu-arrow.png │ │ ├── menu-checkbox-checked-insensitive.png │ │ ├── menu-checkbox-checked-selected.png │ │ ├── menu-checkbox-checked.png │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ ├── menu-checkbox-unchecked-selected.png │ │ ├── menu-checkbox-unchecked.png │ │ ├── menu-radio-checked-insensitive.png │ │ ├── menu-radio-checked-selected.png │ │ ├── menu-radio-checked.png │ │ ├── menu-radio-unchecked-insensitive.png │ │ ├── menu-radio-unchecked-selected.png │ │ ├── menu-radio-unchecked.png │ │ ├── menubar.png │ │ ├── menubar_button.png │ │ ├── menuitem.png │ │ ├── minus.png │ │ ├── notebook-gap-horiz.png │ │ ├── notebook-gap-vert.png │ │ ├── notebook.png │ │ ├── null.png │ │ ├── pathbar_button_active.png │ │ ├── pathbar_button_prelight.png │ │ ├── plus.png │ │ ├── progressbar.png │ │ ├── progressbar_v.png │ │ ├── radio-checked-insensitive.png │ │ ├── radio-checked.png │ │ ├── radio-unchecked-insensitive.png │ │ ├── radio-unchecked.png │ │ ├── slider-horiz-active.png │ │ ├── slider-horiz-insens.png │ │ ├── slider-horiz-prelight.png │ │ ├── slider-horiz.png │ │ ├── slider-insensitive.png │ │ ├── slider-prelight.png │ │ ├── slider-vert-active.png │ │ ├── slider-vert-insens.png │ │ ├── slider-vert-prelight.png │ │ ├── slider-vert.png │ │ ├── slider.png │ │ ├── tab-bottom-active.png │ │ ├── tab-left-active.png │ │ ├── tab-right-active.png │ │ ├── tab-top-active.png │ │ ├── toolbar.png │ │ ├── tree_header.png │ │ ├── trough-horizontal-active.png │ │ ├── trough-horizontal.png │ │ ├── trough-progressbar.png │ │ ├── trough-progressbar_v.png │ │ ├── trough-scrollbar-horiz.png │ │ ├── trough-scrollbar-vert.png │ │ ├── trough-vertical-active.png │ │ ├── trough-vertical.png │ │ ├── up-background-disable-rtl.png │ │ ├── up-background-disable.png │ │ ├── up-background-rtl.png │ │ └── up-background.png │ ├── gtkrc │ ├── main.rc │ ├── menubar-toolbar.rc │ ├── panel.rc │ └── xfce-notify.rc │ ├── gtk-3.0 │ ├── assets │ │ ├── bullet-symbolic.svg │ │ ├── bullet-symbolic.symbolic.png │ │ ├── check-symbolic.svg │ │ ├── check-symbolic.symbolic.png │ │ ├── dash-symbolic.svg │ │ ├── dash-symbolic.symbolic.png │ │ ├── slider-horz-scale-has-marks-above-symbolic.svg │ │ ├── slider-horz-scale-has-marks-above-symbolic.symbolic.png │ │ ├── slider-horz-scale-has-marks-below-symbolic.svg │ │ ├── slider-horz-scale-has-marks-below-symbolic.symbolic.png │ │ ├── slider-vert-scale-has-marks-above-symbolic.svg │ │ ├── slider-vert-scale-has-marks-above-symbolic.symbolic.png │ │ ├── slider-vert-scale-has-marks-below-symbolic.svg │ │ ├── slider-vert-scale-has-marks-below-symbolic.symbolic.png │ │ ├── text-select-end-symbolic.svg │ │ ├── text-select-end-symbolic.symbolic.png │ │ ├── text-select-start-symbolic.svg │ │ └── text-select-start-symbolic.symbolic.png │ ├── custom.css │ └── gtk.css │ ├── gtk-assets │ ├── thunar-sidebar.png │ ├── thunar-sidebar.png.bak │ └── thunar-sidebar.png.bak2 │ ├── index.theme │ ├── openbox-3 │ ├── close.xbm │ ├── close_pressed.xbm │ ├── desk.xbm │ ├── desk_toggled.xbm │ ├── iconify.xbm │ ├── iconify_pressed.xbm │ ├── max.xbm │ ├── max_pressed.xbm │ ├── max_toggled.xbm │ ├── shade.xbm │ ├── shade_pressed.xbm │ └── themerc │ └── xfwm4 │ ├── bottom-active.png │ ├── bottom-active.xpm │ ├── bottom-inactive.png │ ├── bottom-inactive.xpm │ ├── bottom-left-active.png │ ├── bottom-left-active.xpm │ ├── bottom-left-inactive.png │ ├── bottom-left-inactive.xpm │ ├── bottom-right-active.png │ ├── bottom-right-active.xpm │ ├── bottom-right-inactive.png │ ├── bottom-right-inactive.xpm │ ├── close-active.png │ ├── close-active.xpm │ ├── close-inactive.png │ ├── close-inactive.xpm │ ├── close-prelight.png │ ├── close-prelight.xpm │ ├── close-pressed.png │ ├── close-pressed.xpm │ ├── hide-active.png │ ├── hide-active.xpm │ ├── hide-inactive.png │ ├── hide-inactive.xpm │ ├── hide-prelight.png │ ├── hide-prelight.xpm │ ├── hide-pressed.png │ ├── hide-pressed.xpm │ ├── left-active.png │ ├── left-active.xpm │ ├── left-inactive.png │ ├── left-inactive.xpm │ ├── maximize-active.png │ ├── maximize-active.xpm │ ├── maximize-inactive.png │ ├── maximize-inactive.xpm │ ├── maximize-prelight.png │ ├── maximize-prelight.xpm │ ├── maximize-pressed.png │ ├── maximize-pressed.xpm │ ├── maximize-toggled-active.png │ ├── maximize-toggled-active.xpm │ ├── maximize-toggled-inactive.png │ ├── maximize-toggled-inactive.xpm │ ├── maximize-toggled-prelight.png │ ├── maximize-toggled-prelight.xpm │ ├── maximize-toggled-pressed.png │ ├── maximize-toggled-pressed.xpm │ ├── menu-active.png │ ├── menu-active.xpm │ ├── menu-inactive.png │ ├── menu-inactive.xpm │ ├── menu-prelight.png │ ├── menu-prelight.xpm │ ├── menu-pressed.png │ ├── menu-pressed.xpm │ ├── right-active.png │ ├── right-active.xpm │ ├── right-inactive.png │ ├── right-inactive.xpm │ ├── shade-active.png │ ├── shade-active.xpm │ ├── shade-inactive.png │ ├── shade-inactive.xpm │ ├── shade-prelight.png │ ├── shade-prelight.xpm │ ├── shade-pressed.png │ ├── shade-pressed.xpm │ ├── shade-toggled-active.png │ ├── shade-toggled-active.xpm │ ├── shade-toggled-inactive.png │ ├── shade-toggled-inactive.xpm │ ├── shade-toggled-prelight.png │ ├── shade-toggled-prelight.xpm │ ├── shade-toggled-pressed.png │ ├── shade-toggled-pressed.xpm │ ├── stick-active.png │ ├── stick-active.xpm │ ├── stick-inactive.png │ ├── stick-inactive.xpm │ ├── stick-prelight.png │ ├── stick-prelight.xpm │ ├── stick-pressed.png │ ├── stick-pressed.xpm │ ├── stick-toggled-active.png │ ├── stick-toggled-active.xpm │ ├── stick-toggled-inactive.png │ ├── stick-toggled-inactive.xpm │ ├── stick-toggled-prelight.png │ ├── stick-toggled-prelight.xpm │ ├── stick-toggled-pressed.png │ ├── stick-toggled-pressed.xpm │ ├── themerc │ ├── title-1-active.png │ ├── title-1-active.xpm │ ├── title-1-inactive.png │ ├── title-1-inactive.xpm │ ├── title-2-active.png │ ├── title-2-active.xpm │ ├── title-2-inactive.png │ ├── title-2-inactive.xpm │ ├── title-3-active.png │ ├── title-3-active.xpm │ ├── title-3-inactive.png │ ├── title-3-inactive.xpm │ ├── title-4-active.png │ ├── title-4-active.xpm │ ├── title-4-inactive.png │ ├── title-4-inactive.xpm │ ├── title-5-active.png │ ├── title-5-active.xpm │ ├── title-5-inactive.png │ ├── title-5-inactive.xpm │ ├── top-left-active.png │ ├── top-left-active.xpm │ ├── top-left-inactive.png │ ├── top-left-inactive.xpm │ ├── top-right-active.png │ ├── top-right-active.xpm │ ├── top-right-inactive.png │ └── top-right-inactive.xpm ├── .wallpapers ├── .random ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 4.png ├── 5.jpg ├── 6.jpg └── 7.png ├── .xinitrc ├── .zshrc ├── README.md ├── lnxdwm ├── Makefile ├── config.def.h ├── config.h ├── config.mk ├── drw.c ├── drw.h ├── drw.o ├── dwm ├── dwm.1 ├── dwm.c ├── dwm.o ├── dwm.png ├── fibonacci.c ├── functions.h ├── gaplessgrid.c ├── movestack.c ├── themes │ ├── catppuccin.h │ ├── gruvchad.h │ ├── nord.h │ └── onedark.h ├── transient.c ├── util.c ├── util.h ├── util.o └── vanitygaps.c ├── st ├── LICENSE ├── Makefile ├── README.md ├── arg.h ├── boxdraw.c ├── boxdraw.o ├── boxdraw_data.h ├── config.def.h ├── config.h ├── config.mk ├── hb.c ├── hb.h ├── hb.o ├── normalMode.c ├── normalMode.h ├── shell.nix ├── st ├── st-copyout ├── st-urlhandler ├── st.1 ├── st.c ├── st.desktop ├── st.h ├── st.info ├── st.o ├── utils.h ├── win.h ├── x.c ├── x.o └── xresources └── termstart ├── .assets ├── decaf.png ├── dracula.png ├── gruvbox-dark.png ├── gruvbox-light.png ├── material.png ├── nord.png ├── pastel.png ├── solarized.png ├── tomorrow.png └── vice.png ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── css ├── style.css └── themes.css ├── favicons ├── favicon-1.png ├── favicon-2.png ├── favicon-3.png ├── favicon-4.png └── favicon.ico ├── index.html ├── js ├── bowser.js ├── commands.js ├── consts.js ├── helpers.js ├── main.js ├── utils.js └── writers.js └── manifest.json /.config/geany/keybindings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/geany/keybindings.conf -------------------------------------------------------------------------------- /.config/neofetch/images/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/arch.png -------------------------------------------------------------------------------- /.config/neofetch/images/arch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/arch_dark.png -------------------------------------------------------------------------------- /.config/neofetch/images/artix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/artix.png -------------------------------------------------------------------------------- /.config/neofetch/images/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/bedrock.png -------------------------------------------------------------------------------- /.config/neofetch/images/gentoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/gentoo.png -------------------------------------------------------------------------------- /.config/neofetch/images/gentoo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/gentoo_dark.png -------------------------------------------------------------------------------- /.config/neofetch/images/lofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/lofi.png -------------------------------------------------------------------------------- /.config/neofetch/images/sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/sakura.png -------------------------------------------------------------------------------- /.config/neofetch/images/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/ubuntu.png -------------------------------------------------------------------------------- /.config/neofetch/images/ubuntu_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/ubuntu_dark.png -------------------------------------------------------------------------------- /.config/neofetch/images/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/void.png -------------------------------------------------------------------------------- /.config/neofetch/images/void_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/neofetch/images/void_dark.png -------------------------------------------------------------------------------- /.config/nvim/.stylua.toml: -------------------------------------------------------------------------------- 1 | column_width = 120 2 | line_endings = "Unix" 3 | indent_type = "Spaces" 4 | indent_width = 3 5 | quote_style = "AutoPreferDouble" 6 | no_call_parentheses = true 7 | -------------------------------------------------------------------------------- /.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /.config/ranger/plugins/__pycache__/__init__.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/ranger/plugins/__pycache__/__init__.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /.config/rofi/assets/dark/launcher-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/assets/dark/launcher-header.png -------------------------------------------------------------------------------- /.config/rofi/assets/dark/network-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/assets/dark/network-header.png -------------------------------------------------------------------------------- /.config/rofi/assets/light/launcher-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/assets/light/launcher-header.png -------------------------------------------------------------------------------- /.config/rofi/assets/light/network-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/assets/light/network-header.png -------------------------------------------------------------------------------- /.config/rofi/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/img/back.png -------------------------------------------------------------------------------- /.config/rofi/img/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/img/bg-2.jpg -------------------------------------------------------------------------------- /.config/rofi/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/img/bg.jpg -------------------------------------------------------------------------------- /.config/rofi/img/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/img/original.png -------------------------------------------------------------------------------- /.config/rofi/scripts/appsmenu.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | rofi -no-lazy-grab -show drun -theme themes/appsmenu.rasi 4 | # rofi -no-lazy-grab -show drun 5 | -------------------------------------------------------------------------------- /.config/rofi/scripts/launcher.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | rofi -no-lazy-grab -show drun -theme themes/launcher.rasi 4 | 5 | # rofi -show drun -theme themes/launcher.rasi 6 | -------------------------------------------------------------------------------- /.config/rofi/scripts/runcommand.sh: -------------------------------------------------------------------------------- 1 | rofi -no-lazy-grab -show run -theme themes/runcommand.rasi 2 | -------------------------------------------------------------------------------- /.config/rofi/themes/runcommand.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.config/rofi/themes/runcommand.rasi -------------------------------------------------------------------------------- /.config/rofi/themes/shared/settings.rasi: -------------------------------------------------------------------------------- 1 | @import "colorschemes/color-dark.rasi" 2 | -------------------------------------------------------------------------------- /.dwm/bar/themes/catppuccin: -------------------------------------------------------------------------------- 1 | #!/bin/dash 2 | 3 | # colors 4 | 5 | black=#1E1D2D 6 | green=#ABE9B3 7 | white=#D9E0EE 8 | grey=#282737 9 | blue=#96CDFB 10 | red=#F28FAD 11 | darkblue=#83bae8 12 | -------------------------------------------------------------------------------- /.dwm/bar/themes/cyber: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # colors 4 | 5 | black=#1c0c18 6 | green=#2a5b6f 7 | white=#d4b9d7 8 | grey=#1a1e31 9 | blue=#685589 10 | red=#9a2d44 11 | darkblue=#7d314e 12 | yellow=#ce4b6d 13 | pink=#9f3f63 14 | -------------------------------------------------------------------------------- /.dwm/bar/themes/gruvchad: -------------------------------------------------------------------------------- 1 | #!/bin/dash 2 | 3 | # colors 4 | 5 | black=#222526 6 | green=#89b482 7 | white=#c7b89d 8 | grey=#2b2e2f 9 | blue=#6f8faf 10 | red=#ec6b64 11 | darkblue=#6080a0 12 | -------------------------------------------------------------------------------- /.dwm/bar/themes/nord: -------------------------------------------------------------------------------- 1 | #!/bin/dash 2 | 3 | # colors 4 | 5 | black=#2E3440 6 | green=#A3BE8C 7 | white=#D8DEE9 8 | grey=#373d49 9 | blue=#81A1C1 10 | red=#BF616A 11 | darkblue=#7292b2 12 | -------------------------------------------------------------------------------- /.dwm/bar/themes/onedark: -------------------------------------------------------------------------------- 1 | #!/bin/dash 2 | 3 | # colors 4 | 5 | black=#1e222a 6 | green=#7eca9c 7 | white=#abb2bf 8 | grey=#282c34 9 | blue=#7aa2f7 10 | red=#d47d85 11 | darkblue=#668ee3 12 | -------------------------------------------------------------------------------- /.dwm/bar/themes/uwu: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # colors 4 | 5 | black=#131a1c 6 | green=#6bb05d 7 | white=#c5c8c9 8 | grey=#232a2c 9 | blue=#53a7bf 10 | red=#f65b5b 11 | darkblue=#6cbad1 12 | yellow=#e59e67 13 | pink=#b185db 14 | -------------------------------------------------------------------------------- /.fonts/Cantarell/Cantarell-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Cantarell/Cantarell-Bold.otf -------------------------------------------------------------------------------- /.fonts/Cantarell/Cantarell-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Cantarell/Cantarell-ExtraBold.otf -------------------------------------------------------------------------------- /.fonts/Cantarell/Cantarell-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Cantarell/Cantarell-Light.otf -------------------------------------------------------------------------------- /.fonts/Cantarell/Cantarell-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Cantarell/Cantarell-Regular.otf -------------------------------------------------------------------------------- /.fonts/Cantarell/Cantarell-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Cantarell/Cantarell-Thin.otf -------------------------------------------------------------------------------- /.fonts/Cantarell/Cantarell-VF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Cantarell/Cantarell-VF.otf -------------------------------------------------------------------------------- /.fonts/Comfortaa/Comfortaa-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Comfortaa/Comfortaa-Bold.ttf -------------------------------------------------------------------------------- /.fonts/Comfortaa/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Comfortaa/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /.fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Feather.ttf -------------------------------------------------------------------------------- /.fonts/Iosevka Nerd Font Complete Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Iosevka Nerd Font Complete Mono.ttf -------------------------------------------------------------------------------- /.fonts/Iosevka Nerd Font Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Iosevka Nerd Font Complete.ttf -------------------------------------------------------------------------------- /.fonts/M+ 1mn Nerd Font Complete Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/M+ 1mn Nerd Font Complete Mono.ttf -------------------------------------------------------------------------------- /.fonts/M+ 1mn Nerd Font Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/M+ 1mn Nerd Font Complete.ttf -------------------------------------------------------------------------------- /.fonts/Material.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.fonts/Material.ttf -------------------------------------------------------------------------------- /.icons/Gladient/advanced-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/advanced-settings.png -------------------------------------------------------------------------------- /.icons/Gladient/appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/appearance.png -------------------------------------------------------------------------------- /.icons/Gladient/eyecandy.artistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/eyecandy.artistic.png -------------------------------------------------------------------------------- /.icons/Gladient/eyecandy.interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/eyecandy.interactive.png -------------------------------------------------------------------------------- /.icons/Gladient/file-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/file-manager.png -------------------------------------------------------------------------------- /.icons/Gladient/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/find.png -------------------------------------------------------------------------------- /.icons/Gladient/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/lock.png -------------------------------------------------------------------------------- /.icons/Gladient/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/logout.png -------------------------------------------------------------------------------- /.icons/Gladient/mechanical.artistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/mechanical.artistic.png -------------------------------------------------------------------------------- /.icons/Gladient/mechanical.interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/mechanical.interactive.png -------------------------------------------------------------------------------- /.icons/Gladient/mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/mode.png -------------------------------------------------------------------------------- /.icons/Gladient/monitor-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/monitor-settings.png -------------------------------------------------------------------------------- /.icons/Gladient/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/music.png -------------------------------------------------------------------------------- /.icons/Gladient/ob-button-change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/ob-button-change.png -------------------------------------------------------------------------------- /.icons/Gladient/ob-button-swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/ob-button-swap.png -------------------------------------------------------------------------------- /.icons/Gladient/restart-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/restart-ui.png -------------------------------------------------------------------------------- /.icons/Gladient/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/screenshot.png -------------------------------------------------------------------------------- /.icons/Gladient/terminal-reverse-visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/terminal-reverse-visual.png -------------------------------------------------------------------------------- /.icons/Gladient/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/terminal.png -------------------------------------------------------------------------------- /.icons/Gladient/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/theme.png -------------------------------------------------------------------------------- /.icons/Gladient/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Gladient/wallpaper.png -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/028006030e0e7ebffc7f7070c0600140: -------------------------------------------------------------------------------- 1 | ew-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/03b6e0fcb3499374a867d041f52298f0: -------------------------------------------------------------------------------- 1 | dnd-no-drop -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/0426c94ea35c87780ff01dc239897213: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/043a9f68147c53184671403ffa811cc5: -------------------------------------------------------------------------------- 1 | col-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/048008013003cff3c00c801001200000: -------------------------------------------------------------------------------- 1 | vertical-text -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/0876e1c15ff2fc01f906f1c363074c0f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/08ffe1cb5fe6fc01f906f1c063814ccf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/08ffe1e65f80fcfdf9fff11263e74c48: -------------------------------------------------------------------------------- 1 | context-menu -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/14fef782d02440884392942c11205230: -------------------------------------------------------------------------------- 1 | col-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/208530c400c041818281048008011002: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/2870a09082c103050810ffdffffe0204: -------------------------------------------------------------------------------- 1 | row-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/38c5dff7c7b8962045400281044508d2: -------------------------------------------------------------------------------- 1 | nwse-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/50585d75b494802d0151028115016902: -------------------------------------------------------------------------------- 1 | nesw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/5aca4d189052212118709018842178c0: -------------------------------------------------------------------------------- 1 | openhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/9116a3ea924ed2162ecab71ba103b17f: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | openhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/X_cursor: -------------------------------------------------------------------------------- 1 | x-cursor -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/all-scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/all-scroll -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/arrow: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/based_arrow_down: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/based_arrow_up: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/bd_double_arrow: -------------------------------------------------------------------------------- 1 | nwse-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/bottom_left_corner: -------------------------------------------------------------------------------- 1 | sw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/bottom_right_corner: -------------------------------------------------------------------------------- 1 | se-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/bottom_side: -------------------------------------------------------------------------------- 1 | s-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/bottom_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/bottom_tee -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/c07385c7190e701020ff7ffffd08103c: -------------------------------------------------------------------------------- 1 | row-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/c7088f0f3e6c8088236ef8e1e3e70000: -------------------------------------------------------------------------------- 1 | nwse-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/cell -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/center_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/center_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/circle -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/clock: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/closedhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/col-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/col-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/color-picker -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/context-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/context-menu -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/copy -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/cross -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/cross_reverse: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/crosshair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/crosshair -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/default: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/diamond_cross: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dnd-ask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/dnd-ask -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dnd-copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/dnd-copy -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dnd-link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/dnd-link -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dnd-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/dnd-move -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dnd-no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/dnd-no-drop -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/dot -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dot_box_mask: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/dotbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/dotbox -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/double_arrow: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/down-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/down-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/down_arrow: -------------------------------------------------------------------------------- 1 | down-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/draft: -------------------------------------------------------------------------------- 1 | pencil -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/draped_box: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/e-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/e-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/ew-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/ew-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/f41c0e382c94c0958e07017e42b00462: -------------------------------------------------------------------------------- 1 | zoom-in -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/f41c0e382c97c0938e07017e42800402: -------------------------------------------------------------------------------- 1 | zoom-out -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/fcf1c3c7cd4491d801f1e1c78f100000: -------------------------------------------------------------------------------- 1 | nesw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/fd_double_arrow: -------------------------------------------------------------------------------- 1 | nesw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/fleur: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/forbidden: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/grab: -------------------------------------------------------------------------------- 1 | openhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/grabbing: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/gumby: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/h_double_arrow: -------------------------------------------------------------------------------- 1 | ew-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/half-busy: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/hand: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/hand1: -------------------------------------------------------------------------------- 1 | openhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/help -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/ibeam: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/icon: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/kill: -------------------------------------------------------------------------------- 1 | pirate -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/left-arrow: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/left_arrow: -------------------------------------------------------------------------------- 1 | left-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/left_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/left_side: -------------------------------------------------------------------------------- 1 | w-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/left_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/left_tee -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/link -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/ll_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/ll_angle -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/lr_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/lr_angle -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/move -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/n-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/n-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/ne-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/ne-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/nesw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/nesw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/no-drop: -------------------------------------------------------------------------------- 1 | dnd-no-drop -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/not-allowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/not-allowed -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/ns-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/nw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/nw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/nwse-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/nwse-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/openhand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/pencil -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/pirate -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/plus: -------------------------------------------------------------------------------- 1 | cell -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/pointer-move: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/pointing_hand -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/progress -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/right-arrow: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/right_arrow: -------------------------------------------------------------------------------- 1 | right-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/right_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/right_side: -------------------------------------------------------------------------------- 1 | e-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/right_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/right_tee -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/row-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/row-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/s-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/s-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/sb_down_arrow: -------------------------------------------------------------------------------- 1 | down-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | ew-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/sb_left_arrow: -------------------------------------------------------------------------------- 1 | left-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/sb_right_arrow: -------------------------------------------------------------------------------- 1 | right-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/sb_up_arrow: -------------------------------------------------------------------------------- 1 | up-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/se-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/se-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size-bdiag: -------------------------------------------------------------------------------- 1 | nesw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size-fdiag: -------------------------------------------------------------------------------- 1 | nwse-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size-hor: -------------------------------------------------------------------------------- 1 | ew-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size-ver: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size_all: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size_bdiag: -------------------------------------------------------------------------------- 1 | nesw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size_fdiag: -------------------------------------------------------------------------------- 1 | nwse-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size_hor: -------------------------------------------------------------------------------- 1 | ew-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/size_ver: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/split_h: -------------------------------------------------------------------------------- 1 | ew-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/split_v: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/sw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/sw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/target: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/tcross: -------------------------------------------------------------------------------- 1 | crosshair -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/text -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/top_left_arrow: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/top_left_corner: -------------------------------------------------------------------------------- 1 | nw-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/top_right_arrow: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/top_right_corner: -------------------------------------------------------------------------------- 1 | ne-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/top_side: -------------------------------------------------------------------------------- 1 | n-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/top_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/top_tee -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/ul_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/ul_angle -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/up-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/up-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/up_arrow: -------------------------------------------------------------------------------- 1 | up-arrow -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/ur_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/ur_angle -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | ns-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/vertical-text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/vertical-text -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/w-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/w-resize -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/wait -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/wayland-cursor: -------------------------------------------------------------------------------- 1 | x-cursor -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/x-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/x-cursor -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/xterm: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/zoom-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/zoom-in -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/zoom-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Nordzy/cursors/zoom-out -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/zoom_in: -------------------------------------------------------------------------------- 1 | zoom-in -------------------------------------------------------------------------------- /.icons/Nordzy/cursors/zoom_out: -------------------------------------------------------------------------------- 1 | zoom-out -------------------------------------------------------------------------------- /.icons/Nordzy/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name="Nordzy-cursors" 3 | -------------------------------------------------------------------------------- /.icons/Papirus-Custom.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Papirus-Custom.tar.xz -------------------------------------------------------------------------------- /.icons/Papirus-Dark-Custom.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/Papirus-Dark-Custom.tar.xz -------------------------------------------------------------------------------- /.icons/aether/dark/brightness-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/brightness-full.png -------------------------------------------------------------------------------- /.icons/aether/dark/brightness-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/brightness-high.png -------------------------------------------------------------------------------- /.icons/aether/dark/brightness-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/brightness-low.png -------------------------------------------------------------------------------- /.icons/aether/dark/brightness-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/brightness-medium.png -------------------------------------------------------------------------------- /.icons/aether/dark/brightness-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/brightness-off.png -------------------------------------------------------------------------------- /.icons/aether/dark/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/headphones.png -------------------------------------------------------------------------------- /.icons/aether/dark/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/info.png -------------------------------------------------------------------------------- /.icons/aether/dark/media-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/media-next.png -------------------------------------------------------------------------------- /.icons/aether/dark/media-playpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/media-playpause.png -------------------------------------------------------------------------------- /.icons/aether/dark/media-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/media-previous.png -------------------------------------------------------------------------------- /.icons/aether/dark/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/shot.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/accessories-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/accessories-menu.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/changetheme-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/changetheme-menu.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/changewp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/changewp.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/editors-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/editors-menu.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/filemanager-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/filemanager-menu.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/internet-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/internet-menu.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/logout.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/scripts-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/scripts-menu.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/system-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/system-menu.png -------------------------------------------------------------------------------- /.icons/aether/dark/small/terminal-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/small/terminal-menu.png -------------------------------------------------------------------------------- /.icons/aether/dark/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/speaker.png -------------------------------------------------------------------------------- /.icons/aether/dark/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/theme.png -------------------------------------------------------------------------------- /.icons/aether/dark/volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/volume-high.png -------------------------------------------------------------------------------- /.icons/aether/dark/volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/volume-low.png -------------------------------------------------------------------------------- /.icons/aether/dark/volume-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/volume-medium.png -------------------------------------------------------------------------------- /.icons/aether/dark/volume-muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/volume-muted.png -------------------------------------------------------------------------------- /.icons/aether/dark/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/dark/wallpaper.png -------------------------------------------------------------------------------- /.icons/aether/light/brightness-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/brightness-full.png -------------------------------------------------------------------------------- /.icons/aether/light/brightness-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/brightness-high.png -------------------------------------------------------------------------------- /.icons/aether/light/brightness-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/brightness-low.png -------------------------------------------------------------------------------- /.icons/aether/light/brightness-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/brightness-medium.png -------------------------------------------------------------------------------- /.icons/aether/light/brightness-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/brightness-off.png -------------------------------------------------------------------------------- /.icons/aether/light/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/info.png -------------------------------------------------------------------------------- /.icons/aether/light/media-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/media-next.png -------------------------------------------------------------------------------- /.icons/aether/light/media-playpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/media-playpause.png -------------------------------------------------------------------------------- /.icons/aether/light/media-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/media-previous.png -------------------------------------------------------------------------------- /.icons/aether/light/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/shot.png -------------------------------------------------------------------------------- /.icons/aether/light/small/accessories-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/accessories-menu.png -------------------------------------------------------------------------------- /.icons/aether/light/small/changetheme-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/changetheme-menu.png -------------------------------------------------------------------------------- /.icons/aether/light/small/changewp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/changewp.png -------------------------------------------------------------------------------- /.icons/aether/light/small/editors-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/editors-menu.png -------------------------------------------------------------------------------- /.icons/aether/light/small/filemanager-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/filemanager-menu.png -------------------------------------------------------------------------------- /.icons/aether/light/small/internet-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/internet-menu.png -------------------------------------------------------------------------------- /.icons/aether/light/small/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/logout.png -------------------------------------------------------------------------------- /.icons/aether/light/small/scripts-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/scripts-menu.png -------------------------------------------------------------------------------- /.icons/aether/light/small/system-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/system-menu.png -------------------------------------------------------------------------------- /.icons/aether/light/small/terminal-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/small/terminal-menu.png -------------------------------------------------------------------------------- /.icons/aether/light/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/theme.png -------------------------------------------------------------------------------- /.icons/aether/light/volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/volume-high.png -------------------------------------------------------------------------------- /.icons/aether/light/volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/volume-low.png -------------------------------------------------------------------------------- /.icons/aether/light/volume-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/volume-medium.png -------------------------------------------------------------------------------- /.icons/aether/light/volume-muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/volume-muted.png -------------------------------------------------------------------------------- /.icons/aether/light/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.icons/aether/light/wallpaper.png -------------------------------------------------------------------------------- /.icons/default/index.theme: -------------------------------------------------------------------------------- 1 | # This file is written by LXAppearance. Do not edit. 2 | [Icon Theme] 3 | Name=Default 4 | Comment=Default Cursor Theme 5 | Inherits=Adwaita 6 | -------------------------------------------------------------------------------- /.local/share/fonts/Material.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.local/share/fonts/Material.ttf -------------------------------------------------------------------------------- /.local/share/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.local/share/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /.local/share/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.local/share/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /.local/share/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.local/share/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /.local/share/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.local/share/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /.misc/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.misc/monitor.png -------------------------------------------------------------------------------- /.misc/neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.misc/neofetch.png -------------------------------------------------------------------------------- /.misc/nvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.misc/nvim.png -------------------------------------------------------------------------------- /.misc/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.misc/playlist.png -------------------------------------------------------------------------------- /.misc/rofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.misc/rofi.png -------------------------------------------------------------------------------- /.misc/thunar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.misc/thunar.png -------------------------------------------------------------------------------- /.misc/vid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.misc/vid.gif -------------------------------------------------------------------------------- /.misc/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.misc/youtube.png -------------------------------------------------------------------------------- /.nano/email.nanorc: -------------------------------------------------------------------------------- 1 | syntax "Email" "\.em(ai)?l$" 2 | 3 | color magenta "^>([^>].*|$)" 4 | color blue "^> ?>([^>].*|$)" 5 | color green "^> ?> ?>.*" 6 | -------------------------------------------------------------------------------- /.nano/gitcommit.nanorc: -------------------------------------------------------------------------------- 1 | git.nanorc -------------------------------------------------------------------------------- /.nano/html.j2.nanorc: -------------------------------------------------------------------------------- 1 | html.nanorc -------------------------------------------------------------------------------- /.nano/mutt.nanorc: -------------------------------------------------------------------------------- 1 | ## Here is an example for quoted emails (under e.g. mutt). 2 | ## 3 | syntax "Mutt" 4 | color green "^>.*" 5 | -------------------------------------------------------------------------------- /.nano/properties.nanorc: -------------------------------------------------------------------------------- 1 | syntax "properties" "\.properties$" 2 | # property key 3 | icolor green "^[^:=]+[:=]" 4 | 5 | # comments 6 | icolor blue "([[:space:]])*[#!].*$" 7 | -------------------------------------------------------------------------------- /.nano/shellcheck.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ev 2 | # Shellcheck the script 3 | 4 | shellcheck install.sh 5 | -------------------------------------------------------------------------------- /.nano/twig.nanorc: -------------------------------------------------------------------------------- 1 | html.nanorc -------------------------------------------------------------------------------- /.nano/zshrc.nanorc: -------------------------------------------------------------------------------- 1 | zsh.nanorc -------------------------------------------------------------------------------- /.oh-my-zsh/custom/themes/arch.zsh-theme: -------------------------------------------------------------------------------- 1 | build_prompt(){ 2 | echo -n "%F{blue}╭─[ %n@arch ]──[ %~ ]\n╰── \033[0m" 3 | } 4 | 5 | PROMPT=$(build_prompt) 6 | RPROMPT='%(?.%F{green}.%F{red} %?)' 7 | setopt transientrprompt 8 | -------------------------------------------------------------------------------- /.oh-my-zsh/custom/themes/example.zsh-theme: -------------------------------------------------------------------------------- 1 | # Put your custom themes in this folder. 2 | # Example: 3 | 4 | PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% " 5 | -------------------------------------------------------------------------------- /.scripts/default-apps/list.joy: -------------------------------------------------------------------------------- 1 | terminal="st" 2 | lockscreen="slimlock" 3 | musicpl="mpd" 4 | filemanager="thunar" 5 | -------------------------------------------------------------------------------- /.scripts/notify/short-notify: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Load Global Variable 4 | source $HOME/.linuchin_var 5 | 6 | $NOTIFIER -r 16 -i "$ICONDIR/$1" -t "$2" -u low "$3" "$4" 7 | -------------------------------------------------------------------------------- /.scripts/playlist-run: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | paste="$(xclip -o -selection clipboard)" 4 | copy="echo -e 'hello dear'" 5 | 6 | ytfzf -Dm $paste 7 | -------------------------------------------------------------------------------- /.scripts/ytmusic: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ytfzf -Dms 4 | -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-down-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-down-insens.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-down-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-down-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-down-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-down-small-insens.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-down-small-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-down-small-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-down-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-down-small.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-down.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-left-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-left-insens.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-left-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-left-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-left.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-right-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-right-insens.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-right-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-right-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-right.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-up-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-up-insens.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-up-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-up-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-up-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-up-small-insens.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-up-small-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-up-small-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-up-small.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/arrow-up.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/button-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/button-hover.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/button-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/button.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-border-focus-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-border-focus-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-border-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-border-focus.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-border-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-border-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-border.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-active-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-active-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-button.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-focus-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-focus-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-focus-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-focus-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-focus.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-insensitive-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-insensitive-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-insensitive-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-insensitive-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-notebook-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/combo-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/combo-entry.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/down-background-disable-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/down-background-disable-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/down-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/down-background-disable.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/down-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/down-background-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/down-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/down-background.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-active-bg.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-active-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-active-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-active-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-active-toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-background-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-background-disabled.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-background.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-bg.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-border-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-border-active-bg.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-border-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-border-bg.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-disabled-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-disabled-bg.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-disabled-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-disabled-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-disabled-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-disabled-toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/entry-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/entry-toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/focus-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/focus-line.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/frame-gap-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/frame-gap-end.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/frame-gap-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/frame-gap-start.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/frame.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/handle-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/handle-h.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/handle-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/handle-v.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/inline-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/inline-toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/line-h.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/line-v.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-arrow-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-arrow-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-arrow.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-checked-selected.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-checked.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-unchecked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-unchecked-selected.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-checkbox-unchecked.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-radio-checked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-radio-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-radio-checked-selected.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-radio-checked.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-radio-unchecked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-radio-unchecked-selected.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menu-radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menu-radio-unchecked.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menubar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menubar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menubar_button.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/menuitem.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/minus.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/notebook-gap-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/notebook-gap-horiz.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/notebook-gap-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/notebook-gap-vert.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/notebook.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/null.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/pathbar_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/pathbar_button_active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/pathbar_button_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/pathbar_button_prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/plus.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/progressbar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/progressbar_v.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/radio-checked.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-horiz-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-horiz-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-horiz-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-horiz-insens.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-horiz-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-horiz-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-horiz.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-vert-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-vert-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-vert-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-vert-insens.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-vert-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-vert-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider-vert.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/slider.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/tab-bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/tab-bottom-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/tab-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/tab-left-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/tab-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/tab-right-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/tab-top-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/tab-top-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/tree_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/tree_header.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/trough-horizontal-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/trough-horizontal-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/trough-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/trough-horizontal.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/trough-progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/trough-progressbar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/trough-progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/trough-progressbar_v.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/trough-scrollbar-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/trough-scrollbar-horiz.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/trough-scrollbar-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/trough-scrollbar-vert.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/trough-vertical-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/trough-vertical-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/trough-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/trough-vertical.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/up-background-disable-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/up-background-disable-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/up-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/up-background-disable.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/up-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/up-background-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-2.0/assets/up-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-2.0/assets/up-background.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-3.0/assets/bullet-symbolic.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-3.0/assets/bullet-symbolic.symbolic.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-3.0/assets/check-symbolic.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-3.0/assets/check-symbolic.symbolic.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-3.0/assets/dash-symbolic.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-3.0/assets/dash-symbolic.symbolic.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-3.0/assets/text-select-end-symbolic.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-3.0/assets/text-select-end-symbolic.symbolic.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-assets/thunar-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-assets/thunar-sidebar.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-assets/thunar-sidebar.png.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-assets/thunar-sidebar.png.bak -------------------------------------------------------------------------------- /.themes/ZorinBlue/gtk-assets/thunar-sidebars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/gtk-assets/thunar-sidebars.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 8 2 | #define desk_height 8 3 | static unsigned char desk_bits[] = { 4 | 0x00, 0x00, 0x48, 0x78, 0x7f, 0x78, 0x48, 0x00 }; 5 | -------------------------------------------------------------------------------- /.themes/ZorinBlue/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_toggled_width 8 2 | #define desk_toggled_height 8 3 | static unsigned char desk_toggled_bits[] = { 4 | 0x00, 0x66, 0x66, 0x00, 0x00, 0x66, 0x66, 0x00 }; 5 | -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/bottom-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_active_xpm[] = { 3 | "24 1 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | "........................"}; 7 | -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/bottom-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/bottom-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_inactive_xpm[] = { 3 | "24 1 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | "........................"}; 7 | -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/bottom-left-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/bottom-left-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/bottom-right-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/bottom-right-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/close-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/close-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/close-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/close-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/hide-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/hide-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/hide-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/hide-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/left-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/maximize-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/maximize-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/maximize-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/maximize-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/maximize-toggled-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/menu-inactive.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/right-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/right-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/shade-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/shade-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/shade-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/shade-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/shade-toggled-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/shade-toggled-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/shade-toggled-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/shade-toggled-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/stick-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/stick-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/stick-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/stick-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/stick-toggled-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/stick-toggled-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/stick-toggled-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/stick-toggled-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-1-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-1-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-2-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-2-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-3-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-3-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-4-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-4-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-5-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/title-5-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/top-left-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/top-left-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/top-right-active.png -------------------------------------------------------------------------------- /.themes/ZorinBlue/xfwm4/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinBlue/xfwm4/top-right-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-down-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-down-insens.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-down-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-down-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-down-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-down-small-insens.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-down-small-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-down-small-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-down-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-down-small.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-down.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-left-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-left-insens.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-left-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-left-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-left.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-right-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-right-insens.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-right-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-right-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-right.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-up-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-up-insens.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-up-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-up-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-up-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-up-small-insens.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-up-small-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-up-small-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-up-small.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/arrow-up.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/button-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/button-hover.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/button-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/button.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-border-focus-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-border-focus-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-border-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-border-focus.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-border-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-border-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-border.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button-active-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button-active-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-button.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-focus-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-focus-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-focus-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-focus-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-focus.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-insensitive-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-insensitive-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-insensitive-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-insensitive-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-notebook-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/combo-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/combo-entry.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/down-background-disable-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/down-background-disable-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/down-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/down-background-disable.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/down-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/down-background-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/down-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/down-background.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-active-bg.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-active-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-active-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-active-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-active-toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-background-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-background-disabled.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-background.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-bg.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-border-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-border-active-bg.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-border-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-border-bg.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-disabled-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-disabled-bg.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-disabled-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-disabled-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-disabled-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-disabled-toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-notebook.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/entry-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/entry-toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/focus-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/focus-line.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/frame-gap-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/frame-gap-end.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/frame-gap-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/frame-gap-start.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/frame.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/handle-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/handle-h.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/handle-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/handle-v.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/inline-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/inline-toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/line-h.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/line-v.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-arrow-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-arrow-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-arrow.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-checked-selected.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-checked.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-unchecked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-unchecked-selected.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-checkbox-unchecked.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-radio-checked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-radio-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-radio-checked-selected.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-radio-checked.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-radio-unchecked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-radio-unchecked-selected.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menu-radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menu-radio-unchecked.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menubar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menubar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menubar_button.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/menuitem.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/minus.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/notebook-gap-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/notebook-gap-horiz.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/notebook-gap-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/notebook-gap-vert.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/notebook.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/null.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/pathbar_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/pathbar_button_active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/pathbar_button_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/pathbar_button_prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/plus.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/progressbar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/progressbar_v.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/radio-checked.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-horiz-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-horiz-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-horiz-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-horiz-insens.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-horiz-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-horiz-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-horiz.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-insensitive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-vert-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-vert-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-vert-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-vert-insens.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-vert-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-vert-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider-vert.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/slider.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/tab-bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/tab-bottom-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/tab-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/tab-left-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/tab-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/tab-right-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/tab-top-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/tab-top-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/toolbar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/tree_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/tree_header.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/trough-horizontal-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/trough-horizontal-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/trough-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/trough-horizontal.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/trough-progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/trough-progressbar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/trough-progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/trough-progressbar_v.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/trough-scrollbar-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/trough-scrollbar-horiz.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/trough-scrollbar-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/trough-scrollbar-vert.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/trough-vertical-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/trough-vertical-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/trough-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/trough-vertical.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/up-background-disable-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/up-background-disable-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/up-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/up-background-disable.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/up-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/up-background-rtl.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-2.0/assets/up-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-2.0/assets/up-background.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-3.0/assets/bullet-symbolic.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-3.0/assets/bullet-symbolic.symbolic.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-3.0/assets/check-symbolic.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-3.0/assets/check-symbolic.symbolic.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-3.0/assets/dash-symbolic.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-3.0/assets/dash-symbolic.symbolic.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-3.0/assets/text-select-end-symbolic.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-3.0/assets/text-select-end-symbolic.symbolic.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-assets/thunar-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-assets/thunar-sidebar.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-assets/thunar-sidebar.png.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-assets/thunar-sidebar.png.bak -------------------------------------------------------------------------------- /.themes/ZorinGrey/gtk-assets/thunar-sidebar.png.bak2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/gtk-assets/thunar-sidebar.png.bak2 -------------------------------------------------------------------------------- /.themes/ZorinGrey/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 8 2 | #define desk_height 8 3 | static unsigned char desk_bits[] = { 4 | 0x00, 0x00, 0x48, 0x78, 0x7f, 0x78, 0x48, 0x00 }; 5 | -------------------------------------------------------------------------------- /.themes/ZorinGrey/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_toggled_width 8 2 | #define desk_toggled_height 8 3 | static unsigned char desk_toggled_bits[] = { 4 | 0x00, 0x66, 0x66, 0x00, 0x00, 0x66, 0x66, 0x00 }; 5 | -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/bottom-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_active_xpm[] = { 3 | "24 1 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | "........................"}; 7 | -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/bottom-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/bottom-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_inactive_xpm[] = { 3 | "24 1 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | "........................"}; 7 | -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/bottom-left-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/bottom-left-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/bottom-right-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/bottom-right-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/close-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/close-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/close-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/close-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/hide-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/hide-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/hide-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/hide-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/left-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/maximize-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/maximize-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/maximize-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/maximize-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/maximize-toggled-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/menu-inactive.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/right-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/right-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/shade-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/shade-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/shade-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/shade-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/shade-toggled-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/shade-toggled-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/shade-toggled-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/shade-toggled-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/stick-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/stick-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/stick-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/stick-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/stick-toggled-active.png: -------------------------------------------------------------------------------- 1 | menu-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/stick-toggled-inactive.png: -------------------------------------------------------------------------------- 1 | menu-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/stick-toggled-prelight.png: -------------------------------------------------------------------------------- 1 | menu-prelight.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/stick-toggled-pressed.png: -------------------------------------------------------------------------------- 1 | menu-pressed.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-1-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-1-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-2-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-2-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-3-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-3-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-4-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-4-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-5-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/title-5-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/top-left-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/top-left-inactive.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/top-right-active.png -------------------------------------------------------------------------------- /.themes/ZorinGrey/xfwm4/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.themes/ZorinGrey/xfwm4/top-right-inactive.png -------------------------------------------------------------------------------- /.wallpapers/.random: -------------------------------------------------------------------------------- 1 | 4.png 2 | -------------------------------------------------------------------------------- /.wallpapers/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.wallpapers/1.jpg -------------------------------------------------------------------------------- /.wallpapers/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.wallpapers/2.jpg -------------------------------------------------------------------------------- /.wallpapers/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.wallpapers/3.jpg -------------------------------------------------------------------------------- /.wallpapers/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.wallpapers/4.jpg -------------------------------------------------------------------------------- /.wallpapers/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.wallpapers/4.png -------------------------------------------------------------------------------- /.wallpapers/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.wallpapers/5.jpg -------------------------------------------------------------------------------- /.wallpapers/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.wallpapers/6.jpg -------------------------------------------------------------------------------- /.wallpapers/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/.wallpapers/7.png -------------------------------------------------------------------------------- /.xinitrc: -------------------------------------------------------------------------------- 1 | dbus-update-activation-environment --systemd DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY 2 | 3 | # Disable HDMI Monitor 4 | xrandr --output HDMI-A-1 --off && 5 | 6 | # Run Hypr 7 | exec $HOME/.dwm/autostart 8 | -------------------------------------------------------------------------------- /lnxdwm/drw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/lnxdwm/drw.o -------------------------------------------------------------------------------- /lnxdwm/dwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/lnxdwm/dwm -------------------------------------------------------------------------------- /lnxdwm/dwm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/lnxdwm/dwm.o -------------------------------------------------------------------------------- /lnxdwm/dwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/lnxdwm/dwm.png -------------------------------------------------------------------------------- /lnxdwm/util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/lnxdwm/util.o -------------------------------------------------------------------------------- /st/boxdraw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/st/boxdraw.o -------------------------------------------------------------------------------- /st/hb.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | void hbunloadfonts(); 6 | void hbtransform(XftGlyphFontSpec *, const Glyph *, size_t, int, int); 7 | 8 | -------------------------------------------------------------------------------- /st/hb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/st/hb.o -------------------------------------------------------------------------------- /st/shell.nix: -------------------------------------------------------------------------------- 1 | { pkgs ? import {} }: 2 | 3 | pkgs.mkShell { 4 | nativeBuildInputs = with pkgs; [ pkgconfig xorg.libX11 xorg.libXft fontconfig harfbuzz ]; 5 | } 6 | -------------------------------------------------------------------------------- /st/st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/st/st -------------------------------------------------------------------------------- /st/st.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=st 4 | Comment=simple-terminal emulator for X 5 | Icon=utilities-terminal 6 | Exec=st 7 | Categories=System;TerminalEmulator 8 | -------------------------------------------------------------------------------- /st/st.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/st/st.o -------------------------------------------------------------------------------- /st/x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/st/x.o -------------------------------------------------------------------------------- /termstart/.assets/decaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/decaf.png -------------------------------------------------------------------------------- /termstart/.assets/dracula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/dracula.png -------------------------------------------------------------------------------- /termstart/.assets/gruvbox-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/gruvbox-dark.png -------------------------------------------------------------------------------- /termstart/.assets/gruvbox-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/gruvbox-light.png -------------------------------------------------------------------------------- /termstart/.assets/material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/material.png -------------------------------------------------------------------------------- /termstart/.assets/nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/nord.png -------------------------------------------------------------------------------- /termstart/.assets/pastel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/pastel.png -------------------------------------------------------------------------------- /termstart/.assets/solarized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/solarized.png -------------------------------------------------------------------------------- /termstart/.assets/tomorrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/tomorrow.png -------------------------------------------------------------------------------- /termstart/.assets/vice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/.assets/vice.png -------------------------------------------------------------------------------- /termstart/favicons/favicon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/favicons/favicon-1.png -------------------------------------------------------------------------------- /termstart/favicons/favicon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/favicons/favicon-2.png -------------------------------------------------------------------------------- /termstart/favicons/favicon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/favicons/favicon-3.png -------------------------------------------------------------------------------- /termstart/favicons/favicon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/favicons/favicon-4.png -------------------------------------------------------------------------------- /termstart/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmobile/dwm-dots/2ad29329a4c3822bf5f303bd43bc2ac640bd2fcd/termstart/favicons/favicon.ico --------------------------------------------------------------------------------