├── LICENSE ├── README.md ├── dotfiles ├── .config │ ├── BetterDiscord │ │ ├── data │ │ │ ├── betterdiscord.asar │ │ │ └── stable │ │ │ │ ├── custom.css │ │ │ │ ├── misc.json │ │ │ │ ├── plugins.json │ │ │ │ ├── settings.json │ │ │ │ └── themes.json │ │ └── themes │ │ │ └── tokyo-night.theme.css │ ├── Thunar │ │ ├── accels.scm │ │ └── uca.xml │ ├── alacritty.yml │ ├── awesome │ │ ├── brightness.sh │ │ ├── freedesktop │ │ │ ├── awesome-freedesktop-scm-1.rockspec │ │ │ ├── desktop.lua │ │ │ ├── init.lua │ │ │ └── menu.lua │ │ ├── lain │ │ │ ├── helpers.lua │ │ │ ├── icons │ │ │ │ ├── cal │ │ │ │ │ ├── black │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ ├── 15.png │ │ │ │ │ │ ├── 16.png │ │ │ │ │ │ ├── 17.png │ │ │ │ │ │ ├── 18.png │ │ │ │ │ │ ├── 19.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 20.png │ │ │ │ │ │ ├── 21.png │ │ │ │ │ │ ├── 22.png │ │ │ │ │ │ ├── 23.png │ │ │ │ │ │ ├── 24.png │ │ │ │ │ │ ├── 25.png │ │ │ │ │ │ ├── 26.png │ │ │ │ │ │ ├── 27.png │ │ │ │ │ │ ├── 28.png │ │ │ │ │ │ ├── 29.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 30.png │ │ │ │ │ │ ├── 31.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ └── 9.png │ │ │ │ │ └── white │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ ├── 15.png │ │ │ │ │ │ ├── 16.png │ │ │ │ │ │ ├── 17.png │ │ │ │ │ │ ├── 18.png │ │ │ │ │ │ ├── 19.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 20.png │ │ │ │ │ │ ├── 21.png │ │ │ │ │ │ ├── 22.png │ │ │ │ │ │ ├── 23.png │ │ │ │ │ │ ├── 24.png │ │ │ │ │ │ ├── 25.png │ │ │ │ │ │ ├── 26.png │ │ │ │ │ │ ├── 27.png │ │ │ │ │ │ ├── 28.png │ │ │ │ │ │ ├── 29.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 30.png │ │ │ │ │ │ ├── 31.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ └── 9.png │ │ │ │ ├── layout │ │ │ │ │ ├── default │ │ │ │ │ │ ├── cascade.png │ │ │ │ │ │ ├── cascadetile.png │ │ │ │ │ │ ├── cascadetilew.png │ │ │ │ │ │ ├── cascadew.png │ │ │ │ │ │ ├── centerfair.png │ │ │ │ │ │ ├── centerfairw.png │ │ │ │ │ │ ├── centerwork.png │ │ │ │ │ │ ├── centerworkh.png │ │ │ │ │ │ ├── centerworkhw.png │ │ │ │ │ │ ├── centerworkw.png │ │ │ │ │ │ ├── termfair.png │ │ │ │ │ │ └── termfairw.png │ │ │ │ │ └── zenburn │ │ │ │ │ │ ├── cascade.png │ │ │ │ │ │ ├── cascadetile.png │ │ │ │ │ │ ├── centerfair.png │ │ │ │ │ │ ├── centerwork.png │ │ │ │ │ │ ├── centerworkh.png │ │ │ │ │ │ └── termfair.png │ │ │ │ ├── mail.png │ │ │ │ ├── no_net.png │ │ │ │ ├── openweathermap │ │ │ │ │ ├── 01d.png │ │ │ │ │ ├── 01n.png │ │ │ │ │ ├── 02d.png │ │ │ │ │ ├── 02n.png │ │ │ │ │ ├── 03d.png │ │ │ │ │ ├── 03n.png │ │ │ │ │ ├── 04d.png │ │ │ │ │ ├── 09d.png │ │ │ │ │ ├── 10d.png │ │ │ │ │ ├── 11d.png │ │ │ │ │ ├── 13d.png │ │ │ │ │ ├── 50d.png │ │ │ │ │ ├── README.md │ │ │ │ │ └── na.png │ │ │ │ └── taskwarrior.png │ │ │ ├── init.lua │ │ │ ├── lain-scm-1.rockspec │ │ │ ├── layout │ │ │ │ ├── cascade.lua │ │ │ │ ├── centerwork.lua │ │ │ │ ├── init.lua │ │ │ │ └── termfair.lua │ │ │ ├── util │ │ │ │ ├── dkjson.lua │ │ │ │ ├── init.lua │ │ │ │ ├── markup.lua │ │ │ │ ├── menu_iterator.lua │ │ │ │ ├── quake.lua │ │ │ │ └── separators.lua │ │ │ ├── widget │ │ │ │ ├── alsa.lua │ │ │ │ ├── alsabar.lua │ │ │ │ ├── bat.lua │ │ │ │ ├── cal.lua │ │ │ │ ├── contrib │ │ │ │ │ ├── init.lua │ │ │ │ │ ├── moc.lua │ │ │ │ │ ├── redshift.lua │ │ │ │ │ ├── task.lua │ │ │ │ │ └── tp_smapi.lua │ │ │ │ ├── cpu.lua │ │ │ │ ├── fs.lua │ │ │ │ ├── imap.lua │ │ │ │ ├── init.lua │ │ │ │ ├── mem.lua │ │ │ │ ├── mpd.lua │ │ │ │ ├── net.lua │ │ │ │ ├── pulse.lua │ │ │ │ ├── pulsebar.lua │ │ │ │ ├── sysload.lua │ │ │ │ ├── temp.lua │ │ │ │ └── weather.lua │ │ │ └── wiki │ │ │ │ ├── Home.md │ │ │ │ ├── Layouts.md │ │ │ │ ├── Utilities.md │ │ │ │ ├── Widgets.md │ │ │ │ ├── _Footer.md │ │ │ │ ├── _Sidebar.md │ │ │ │ ├── alsa.md │ │ │ │ ├── alsabar.md │ │ │ │ ├── bat.md │ │ │ │ ├── cal.md │ │ │ │ ├── cpu.md │ │ │ │ ├── fs.md │ │ │ │ ├── imap.md │ │ │ │ ├── mem.md │ │ │ │ ├── moc.md │ │ │ │ ├── mpd.md │ │ │ │ ├── net.md │ │ │ │ ├── pulse.md │ │ │ │ ├── pulseaudio.md │ │ │ │ ├── pulsebar.md │ │ │ │ ├── redshift.md │ │ │ │ ├── sysload.md │ │ │ │ ├── task.md │ │ │ │ ├── temp.md │ │ │ │ ├── tp_smapi.md │ │ │ │ ├── watch.md │ │ │ │ └── weather.md │ │ ├── rc.lua │ │ ├── scripts │ │ │ └── compton-toggle.sh │ │ └── themes │ │ │ └── tokyo-night │ │ │ ├── icons │ │ │ ├── ac.png │ │ │ ├── ac.png.bk │ │ │ ├── battery.png │ │ │ ├── battery.png.bk │ │ │ ├── battery_empty.png │ │ │ ├── battery_empty.png.bk │ │ │ ├── battery_low.png │ │ │ ├── battery_low.png.bk │ │ │ ├── centerfair.png │ │ │ ├── centerwork.png │ │ │ ├── centerworkh.png │ │ │ ├── cpu.png │ │ │ ├── dwindle.png │ │ │ ├── fairh.png │ │ │ ├── fairv.png │ │ │ ├── floating.png │ │ │ ├── hdd.png │ │ │ ├── magnifier.png │ │ │ ├── mail.png │ │ │ ├── mail_on.png │ │ │ ├── max.png │ │ │ ├── mem.png │ │ │ ├── net.png │ │ │ ├── net_wired.png │ │ │ ├── note.png │ │ │ ├── note_on.png │ │ │ ├── scissors.png │ │ │ ├── spiral.png │ │ │ ├── square_sel.png │ │ │ ├── square_unsel.png │ │ │ ├── submenu.png │ │ │ ├── task.png │ │ │ ├── temp.png │ │ │ ├── termfair.png │ │ │ ├── tile.png │ │ │ ├── tilebottom.png │ │ │ ├── tileleft.png │ │ │ ├── tiletop.png │ │ │ ├── titlebar │ │ │ │ ├── close_focus.png │ │ │ │ ├── close_normal.png │ │ │ │ ├── floating_focus_active.png │ │ │ │ ├── floating_focus_inactive.png │ │ │ │ ├── floating_normal_active.png │ │ │ │ ├── floating_normal_inactive.png │ │ │ │ ├── maximized_focus_active.png │ │ │ │ ├── maximized_focus_inactive.png │ │ │ │ ├── maximized_normal_active.png │ │ │ │ ├── maximized_normal_inactive.png │ │ │ │ ├── ontop_focus_active.png │ │ │ │ ├── ontop_focus_inactive.png │ │ │ │ ├── ontop_normal_active.png │ │ │ │ ├── ontop_normal_inactive.png │ │ │ │ ├── sticky_focus_active.png │ │ │ │ ├── sticky_focus_inactive.png │ │ │ │ ├── sticky_normal_active.png │ │ │ │ └── sticky_normal_inactive.png │ │ │ ├── vol.png │ │ │ ├── vol.png.bk │ │ │ ├── vol_low.png │ │ │ ├── vol_low.png.bk │ │ │ ├── vol_mute.png │ │ │ ├── vol_mute.png.bk │ │ │ ├── vol_no.png │ │ │ └── vol_no.png.bk │ │ │ ├── theme.lua │ │ │ └── tokyo-night │ │ │ ├── Screenshots │ │ │ ├── desktop.png │ │ │ ├── vimrc.png │ │ │ └── workspace.png │ │ │ ├── witcher-wall3.png │ │ │ ├── witcher-wall4.png │ │ │ ├── witcher-wall5.psd │ │ │ └── witcher-wall7.png │ ├── cava │ │ ├── config │ │ └── config.bk │ ├── kitty │ │ ├── color.ini │ │ └── kitty.conf │ ├── neofetch │ │ ├── ascii.txt │ │ └── config.conf │ ├── picom │ │ ├── picom-bk.conf │ │ ├── picom-hyprland-like-animations.conf │ │ ├── picom-hyprland.conf │ │ └── picom.conf │ └── rofi │ │ ├── applets │ │ ├── android │ │ │ ├── apps.sh │ │ │ ├── backlight.sh │ │ │ ├── colors.rasi │ │ │ ├── confirm.rasi │ │ │ ├── five.rasi │ │ │ ├── message.rasi │ │ │ ├── mpd.sh │ │ │ ├── powermenu.sh │ │ │ ├── quicklinks.sh │ │ │ ├── screenshot.sh │ │ │ ├── six.rasi │ │ │ ├── three.rasi │ │ │ └── volume.sh │ │ ├── applets │ │ │ ├── apps.sh │ │ │ ├── backlight.sh │ │ │ ├── battery.sh │ │ │ ├── configs │ │ │ │ ├── circle │ │ │ │ │ ├── apps.rasi │ │ │ │ │ ├── backlight.rasi │ │ │ │ │ ├── battery.rasi │ │ │ │ │ ├── mpd.rasi │ │ │ │ │ ├── network.rasi │ │ │ │ │ ├── powermenu.rasi │ │ │ │ │ ├── quicklinks.rasi │ │ │ │ │ ├── screenshot.rasi │ │ │ │ │ ├── time.rasi │ │ │ │ │ └── volume.rasi │ │ │ │ ├── rounded │ │ │ │ │ ├── apps.rasi │ │ │ │ │ ├── backlight.rasi │ │ │ │ │ ├── battery.rasi │ │ │ │ │ ├── mpd.rasi │ │ │ │ │ ├── network.rasi │ │ │ │ │ ├── powermenu.rasi │ │ │ │ │ ├── quicklinks.rasi │ │ │ │ │ ├── screenshot.rasi │ │ │ │ │ ├── time.rasi │ │ │ │ │ └── volume.rasi │ │ │ │ └── square │ │ │ │ │ ├── apps.rasi │ │ │ │ │ ├── backlight.rasi │ │ │ │ │ ├── battery.rasi │ │ │ │ │ ├── mpd.rasi │ │ │ │ │ ├── network.rasi │ │ │ │ │ ├── powermenu.rasi │ │ │ │ │ ├── quicklinks.rasi │ │ │ │ │ ├── screenshot.rasi │ │ │ │ │ ├── time.rasi │ │ │ │ │ └── volume.rasi │ │ │ ├── mpd.sh │ │ │ ├── network.sh │ │ │ ├── powermenu.sh │ │ │ ├── quicklinks.sh │ │ │ ├── screenshot.sh │ │ │ ├── style.sh │ │ │ ├── time.sh │ │ │ └── volume.sh │ │ ├── menu │ │ │ ├── apps.sh │ │ │ ├── backlight.sh │ │ │ ├── battery.sh │ │ │ ├── configs │ │ │ │ ├── circle │ │ │ │ │ ├── apps.rasi │ │ │ │ │ ├── backlight.rasi │ │ │ │ │ ├── battery.rasi │ │ │ │ │ ├── mpd.rasi │ │ │ │ │ ├── network.rasi │ │ │ │ │ ├── powermenu.rasi │ │ │ │ │ ├── quicklinks.rasi │ │ │ │ │ ├── screenshot.rasi │ │ │ │ │ ├── time.rasi │ │ │ │ │ └── volume.rasi │ │ │ │ ├── rounded │ │ │ │ │ ├── apps.rasi │ │ │ │ │ ├── backlight.rasi │ │ │ │ │ ├── battery.rasi │ │ │ │ │ ├── mpd.rasi │ │ │ │ │ ├── network.rasi │ │ │ │ │ ├── powermenu.rasi │ │ │ │ │ ├── quicklinks.rasi │ │ │ │ │ ├── screenshot.rasi │ │ │ │ │ ├── time.rasi │ │ │ │ │ └── volume.rasi │ │ │ │ └── square │ │ │ │ │ ├── apps.rasi │ │ │ │ │ ├── backlight.rasi │ │ │ │ │ ├── battery.rasi │ │ │ │ │ ├── mpd.rasi │ │ │ │ │ ├── network.rasi │ │ │ │ │ ├── powermenu.rasi │ │ │ │ │ ├── quicklinks.rasi │ │ │ │ │ ├── screenshot.rasi │ │ │ │ │ ├── time.rasi │ │ │ │ │ └── volume.rasi │ │ │ ├── mpd.sh │ │ │ ├── network.sh │ │ │ ├── powermenu.sh │ │ │ ├── quicklinks.sh │ │ │ ├── screenshot.sh │ │ │ ├── style.sh │ │ │ ├── time.sh │ │ │ └── volume.sh │ │ └── styles │ │ │ ├── adapta-nokto.rasi │ │ │ ├── adapta.rasi │ │ │ ├── adwaita.rasi │ │ │ ├── arc-dark.rasi │ │ │ ├── arc.rasi │ │ │ ├── armchair.rasi │ │ │ ├── colors.rasi │ │ │ ├── confirm.rasi │ │ │ ├── dark.rasi │ │ │ ├── darkpink.rasi │ │ │ ├── fresh.rasi │ │ │ ├── gruvbox.rasi │ │ │ ├── inside.rasi │ │ │ ├── material-dark │ │ │ ├── amber.rasi │ │ │ ├── blue.rasi │ │ │ ├── blue_grey.rasi │ │ │ ├── brown.rasi │ │ │ ├── cyan.rasi │ │ │ ├── deep_orange.rasi │ │ │ ├── deep_purple.rasi │ │ │ ├── green.rasi │ │ │ ├── grey.rasi │ │ │ ├── indigo.rasi │ │ │ ├── light_blue.rasi │ │ │ ├── light_green.rasi │ │ │ ├── lime.rasi │ │ │ ├── orange.rasi │ │ │ ├── pink.rasi │ │ │ ├── purple.rasi │ │ │ ├── red.rasi │ │ │ ├── teal.rasi │ │ │ └── yellow.rasi │ │ │ ├── material-light │ │ │ ├── amber.rasi │ │ │ ├── blue.rasi │ │ │ ├── blue_grey.rasi │ │ │ ├── brown.rasi │ │ │ ├── cyan.rasi │ │ │ ├── deep_orange.rasi │ │ │ ├── deep_purple.rasi │ │ │ ├── green.rasi │ │ │ ├── grey.rasi │ │ │ ├── indigo.rasi │ │ │ ├── light_blue.rasi │ │ │ ├── light_green.rasi │ │ │ ├── lime.rasi │ │ │ ├── orange.rasi │ │ │ ├── pink.rasi │ │ │ ├── purple.rasi │ │ │ ├── red.rasi │ │ │ ├── teal.rasi │ │ │ └── yellow.rasi │ │ │ ├── message.rasi │ │ │ ├── minimo.rasi │ │ │ ├── party.rasi │ │ │ └── sirin.rasi │ │ ├── bin │ │ ├── android_apps │ │ ├── android_backlight │ │ ├── android_mpd │ │ ├── android_powermenu │ │ ├── android_quicklinks │ │ ├── android_screenshot │ │ ├── android_volume │ │ ├── applet_apps │ │ ├── applet_backlight │ │ ├── applet_battery │ │ ├── applet_mpd │ │ ├── applet_network │ │ ├── applet_powermenu │ │ ├── applet_quicklinks │ │ ├── applet_screenshot │ │ ├── applet_time │ │ ├── applet_volume │ │ ├── launcher_colorful │ │ ├── launcher_misc │ │ ├── launcher_ribbon │ │ ├── launcher_slate │ │ ├── launcher_text │ │ ├── menu_apps │ │ ├── menu_backlight │ │ ├── menu_battery │ │ ├── menu_mpd │ │ ├── menu_network │ │ ├── menu_powermenu │ │ ├── menu_quicklinks │ │ ├── menu_screenshot │ │ ├── menu_time │ │ ├── menu_volume │ │ ├── powermenu │ │ ├── usedcpu │ │ └── usedram │ │ ├── config.rasi │ │ ├── launchers │ │ ├── colorful │ │ │ ├── colors.rasi │ │ │ ├── launcher.sh │ │ │ ├── style_1.rasi │ │ │ ├── style_10.rasi │ │ │ ├── style_11.rasi │ │ │ ├── style_12.rasi │ │ │ ├── style_2.rasi │ │ │ ├── style_3.rasi │ │ │ ├── style_4.rasi │ │ │ ├── style_5.rasi │ │ │ ├── style_6.rasi │ │ │ ├── style_7.rasi │ │ │ ├── style_8.rasi │ │ │ └── style_9.rasi │ │ ├── misc │ │ │ ├── appdrawer.rasi │ │ │ ├── appdrawer_alt.rasi │ │ │ ├── appfolder.rasi │ │ │ ├── blurry.rasi │ │ │ ├── blurry_full.rasi │ │ │ ├── column.rasi │ │ │ ├── gnome_do.rasi │ │ │ ├── kde_krunner.rasi │ │ │ ├── kde_simplemenu.rasi │ │ │ ├── launcher.sh │ │ │ ├── launchpad.rasi │ │ │ ├── row.rasi │ │ │ ├── row_center.rasi │ │ │ ├── row_dock.rasi │ │ │ ├── row_dropdown.rasi │ │ │ ├── screen.rasi │ │ │ └── slingshot.rasi │ │ ├── ribbon │ │ │ ├── full_bottom.rasi │ │ │ ├── full_left.rasi │ │ │ ├── full_right.rasi │ │ │ ├── full_top.rasi │ │ │ ├── launcher.sh │ │ │ ├── ribbon_bottom.rasi │ │ │ ├── ribbon_bottom_round.rasi │ │ │ ├── ribbon_left.rasi │ │ │ ├── ribbon_left_round.rasi │ │ │ ├── ribbon_right.rasi │ │ │ ├── ribbon_right_round.rasi │ │ │ ├── ribbon_top.rasi │ │ │ ├── ribbon_top_round.rasi │ │ │ └── styles │ │ │ │ ├── berry.rasi │ │ │ │ ├── bluish.rasi │ │ │ │ ├── cocoa.rasi │ │ │ │ ├── colors.rasi │ │ │ │ ├── faded.rasi │ │ │ │ ├── gotham.rasi │ │ │ │ ├── mask.rasi │ │ │ │ ├── nightly.rasi │ │ │ │ └── nordic.rasi │ │ ├── slate │ │ │ ├── launcher.sh │ │ │ ├── slate_bottom.rasi │ │ │ ├── slate_center.rasi │ │ │ ├── slate_full.rasi │ │ │ ├── slate_left.rasi │ │ │ ├── slate_right.rasi │ │ │ ├── slate_top.rasi │ │ │ └── styles │ │ │ │ ├── Amber.rasi │ │ │ │ ├── Black.rasi │ │ │ │ ├── Blue.rasi │ │ │ │ ├── Blue_gray.rasi │ │ │ │ ├── Brown.rasi │ │ │ │ ├── Cyan.rasi │ │ │ │ ├── Deep_orange.rasi │ │ │ │ ├── Deep_purple.rasi │ │ │ │ ├── Gray.rasi │ │ │ │ ├── Green.rasi │ │ │ │ ├── Indigo.rasi │ │ │ │ ├── Light_blue.rasi │ │ │ │ ├── Light_green.rasi │ │ │ │ ├── Lime.rasi │ │ │ │ ├── Orange.rasi │ │ │ │ ├── Pink.rasi │ │ │ │ ├── Purple.rasi │ │ │ │ ├── Red.rasi │ │ │ │ ├── Teal.rasi │ │ │ │ ├── Yellow.rasi │ │ │ │ └── colors.rasi │ │ └── text │ │ │ ├── launcher.sh │ │ │ ├── style_1.rasi │ │ │ ├── style_2.rasi │ │ │ ├── style_3.rasi │ │ │ ├── style_4.rasi │ │ │ ├── style_5.rasi │ │ │ ├── style_6.rasi │ │ │ ├── style_7.rasi │ │ │ └── styles │ │ │ ├── berry.rasi │ │ │ ├── black.rasi │ │ │ ├── bluish.rasi │ │ │ ├── cocoa.rasi │ │ │ ├── colors.rasi │ │ │ ├── faded.rasi │ │ │ ├── gotham.rasi │ │ │ ├── mask.rasi │ │ │ ├── nightly.rasi │ │ │ ├── nordic.rasi │ │ │ └── white.rasi │ │ └── powermenu │ │ ├── card_alt.rasi │ │ ├── card_circle.rasi │ │ ├── card_rounded.rasi │ │ ├── card_square.rasi │ │ ├── column_alt.rasi │ │ ├── column_circle.rasi │ │ ├── column_rounded.rasi │ │ ├── column_square.rasi │ │ ├── confirm.rasi │ │ ├── dock_alt.rasi │ │ ├── dock_circle.rasi │ │ ├── dock_rounded.rasi │ │ ├── dock_square.rasi │ │ ├── drop_alt.rasi │ │ ├── drop_circle.rasi │ │ ├── drop_rounded.rasi │ │ ├── drop_square.rasi │ │ ├── full_alt.rasi │ │ ├── full_circle.rasi │ │ ├── full_rounded.rasi │ │ ├── full_square.rasi │ │ ├── message.rasi │ │ ├── powermenu.sh │ │ ├── row_alt.rasi │ │ ├── row_circle.rasi │ │ ├── row_rounded.rasi │ │ ├── row_square.rasi │ │ └── styles │ │ ├── berry.rasi │ │ ├── bluish.rasi │ │ ├── cocoa.rasi │ │ ├── colors.rasi │ │ ├── faded.rasi │ │ ├── gotham.rasi │ │ ├── mask.rasi │ │ ├── nightly.rasi │ │ └── nordic.rasi ├── .icons │ └── oreo_grey_cursors │ │ ├── cursors │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 028006030e0e7ebffc7f7070c0600140 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 14fef782d02440884392942c11205230 │ │ ├── 2870a09082c103050810ffdffffe0204 │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── X_cursor │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── alias │ │ ├── all-scroll │ │ ├── arrow │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── bd_double_arrow │ │ ├── bottom_left_corner │ │ ├── bottom_right_corner │ │ ├── bottom_side │ │ ├── bottom_tee │ │ ├── c7088f0f3e6c8088236ef8e1e3e70000 │ │ ├── cell │ │ ├── center_ptr │ │ ├── circle │ │ ├── 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_box_mask │ │ ├── dotbox │ │ ├── double_arrow │ │ ├── down-arrow │ │ ├── draft │ │ ├── draft_large │ │ ├── draft_small │ │ ├── draped_box │ │ ├── e-resize │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── ew-resize │ │ ├── fcf1c3c7cd4491d801f1e1c78f100000 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── fd_double_arrow │ │ ├── fleur │ │ ├── forbidden │ │ ├── grab │ │ ├── grabbing │ │ ├── h_double_arrow │ │ ├── half-busy │ │ ├── hand │ │ ├── hand1 │ │ ├── hand2 │ │ ├── help │ │ ├── ibeam │ │ ├── icon │ │ ├── left-arrow │ │ ├── left_ptr │ │ ├── left_ptr_help │ │ ├── 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 │ │ ├── pointing_hand │ │ ├── progress │ │ ├── question_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_corner │ │ ├── top_side │ │ ├── top_tee │ │ ├── ul_angle │ │ ├── up-arrow │ │ ├── ur_angle │ │ ├── v_double_arrow │ │ ├── vertical-text │ │ ├── w-resize │ │ ├── wait │ │ ├── watch │ │ ├── wayland-cursor │ │ ├── whats_this │ │ ├── x-cursor │ │ ├── xterm │ │ ├── zoom-in │ │ └── zoom-out │ │ └── index.theme ├── .screenlayout │ └── rightAcerMonitor.sh ├── .themes │ └── TokyoNight │ │ ├── COPYING │ │ ├── chrome │ │ ├── chrome-scrollbar.crx │ │ └── chrome-theme.crx │ │ ├── cinnamon │ │ ├── assets │ │ │ ├── add-workspace-active.svg │ │ │ ├── add-workspace-hover.svg │ │ │ ├── add-workspace.svg │ │ │ ├── calendar-arrow-left.svg │ │ │ ├── calendar-arrow-right.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox.svg │ │ │ ├── close-window.svg │ │ │ ├── corner-ripple.png │ │ │ ├── radiobutton-off.svg │ │ │ ├── radiobutton.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ └── trash-icon.png │ │ ├── cinnamon.css │ │ └── thumbnail.png │ │ ├── gnome-shell │ │ ├── README.md │ │ ├── assets │ │ │ ├── calendar-arrow-left.svg │ │ │ ├── calendar-arrow-right.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox.svg │ │ │ ├── close.svg │ │ │ ├── dash-placeholder.svg │ │ │ ├── dash │ │ │ │ ├── bottom-running1-focused.svg │ │ │ │ ├── bottom-running1.svg │ │ │ │ ├── bottom-running2-focused.svg │ │ │ │ ├── bottom-running2.svg │ │ │ │ ├── bottom-running3-focused.svg │ │ │ │ ├── bottom-running3.svg │ │ │ │ ├── bottom-running4-focused.svg │ │ │ │ ├── bottom-running4.svg │ │ │ │ ├── left-running1-focused.svg │ │ │ │ ├── left-running1.svg │ │ │ │ ├── left-running2-focused.svg │ │ │ │ ├── left-running2.svg │ │ │ │ ├── left-running3-focused.svg │ │ │ │ ├── left-running3.svg │ │ │ │ ├── left-running4-focused.svg │ │ │ │ ├── left-running4.svg │ │ │ │ ├── right-running1-focused.svg │ │ │ │ ├── right-running1.svg │ │ │ │ ├── right-running2-focused.svg │ │ │ │ ├── right-running2.svg │ │ │ │ ├── right-running3-focused.svg │ │ │ │ ├── right-running3.svg │ │ │ │ ├── right-running4-focused.svg │ │ │ │ ├── right-running4.svg │ │ │ │ ├── top-running1-focused.svg │ │ │ │ ├── top-running1.svg │ │ │ │ ├── top-running2-focused.svg │ │ │ │ ├── top-running2.svg │ │ │ │ ├── top-running3-focused.svg │ │ │ │ ├── top-running3.svg │ │ │ │ ├── top-running4-focused.svg │ │ │ │ └── top-running4.svg │ │ │ ├── key-enter.svg │ │ │ ├── key-hide.svg │ │ │ ├── key-layout.svg │ │ │ ├── key-shift-latched-uppercase.svg │ │ │ ├── key-shift-uppercase.svg │ │ │ ├── key-shift.svg │ │ │ ├── no-events.svg │ │ │ ├── no-notifications.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── window-close-active.svg │ │ │ └── window-close.svg │ │ ├── extensions │ │ │ └── workspaces-to-dock │ │ │ │ └── workspaces-to-dock.css │ │ ├── gnome-shell-theme.gresource.xml │ │ ├── gnome-shell.css │ │ ├── icons │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ ├── message-indicator-symbolic.svg │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ ├── pointer-drag-symbolic.svg │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ └── pointer-secondary-click-symbolic.svg │ │ ├── noise-texture.png │ │ ├── pad-osd.css │ │ └── process-working.svg │ │ ├── gtk-2.0 │ │ ├── apps.rc │ │ ├── assets │ │ │ ├── border.png │ │ │ ├── button-active.png │ │ │ ├── button-disabled.png │ │ │ ├── button-hover.png │ │ │ ├── button.png │ │ │ ├── checkbox-checked-active.png │ │ │ ├── checkbox-checked-disabled.png │ │ │ ├── checkbox-checked-hover.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed-active.png │ │ │ ├── checkbox-mixed-disabled.png │ │ │ ├── checkbox-mixed-hover.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-unchecked-active.png │ │ │ ├── checkbox-unchecked-disabled.png │ │ │ ├── checkbox-unchecked-hover.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── combo-left-entry-active.png │ │ │ ├── combo-left-entry-disabled.png │ │ │ ├── combo-left-entry-hover.png │ │ │ ├── combo-left-entry.png │ │ │ ├── combo-right-entry-active.png │ │ │ ├── combo-right-entry-disabled.png │ │ │ ├── combo-right-entry-hover.png │ │ │ ├── combo-right-entry.png │ │ │ ├── entry-active.png │ │ │ ├── entry-background-disabled.png │ │ │ ├── entry-background.png │ │ │ ├── entry-disabled.png │ │ │ ├── entry-hover.png │ │ │ ├── entry.png │ │ │ ├── flat-button-active.png │ │ │ ├── flat-button-disabled.png │ │ │ ├── flat-button-hover.png │ │ │ ├── flat-button.png │ │ │ ├── focus.png │ │ │ ├── frame-inline.png │ │ │ ├── frame-notebook.png │ │ │ ├── frame.png │ │ │ ├── handle-horz-active.png │ │ │ ├── handle-horz-hover.png │ │ │ ├── handle-horz.png │ │ │ ├── handle-vert-active.png │ │ │ ├── handle-vert-hover.png │ │ │ ├── handle-vert.png │ │ │ ├── menu-checkbox-checked-disabled.png │ │ │ ├── menu-checkbox-checked.png │ │ │ ├── menu-checkbox-mixed-disabled.png │ │ │ ├── menu-checkbox-mixed.png │ │ │ ├── menu-checkbox-unchecked-disabled.png │ │ │ ├── menu-checkbox-unchecked.png │ │ │ ├── menu-radio-checked-disabled.png │ │ │ ├── menu-radio-checked.png │ │ │ ├── menu-radio-mixed-disabled.png │ │ │ ├── menu-radio-mixed.png │ │ │ ├── menu-radio-unchecked-disabled.png │ │ │ ├── menu-radio-unchecked.png │ │ │ ├── pan-down-alt.png │ │ │ ├── pan-down-disabled.png │ │ │ ├── pan-down.png │ │ │ ├── pan-left-alt.png │ │ │ ├── pan-left-disabled.png │ │ │ ├── pan-left-semi.png │ │ │ ├── pan-left.png │ │ │ ├── pan-right-alt.png │ │ │ ├── pan-right-disabled.png │ │ │ ├── pan-right-semi.png │ │ │ ├── pan-right.png │ │ │ ├── pan-up-alt.png │ │ │ ├── pan-up-disabled.png │ │ │ ├── pan-up.png │ │ │ ├── progressbar-progress.png │ │ │ ├── progressbar-trough.png │ │ │ ├── radio-checked-active.png │ │ │ ├── radio-checked-disabled.png │ │ │ ├── radio-checked-hover.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed-active.png │ │ │ ├── radio-mixed-disabled.png │ │ │ ├── radio-mixed-hover.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-unchecked-active.png │ │ │ ├── radio-unchecked-disabled.png │ │ │ ├── radio-unchecked-hover.png │ │ │ ├── radio-unchecked.png │ │ │ ├── scale-horz-trough-active.png │ │ │ ├── scale-horz-trough-disabled.png │ │ │ ├── scale-horz-trough.png │ │ │ ├── scale-slider-active.png │ │ │ ├── scale-slider-disabled.png │ │ │ ├── scale-slider-hover.png │ │ │ ├── scale-slider.png │ │ │ ├── scale-vert-trough-active.png │ │ │ ├── scale-vert-trough-disabled.png │ │ │ ├── scale-vert-trough.png │ │ │ ├── scrollbar-horz-slider-active.png │ │ │ ├── scrollbar-horz-slider-disabled.png │ │ │ ├── scrollbar-horz-slider-hover.png │ │ │ ├── scrollbar-horz-slider.png │ │ │ ├── scrollbar-horz-trough.png │ │ │ ├── scrollbar-vert-ltr-slider-active.png │ │ │ ├── scrollbar-vert-ltr-slider-disabled.png │ │ │ ├── scrollbar-vert-ltr-slider-hover.png │ │ │ ├── scrollbar-vert-ltr-slider.png │ │ │ ├── scrollbar-vert-ltr-trough.png │ │ │ ├── scrollbar-vert-rtl-slider-active.png │ │ │ ├── scrollbar-vert-rtl-slider-disabled.png │ │ │ ├── scrollbar-vert-rtl-slider-hover.png │ │ │ ├── scrollbar-vert-rtl-slider.png │ │ │ ├── scrollbar-vert-rtl-trough.png │ │ │ ├── spin-ltr-down-active.png │ │ │ ├── spin-ltr-down-disabled.png │ │ │ ├── spin-ltr-down-hover.png │ │ │ ├── spin-ltr-down.png │ │ │ ├── spin-ltr-up-active.png │ │ │ ├── spin-ltr-up-disabled.png │ │ │ ├── spin-ltr-up-hover.png │ │ │ ├── spin-ltr-up.png │ │ │ ├── spin-rtl-down-active.png │ │ │ ├── spin-rtl-down-disabled.png │ │ │ ├── spin-rtl-down-hover.png │ │ │ ├── spin-rtl-down.png │ │ │ ├── spin-rtl-up-active.png │ │ │ ├── spin-rtl-up-disabled.png │ │ │ ├── spin-rtl-up-hover.png │ │ │ ├── spin-rtl-up.png │ │ │ ├── tab.png │ │ │ ├── treeview-ltr-button-active.png │ │ │ ├── treeview-ltr-button-hover.png │ │ │ ├── treeview-ltr-button.png │ │ │ ├── treeview-rtl-button-active.png │ │ │ ├── treeview-rtl-button-hover.png │ │ │ └── treeview-rtl-button.png │ │ ├── gtkrc │ │ ├── hacks.rc │ │ └── main.rc │ │ ├── gtk-3.0 │ │ ├── assets │ │ │ ├── scale-horz-marks-after-slider-dark.png │ │ │ ├── scale-horz-marks-after-slider-dark@2.png │ │ │ ├── scale-horz-marks-after-slider-disabled-dark.png │ │ │ ├── scale-horz-marks-after-slider-disabled-dark@2.png │ │ │ ├── scale-horz-marks-after-slider-disabled.png │ │ │ ├── scale-horz-marks-after-slider-disabled@2.png │ │ │ ├── scale-horz-marks-after-slider.png │ │ │ ├── scale-horz-marks-after-slider@2.png │ │ │ ├── scale-horz-marks-before-slider-dark.png │ │ │ ├── scale-horz-marks-before-slider-dark@2.png │ │ │ ├── scale-horz-marks-before-slider-disabled-dark.png │ │ │ ├── scale-horz-marks-before-slider-disabled-dark@2.png │ │ │ ├── scale-horz-marks-before-slider-disabled.png │ │ │ ├── scale-horz-marks-before-slider-disabled@2.png │ │ │ ├── scale-horz-marks-before-slider.png │ │ │ ├── scale-horz-marks-before-slider@2.png │ │ │ ├── scale-slider-dark.png │ │ │ ├── scale-slider-dark@2.png │ │ │ ├── scale-slider-disabled-dark.png │ │ │ ├── scale-slider-disabled-dark@2.png │ │ │ ├── scale-slider-disabled.png │ │ │ ├── scale-slider-disabled@2.png │ │ │ ├── scale-slider.png │ │ │ ├── scale-slider@2.png │ │ │ ├── scale-vert-marks-after-slider-dark.png │ │ │ ├── scale-vert-marks-after-slider-dark@2.png │ │ │ ├── scale-vert-marks-after-slider-disabled-dark.png │ │ │ ├── scale-vert-marks-after-slider-disabled-dark@2.png │ │ │ ├── scale-vert-marks-after-slider-disabled.png │ │ │ ├── scale-vert-marks-after-slider-disabled@2.png │ │ │ ├── scale-vert-marks-after-slider.png │ │ │ ├── scale-vert-marks-after-slider@2.png │ │ │ ├── scale-vert-marks-before-slider-dark.png │ │ │ ├── scale-vert-marks-before-slider-dark@2.png │ │ │ ├── scale-vert-marks-before-slider-disabled-dark.png │ │ │ ├── scale-vert-marks-before-slider-disabled-dark@2.png │ │ │ ├── scale-vert-marks-before-slider-disabled.png │ │ │ ├── scale-vert-marks-before-slider-disabled@2.png │ │ │ ├── scale-vert-marks-before-slider.png │ │ │ ├── scale-vert-marks-before-slider@2.png │ │ │ ├── selectionmode-checkbox-checked-dark.png │ │ │ ├── selectionmode-checkbox-checked-dark@2.png │ │ │ ├── selectionmode-checkbox-checked.png │ │ │ ├── selectionmode-checkbox-checked@2.png │ │ │ ├── selectionmode-checkbox-unchecked-dark.png │ │ │ ├── selectionmode-checkbox-unchecked-dark@2.png │ │ │ ├── selectionmode-checkbox-unchecked.png │ │ │ └── selectionmode-checkbox-unchecked@2.png │ │ ├── gtk.css │ │ └── icons │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ ├── checkbox-unchecked-symbolic.svg │ │ │ ├── cursor-handle-symbolic.svg │ │ │ ├── radio-checked-symbolic.svg │ │ │ ├── radio-mixed-symbolic.svg │ │ │ ├── radio-unchecked-symbolic.svg │ │ │ ├── small-checkbox-checked-symbolic.svg │ │ │ ├── small-checkbox-mixed-symbolic.svg │ │ │ ├── small-checkbox-unchecked-symbolic.svg │ │ │ ├── small-radio-checked-symbolic.svg │ │ │ ├── small-radio-mixed-symbolic.svg │ │ │ └── small-radio-unchecked-symbolic.svg │ │ ├── gtk-assets │ │ ├── scale-horz-marks-after-slider-dark.png │ │ ├── scale-horz-marks-after-slider-dark@2.png │ │ ├── scale-horz-marks-after-slider-disabled-dark.png │ │ ├── scale-horz-marks-after-slider-disabled-dark@2.png │ │ ├── scale-horz-marks-after-slider-disabled.png │ │ ├── scale-horz-marks-after-slider-disabled@2.png │ │ ├── scale-horz-marks-after-slider.png │ │ ├── scale-horz-marks-after-slider@2.png │ │ ├── scale-horz-marks-before-slider-dark.png │ │ ├── scale-horz-marks-before-slider-dark@2.png │ │ ├── scale-horz-marks-before-slider-disabled-dark.png │ │ ├── scale-horz-marks-before-slider-disabled-dark@2.png │ │ ├── scale-horz-marks-before-slider-disabled.png │ │ ├── scale-horz-marks-before-slider-disabled@2.png │ │ ├── scale-horz-marks-before-slider.png │ │ ├── scale-horz-marks-before-slider@2.png │ │ ├── scale-slider-dark.png │ │ ├── scale-slider-dark@2.png │ │ ├── scale-slider-disabled-dark.png │ │ ├── scale-slider-disabled-dark@2.png │ │ ├── scale-slider-disabled.png │ │ ├── scale-slider-disabled@2.png │ │ ├── scale-slider.png │ │ ├── scale-slider@2.png │ │ ├── scale-vert-marks-after-slider-dark.png │ │ ├── scale-vert-marks-after-slider-dark@2.png │ │ ├── scale-vert-marks-after-slider-disabled-dark.png │ │ ├── scale-vert-marks-after-slider-disabled-dark@2.png │ │ ├── scale-vert-marks-after-slider-disabled.png │ │ ├── scale-vert-marks-after-slider-disabled@2.png │ │ ├── scale-vert-marks-after-slider.png │ │ ├── scale-vert-marks-after-slider@2.png │ │ ├── scale-vert-marks-before-slider-dark.png │ │ ├── scale-vert-marks-before-slider-dark@2.png │ │ ├── scale-vert-marks-before-slider-disabled-dark.png │ │ ├── scale-vert-marks-before-slider-disabled-dark@2.png │ │ ├── scale-vert-marks-before-slider-disabled.png │ │ ├── scale-vert-marks-before-slider-disabled@2.png │ │ ├── scale-vert-marks-before-slider.png │ │ ├── scale-vert-marks-before-slider@2.png │ │ ├── selectionmode-checkbox-checked-dark.png │ │ ├── selectionmode-checkbox-checked-dark@2.png │ │ ├── selectionmode-checkbox-checked.png │ │ ├── selectionmode-checkbox-checked@2.png │ │ ├── selectionmode-checkbox-unchecked-dark.png │ │ ├── selectionmode-checkbox-unchecked-dark@2.png │ │ ├── selectionmode-checkbox-unchecked.png │ │ └── selectionmode-checkbox-unchecked@2.png │ │ ├── gtk-icons │ │ ├── checkbox-checked-symbolic.svg │ │ ├── checkbox-mixed-symbolic.svg │ │ ├── checkbox-unchecked-symbolic.svg │ │ ├── cursor-handle-symbolic.svg │ │ ├── radio-checked-symbolic.svg │ │ ├── radio-mixed-symbolic.svg │ │ ├── radio-unchecked-symbolic.svg │ │ ├── small-checkbox-checked-symbolic.svg │ │ ├── small-checkbox-mixed-symbolic.svg │ │ ├── small-checkbox-unchecked-symbolic.svg │ │ ├── small-radio-checked-symbolic.svg │ │ ├── small-radio-mixed-symbolic.svg │ │ └── small-radio-unchecked-symbolic.svg │ │ ├── index.theme │ │ ├── metacity-1 │ │ ├── assets │ │ │ ├── button.svg │ │ │ ├── close.svg │ │ │ ├── maximize.svg │ │ │ ├── menu.svg │ │ │ ├── minimize.svg │ │ │ ├── shade.svg │ │ │ ├── unmaximize.svg │ │ │ └── unshade.svg │ │ ├── metacity-theme-2.xml │ │ └── metacity-theme-3.xml │ │ ├── plank │ │ └── dock.theme │ │ ├── unity │ │ ├── close.svg │ │ ├── close_dash.svg │ │ ├── close_dash_disabled.svg │ │ ├── close_dash_prelight.svg │ │ ├── close_dash_pressed.svg │ │ ├── close_focused_normal.svg │ │ ├── close_focused_prelight.svg │ │ ├── close_focused_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── close_unfocused_prelight.svg │ │ ├── close_unfocused_pressed.svg │ │ ├── dash-widgets.json │ │ ├── launcher_arrow_btt_19.svg │ │ ├── launcher_arrow_btt_37.svg │ │ ├── launcher_arrow_ltr_19.svg │ │ ├── launcher_arrow_ltr_37.svg │ │ ├── launcher_arrow_outline_btt_19.svg │ │ ├── launcher_arrow_outline_btt_37.svg │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ ├── launcher_arrow_outline_ttb_19.svg │ │ ├── launcher_arrow_outline_ttb_37.svg │ │ ├── launcher_arrow_rtl_19.svg │ │ ├── launcher_arrow_rtl_37.svg │ │ ├── launcher_arrow_ttb_19.svg │ │ ├── launcher_arrow_ttb_37.svg │ │ ├── launcher_bfb.png │ │ ├── launcher_icon_back_150.svg │ │ ├── launcher_icon_back_54.svg │ │ ├── launcher_icon_edge_150.svg │ │ ├── launcher_icon_edge_54.svg │ │ ├── launcher_icon_glow_200.svg │ │ ├── launcher_icon_glow_62.svg │ │ ├── launcher_icon_selected_back_150.svg │ │ ├── launcher_icon_selected_back_54.svg │ │ ├── launcher_icon_shadow_200.svg │ │ ├── launcher_icon_shadow_62.svg │ │ ├── launcher_icon_shine_150.svg │ │ ├── launcher_icon_shine_54.svg │ │ ├── launcher_pip_btt_19.svg │ │ ├── launcher_pip_btt_37.svg │ │ ├── launcher_pip_ltr_19.svg │ │ ├── launcher_pip_ltr_37.svg │ │ ├── launcher_pip_rtl_19.svg │ │ ├── launcher_pip_rtl_37.svg │ │ ├── launcher_pip_ttb_19.svg │ │ ├── launcher_pip_ttb_37.svg │ │ ├── maximize.svg │ │ ├── maximize_dash.svg │ │ ├── maximize_dash_disabled.svg │ │ ├── maximize_dash_prelight.svg │ │ ├── maximize_dash_pressed.svg │ │ ├── maximize_focused_normal.svg │ │ ├── maximize_focused_prelight.svg │ │ ├── maximize_focused_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── maximize_unfocused_prelight.svg │ │ ├── maximize_unfocused_pressed.svg │ │ ├── minimize.svg │ │ ├── minimize_dash.svg │ │ ├── minimize_dash_disabled.svg │ │ ├── minimize_dash_prelight.svg │ │ ├── minimize_dash_pressed.svg │ │ ├── minimize_focused_normal.svg │ │ ├── minimize_focused_prelight.svg │ │ ├── minimize_focused_pressed.svg │ │ ├── minimize_unfocused.svg │ │ ├── minimize_unfocused_prelight.svg │ │ ├── minimize_unfocused_pressed.svg │ │ ├── progress_bar_fill.svg │ │ ├── progress_bar_trough.svg │ │ ├── sheet_style_close_focused.svg │ │ ├── sheet_style_close_focused_prelight.svg │ │ ├── sheet_style_close_focused_pressed.svg │ │ ├── unmaximize.svg │ │ ├── unmaximize_dash.svg │ │ ├── unmaximize_dash_disabled.svg │ │ ├── unmaximize_dash_prelight.svg │ │ ├── unmaximize_dash_pressed.svg │ │ ├── unmaximize_focused_normal.svg │ │ ├── unmaximize_focused_prelight.svg │ │ ├── unmaximize_focused_pressed.svg │ │ ├── unmaximize_unfocused.svg │ │ ├── unmaximize_unfocused_prelight.svg │ │ └── unmaximize_unfocused_pressed.svg │ │ └── xfwm4 │ │ ├── bottom-active.svg │ │ ├── bottom-inactive.svg │ │ ├── bottom-left-active.svg │ │ ├── bottom-left-inactive.svg │ │ ├── bottom-right-active.svg │ │ ├── bottom-right-inactive.svg │ │ ├── close-active.svg │ │ ├── close-inactive.svg │ │ ├── close-prelight.svg │ │ ├── close-pressed.svg │ │ ├── hide-active.svg │ │ ├── hide-inactive.svg │ │ ├── hide-prelight.svg │ │ ├── hide-pressed.svg │ │ ├── left-active.svg │ │ ├── left-inactive.svg │ │ ├── maximize-active.svg │ │ ├── maximize-inactive.svg │ │ ├── maximize-prelight.svg │ │ ├── maximize-pressed.svg │ │ ├── maximize-toggled-active.svg │ │ ├── maximize-toggled-inactive.svg │ │ ├── maximize-toggled-prelight.svg │ │ ├── maximize-toggled-pressed.svg │ │ ├── menu-active.svg │ │ ├── menu-inactive.svg │ │ ├── menu-prelight.svg │ │ ├── menu-pressed.svg │ │ ├── right-active.svg │ │ ├── right-inactive.svg │ │ ├── shade-active.svg │ │ ├── shade-inactive.svg │ │ ├── shade-prelight.svg │ │ ├── shade-pressed.svg │ │ ├── shade-toggled-active.svg │ │ ├── shade-toggled-inactive.svg │ │ ├── shade-toggled-prelight.svg │ │ ├── shade-toggled-pressed.svg │ │ ├── stick-active.svg │ │ ├── stick-inactive.svg │ │ ├── stick-prelight.svg │ │ ├── stick-pressed.svg │ │ ├── stick-toggled-active.svg │ │ ├── stick-toggled-inactive.svg │ │ ├── stick-toggled-prelight.svg │ │ ├── stick-toggled-pressed.svg │ │ ├── themerc │ │ ├── title-1-active.svg │ │ ├── title-1-inactive.svg │ │ ├── title-2-active.svg │ │ ├── title-2-inactive.svg │ │ ├── title-3-active.svg │ │ ├── title-3-inactive.svg │ │ ├── title-4-active.svg │ │ ├── title-4-inactive.svg │ │ ├── title-5-active.svg │ │ ├── title-5-inactive.svg │ │ ├── top-left-active.svg │ │ ├── top-left-inactive.svg │ │ ├── top-right-active.svg │ │ └── top-right-inactive.svg ├── .vimrc ├── .wallpapers │ ├── ApusColors2.png │ ├── dark.jpg │ ├── dawn.png │ ├── dunes.jpg │ ├── tokyo-night01.png │ ├── tokyo-night02.png │ ├── tokyo-night03.png │ ├── tokyo-night04.png │ ├── tokyo-night05.png │ ├── tokyo-night06.png │ ├── tokyo-night07.png │ ├── tokyo-night08.png │ ├── tokyo-night09.png │ ├── tokyo-night10.png │ ├── tokyo-night11.png │ ├── tokyo-night12.png │ ├── tokyo-night13.png │ ├── tokyo-night14.png │ ├── tokyo-night15.png │ ├── tokyo-night16.png │ ├── tokyo-night17.png │ ├── tokyo-night18.png │ ├── tokyo-night19.png │ ├── tokyo-night20.png │ ├── tokyo-night21.png │ ├── tokyo-night22.png │ ├── tokyo-night23.png │ ├── tokyo-night24.png │ ├── tokyo-night25.png │ ├── tokyo-night26.png │ ├── tokyo-night27.png │ ├── tokyo-night28.png │ ├── tokyo-night29.png │ ├── tokyo-night30.png │ ├── tokyo-night31.png │ ├── tokyo-night32.png │ ├── tokyo-night33.png │ ├── tokyo-night34.png │ ├── tokyo-night35.svg │ ├── tokyo-night36.svg │ ├── tokyo-night37.svg │ ├── tokyo-night38.png │ ├── tokyo-night39.png │ ├── tokyo-night40.png │ ├── tokyo-night41.png │ ├── tokyo.png │ ├── tokyonightWallpaper.svg │ ├── tokyonightWallpaper2.svg │ ├── walking-girl-on-water.jpg │ ├── wallpaper.png │ └── waves.jpg ├── .zsh-aliases │ ├── cleanup.zsh │ ├── exa.zsh │ ├── git.zsh │ ├── nix.zsh │ └── users.zsh └── .zshrc ├── firefox-theme └── chrome │ ├── userChrome.css │ └── userContent.css ├── fonts ├── GrapeNuts-Regular.ttf ├── Icomoon-Feather.ttf ├── Iosevka-Nerd-Font-Complete.ttf ├── JetBrains-Mono-Nerd-Font-Complete.ttf ├── NerdFont │ ├── MesloLGS NF Bold Italic.ttf │ ├── MesloLGS NF Bold.ttf │ ├── MesloLGS NF Italic.ttf │ └── MesloLGS NF Regular.ttf ├── ProductSans │ ├── ProductSans-Black.ttf │ ├── ProductSans-Bold-Italic.ttf │ ├── ProductSans-Bold.ttf │ ├── ProductSans-Light.ttf │ ├── ProductSans-Medium.ttf │ ├── ProductSans-Regular-Italic.ttf │ ├── ProductSans-Regular.ttf │ └── ProductSans-Thin.ttf ├── RobotoMono │ ├── Roboto Mono Bold Nerd Font Complete.ttf │ └── Roboto Mono Nerd Font Complete.ttf ├── cartograph-cf │ ├── CartographCF-Bold.eot │ ├── CartographCF-Bold.ttf │ ├── CartographCF-Bold.woff │ ├── CartographCF-Bold.woff2 │ ├── CartographCF-BoldItalic.eot │ ├── CartographCF-BoldItalic.ttf │ ├── CartographCF-BoldItalic.woff │ ├── CartographCF-BoldItalic.woff2 │ ├── CartographCF-DemiBold.eot │ ├── CartographCF-DemiBold.ttf │ ├── CartographCF-DemiBold.woff │ ├── CartographCF-DemiBold.woff2 │ ├── CartographCF-DemiBoldItalic.eot │ ├── CartographCF-DemiBoldItalic.ttf │ ├── CartographCF-DemiBoldItalic.woff │ ├── CartographCF-DemiBoldItalic.woff2 │ ├── CartographCF-ExtraBold.eot │ ├── CartographCF-ExtraBold.ttf │ ├── CartographCF-ExtraBold.woff │ ├── CartographCF-ExtraBold.woff2 │ ├── CartographCF-ExtraBoldItalic.eot │ ├── CartographCF-ExtraBoldItalic.ttf │ ├── CartographCF-ExtraBoldItalic.woff │ ├── CartographCF-ExtraBoldItalic.woff2 │ ├── CartographCF-ExtraLight.eot │ ├── CartographCF-ExtraLight.ttf │ ├── CartographCF-ExtraLight.woff │ ├── CartographCF-ExtraLight.woff2 │ ├── CartographCF-ExtraLightItalic.eot │ ├── CartographCF-ExtraLightItalic.ttf │ ├── CartographCF-ExtraLightItalic.woff │ ├── CartographCF-ExtraLightItalic.woff2 │ ├── CartographCF-Heavy.eot │ ├── CartographCF-Heavy.ttf │ ├── CartographCF-Heavy.woff │ ├── CartographCF-Heavy.woff2 │ ├── CartographCF-HeavyItalic.eot │ ├── CartographCF-HeavyItalic.ttf │ ├── CartographCF-HeavyItalic.woff │ ├── CartographCF-HeavyItalic.woff2 │ ├── CartographCF-Light.eot │ ├── CartographCF-Light.ttf │ ├── CartographCF-Light.woff │ ├── CartographCF-Light.woff2 │ ├── CartographCF-LightItalic.eot │ ├── CartographCF-LightItalic.ttf │ ├── CartographCF-LightItalic.woff │ ├── CartographCF-LightItalic.woff2 │ ├── CartographCF-Regular.eot │ ├── CartographCF-Regular.ttf │ ├── CartographCF-Regular.woff │ ├── CartographCF-Regular.woff2 │ ├── CartographCF-RegularItalic.eot │ ├── CartographCF-RegularItalic.ttf │ ├── CartographCF-RegularItalic.woff │ ├── CartographCF-RegularItalic.woff2 │ ├── CartographCF-Thin.eot │ ├── CartographCF-Thin.ttf │ ├── CartographCF-Thin.woff │ ├── CartographCF-Thin.woff2 │ ├── CartographCF-ThinItalic.eot │ ├── CartographCF-ThinItalic.ttf │ ├── CartographCF-ThinItalic.woff │ ├── CartographCF-ThinItalic.woff2 │ ├── demo.html │ └── stylesheet.css └── f │ └── Fira_Code_Medium_Nerd_Font_Complete.ttf └── pkglist /dotfiles/.config/BetterDiscord/data/betterdiscord.asar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/BetterDiscord/data/betterdiscord.asar -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/stable/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/BetterDiscord/data/stable/custom.css -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/stable/plugins.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/stable/themes.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tokyo Night": true 3 | } -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/1.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/10.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/11.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/12.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/13.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/14.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/15.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/16.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/17.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/18.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/19.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/2.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/20.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/21.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/22.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/23.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/24.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/25.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/26.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/27.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/28.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/29.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/3.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/30.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/31.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/4.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/5.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/6.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/7.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/8.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/black/9.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/1.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/10.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/11.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/12.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/13.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/14.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/15.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/16.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/17.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/18.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/19.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/2.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/20.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/21.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/22.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/23.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/24.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/25.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/26.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/27.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/28.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/29.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/3.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/30.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/31.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/4.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/5.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/6.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/7.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/8.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/white/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/cal/white/9.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/cascade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/cascade.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/cascadetile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/cascadetile.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/cascadetilew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/cascadetilew.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/cascadew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/cascadew.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/centerfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/centerfair.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/centerfairw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/centerfairw.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/centerwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/centerwork.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/centerworkh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/centerworkh.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/centerworkhw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/centerworkhw.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/centerworkw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/centerworkw.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/termfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/termfair.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/default/termfairw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/default/termfairw.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/zenburn/cascade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/zenburn/cascade.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/zenburn/cascadetile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/zenburn/cascadetile.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/zenburn/centerfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/zenburn/centerfair.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/zenburn/centerwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/zenburn/centerwork.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/zenburn/centerworkh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/zenburn/centerworkh.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/layout/zenburn/termfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/layout/zenburn/termfair.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/mail.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/no_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/no_net.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/01d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/01n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/01n.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/02d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/02d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/02n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/02n.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/03d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/03d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/03n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/03n.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/04d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/04d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/09d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/09d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/10d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/10d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/11d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/11d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/13d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/13d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/50d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/50d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/openweathermap/na.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/taskwarrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/lain/icons/taskwarrior.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/scripts/compton-toggle.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if pgrep -x "compton" > /dev/null 3 | then 4 | killall compton 5 | else 6 | compton -b --config ~/.config/awesome/compton.conf 7 | fi 8 | -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/ac.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/ac.png.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/ac.png.bk -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/battery.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/battery.png.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/battery.png.bk -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/battery_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/battery_empty.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/battery_empty.png.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/battery_empty.png.bk -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/battery_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/battery_low.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/battery_low.png.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/battery_low.png.bk -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/centerfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/centerfair.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/centerwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/centerwork.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/centerworkh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/centerworkh.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/cpu.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/dwindle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/dwindle.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/fairh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/fairh.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/fairv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/fairv.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/floating.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/hdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/hdd.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/magnifier.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/mail.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/mail_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/mail_on.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/max.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/mem.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/net.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/net_wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/net_wired.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/note.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/note_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/note_on.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/scissors.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/spiral.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/square_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/square_sel.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/square_unsel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/square_unsel.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/submenu.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/task.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/temp.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/termfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/termfair.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/tile.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/tilebottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/tilebottom.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/tileleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/tileleft.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/tiletop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/tiletop.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/titlebar/close_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/titlebar/close_focus.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/titlebar/close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/titlebar/close_normal.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/vol.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol.png.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/vol.png.bk -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/vol_low.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol_low.png.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/vol_low.png.bk -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/vol_mute.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol_mute.png.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/vol_mute.png.bk -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/vol_no.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol_no.png.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/icons/vol_no.png.bk -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/Screenshots/vimrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/Screenshots/vimrc.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/witcher-wall3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/witcher-wall3.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/witcher-wall4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/witcher-wall4.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/witcher-wall5.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/witcher-wall5.psd -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/witcher-wall7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.config/awesome/themes/tokyo-night/tokyo-night/witcher-wall7.png -------------------------------------------------------------------------------- /dotfiles/.config/neofetch/ascii.txt: -------------------------------------------------------------------------------- 1 | ▄ ▄ 2 | ▄ ▀▄ ▄▀ ▄ 3 | █▄█▀███▀█▄█ 4 | ▀█████████▀ 5 | ▄▀ ▀▄ 6 | 7 | -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/android_apps: -------------------------------------------------------------------------------- 1 | ../applets/android/apps.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/android_backlight: -------------------------------------------------------------------------------- 1 | ../applets/android/backlight.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/android_mpd: -------------------------------------------------------------------------------- 1 | ../applets/android/mpd.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/android_powermenu: -------------------------------------------------------------------------------- 1 | ../applets/android/powermenu.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/android_quicklinks: -------------------------------------------------------------------------------- 1 | ../applets/android/quicklinks.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/android_screenshot: -------------------------------------------------------------------------------- 1 | ../applets/android/screenshot.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/android_volume: -------------------------------------------------------------------------------- 1 | ../applets/android/volume.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_apps: -------------------------------------------------------------------------------- 1 | ../applets/applets/apps.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_backlight: -------------------------------------------------------------------------------- 1 | ../applets/applets/backlight.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_battery: -------------------------------------------------------------------------------- 1 | ../applets/applets/battery.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_mpd: -------------------------------------------------------------------------------- 1 | ../applets/applets/mpd.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_network: -------------------------------------------------------------------------------- 1 | ../applets/applets/network.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_powermenu: -------------------------------------------------------------------------------- 1 | ../applets/applets/powermenu.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_quicklinks: -------------------------------------------------------------------------------- 1 | ../applets/applets/quicklinks.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_screenshot: -------------------------------------------------------------------------------- 1 | ../applets/applets/screenshot.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_time: -------------------------------------------------------------------------------- 1 | ../applets/applets/time.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/applet_volume: -------------------------------------------------------------------------------- 1 | ../applets/applets/volume.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/launcher_colorful: -------------------------------------------------------------------------------- 1 | ../launchers/colorful/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/launcher_misc: -------------------------------------------------------------------------------- 1 | ../launchers/misc/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/launcher_ribbon: -------------------------------------------------------------------------------- 1 | ../launchers/ribbon/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/launcher_slate: -------------------------------------------------------------------------------- 1 | ../launchers/slate/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/launcher_text: -------------------------------------------------------------------------------- 1 | ../launchers/text/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_apps: -------------------------------------------------------------------------------- 1 | ../applets/menu/apps.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_backlight: -------------------------------------------------------------------------------- 1 | ../applets/menu/backlight.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_battery: -------------------------------------------------------------------------------- 1 | ../applets/menu/battery.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_mpd: -------------------------------------------------------------------------------- 1 | ../applets/menu/mpd.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_network: -------------------------------------------------------------------------------- 1 | ../applets/menu/network.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_powermenu: -------------------------------------------------------------------------------- 1 | ../applets/menu/powermenu.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_quicklinks: -------------------------------------------------------------------------------- 1 | ../applets/menu/quicklinks.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_screenshot: -------------------------------------------------------------------------------- 1 | ../applets/menu/screenshot.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_time: -------------------------------------------------------------------------------- 1 | ../applets/menu/time.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/menu_volume: -------------------------------------------------------------------------------- 1 | ../applets/menu/volume.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/powermenu: -------------------------------------------------------------------------------- 1 | ../powermenu/powermenu.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/config.rasi: -------------------------------------------------------------------------------- 1 | /** Basic config file **/ 2 | 3 | configuration { 4 | show-icons: true; 5 | icon-theme: "Papirus"; 6 | } 7 | -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/colors.rasi: -------------------------------------------------------------------------------- 1 | /* colors */ 2 | 3 | * { 4 | al: #00000000; 5 | bg: #000000ff; 6 | se: #101010ff; 7 | fg: #FFFFFFff; 8 | ac: #00B19Fff; 9 | } 10 | -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/028006030e0e7ebffc7f7070c0600140: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/14fef782d02440884392942c11205230: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/2870a09082c103050810ffdffffe0204: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/X_cursor: -------------------------------------------------------------------------------- 1 | x-cursor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/alias -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/all-scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/all-scroll -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/arrow: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/bd_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/bd_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/bottom_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/bottom_left_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/bottom_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/bottom_right_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/bottom_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/bottom_side -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/bottom_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/bottom_tee -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/c7088f0f3e6c8088236ef8e1e3e70000: -------------------------------------------------------------------------------- 1 | bd_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/cell -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/center_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/center_ptr -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/circle: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/closedhand: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/col-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/col-resize -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/color-picker -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/context-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/context-menu -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/copy -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/cross: -------------------------------------------------------------------------------- 1 | crosshair -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/cross_reverse: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/crosshair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/crosshair -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/default -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/diamond_cross: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dnd-ask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/dnd-ask -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dnd-link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/dnd-link -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dnd-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dnd-no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/dnd-no-drop -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dot_box_mask: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dotbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/dotbox -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/double_arrow: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/down-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/down-arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/draft -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/draft_large: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/draft_small: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/draped_box: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/ew-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/fcf1c3c7cd4491d801f1e1c78f100000: -------------------------------------------------------------------------------- 1 | fd_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/fd_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/fd_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/fleur -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/forbidden: -------------------------------------------------------------------------------- 1 | no-drop -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/grab: -------------------------------------------------------------------------------- 1 | openhand -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/grabbing: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/half-busy: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/hand: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/hand1: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/help -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/ibeam: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/icon: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/left-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/left-arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/left_ptr: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/left_ptr_help: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/left_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/left_side -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/left_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/left_tee -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/link: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/ll_angle: -------------------------------------------------------------------------------- 1 | bottom_left_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/lr_angle: -------------------------------------------------------------------------------- 1 | bottom_right_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/move: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/no-drop -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/not-allowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/not-allowed -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/ns-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/openhand -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/pencil -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/pirate -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/plus: -------------------------------------------------------------------------------- 1 | cell -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/pointer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/pointer -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/pointing_hand: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/progress -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/right-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/right-arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/right_ptr -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/right_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/right_side -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/right_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/right_tee -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/row-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/row-resize -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/sb_down_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/sb_down_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/sb_left_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/sb_left_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/sb_right_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/sb_right_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/sb_up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/sb_up_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/se-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size-bdiag: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size-fdiag: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size-hor: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size-ver: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/size_bdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/size_fdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/size_hor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/size_ver -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/split_h: -------------------------------------------------------------------------------- 1 | col-resize -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/split_v: -------------------------------------------------------------------------------- 1 | row-resize -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/target: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/tcross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/tcross -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/text -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/top_left_arrow: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/top_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/top_left_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/top_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/top_right_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/top_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/top_side -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/top_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/top_tee -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/ul_angle: -------------------------------------------------------------------------------- 1 | top_left_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/up-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/up-arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/ur_angle: -------------------------------------------------------------------------------- 1 | top_right_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/vertical-text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/vertical-text -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/wait -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/wayland-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/wayland-cursor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/x-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/x-cursor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/xterm: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/zoom-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/zoom-in -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/zoom-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.icons/oreo_grey_cursors/cursors/zoom-out -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Oreo Grey Cursors 3 | Comment=design by varlesh | colour by convert.rb 4 | -------------------------------------------------------------------------------- /dotfiles/.screenlayout/rightAcerMonitor.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | xrandr --output eDP-1 --off --output HDMI-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/chrome/chrome-scrollbar.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/chrome/chrome-scrollbar.crx -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/chrome/chrome-theme.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/chrome/chrome-theme.crx -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/assets/calendar-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/assets/calendar-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/assets/corner-ripple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/cinnamon/assets/corner-ripple.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/assets/trash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/cinnamon/assets/trash-icon.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/assets/calendar-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/assets/calendar-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/assets/dash/bottom-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/assets/dash/left-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/assets/dash/right-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/assets/dash/top-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/icons/keyboard-caps-lock-filled-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/icons/keyboard-enter-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/icons/keyboard-shift-filled-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/icons/message-indicator-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/noise-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gnome-shell/noise-texture.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/border.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/button-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/button-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/button-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/button-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/button.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-checked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-checked-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-checked-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-checked-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-mixed-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-mixed-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-mixed-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-mixed-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-mixed-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-mixed-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-unchecked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-unchecked-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-unchecked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-unchecked-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-unchecked-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-left-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-left-entry-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-left-entry-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-left-entry-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-left-entry-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-left-entry-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-left-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-left-entry.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-right-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-right-entry-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-right-entry-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-right-entry-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-right-entry-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-right-entry-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-right-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/combo-right-entry.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-background-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-background-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-background.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/focus.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/frame-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/frame-inline.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/frame-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/frame-notebook.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/frame.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-horz-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-horz-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-horz-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-horz-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-horz.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-vert-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-vert-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-vert-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-vert-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-vert.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-checked-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-checked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-mixed-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-mixed-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-mixed.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-checkbox-unchecked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-checked-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-checked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-mixed-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-mixed-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-mixed.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-unchecked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-unchecked-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/menu-radio-unchecked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-down-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-down-alt.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-down-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-down-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-down.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left-alt.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left-semi.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right-alt.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right-semi.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up-alt.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/progressbar-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/progressbar-progress.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/progressbar-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/progressbar-trough.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-checked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-checked-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-checked-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-checked-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-checked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-unchecked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-unchecked-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-unchecked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-unchecked-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-unchecked-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-horz-trough-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-horz-trough-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-horz-trough-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-horz-trough-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-horz-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-horz-trough.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-slider-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-slider-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-slider-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-vert-trough-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-vert-trough-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-vert-trough-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-vert-trough-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-vert-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scale-vert-trough.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-slider-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-slider-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-slider-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-horz-trough.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-vert-ltr-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-vert-ltr-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-vert-ltr-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-vert-ltr-trough.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-vert-rtl-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-vert-rtl-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-vert-rtl-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/scrollbar-vert-rtl-trough.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-down-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-down-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-down-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-down-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-down.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-down-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-down-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-down-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-down-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-down.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/tab.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-ltr-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-ltr-button-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-ltr-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-ltr-button-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-ltr-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-ltr-button.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-rtl-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-rtl-button-active.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-rtl-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-rtl-button-hover.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-rtl-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-2.0/assets/treeview-rtl-button.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-horz-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-horz-marks-after-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-horz-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-horz-marks-before-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-dark.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-dark@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-disabled-dark.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider-disabled@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-slider@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-vert-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-vert-marks-after-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-vert-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/scale-vert-marks-before-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/assets/selectionmode-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-3.0/assets/selectionmode-checkbox-checked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/icons/cursor-handle-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-after-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-after-slider-dark.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-after-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-after-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-after-slider@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-before-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-before-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-horz-marks-before-slider@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-dark.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-dark@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-disabled-dark.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-disabled.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider-disabled@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-after-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-after-slider-dark.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-after-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-after-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-after-slider@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-before-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-before-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/scale-vert-marks-before-slider@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/selectionmode-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/selectionmode-checkbox-checked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/selectionmode-checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/selectionmode-checkbox-checked@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/selectionmode-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/gtk-assets/selectionmode-checkbox-unchecked.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-icons/cursor-handle-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/button.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/shade.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/unmaximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/unshade.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_btt_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_btt_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_ltr_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_ltr_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_outline_btt_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_outline_btt_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_outline_ltr_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_outline_ltr_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_outline_rtl_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_outline_rtl_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_outline_ttb_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_outline_ttb_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_rtl_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_rtl_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_ttb_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_arrow_ttb_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_bfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.themes/TokyoNight/unity/launcher_bfb.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_back_150.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_back_54.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_edge_150.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_edge_54.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_glow_200.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_glow_62.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_selected_back_54.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_shadow_200.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_shadow_62.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_shine_150.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_icon_shine_54.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_pip_btt_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_pip_btt_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_pip_ltr_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_pip_ltr_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_pip_rtl_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_pip_rtl_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_pip_ttb_19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_pip_ttb_37.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/progress_bar_fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/bottom-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/bottom-inactive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/bottom-left-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/bottom-left-inactive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/bottom-right-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/bottom-right-inactive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/left-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/left-inactive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/right-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/right-inactive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dotfiles/.wallpapers/ApusColors2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/ApusColors2.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/dark.jpg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/dawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/dawn.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/dunes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/dunes.jpg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night01.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night02.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night03.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night04.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night05.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night06.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night07.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night08.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night09.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night10.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night11.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night12.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night13.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night14.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night15.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night16.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night17.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night18.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night19.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night20.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night21.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night22.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night23.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night24.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night25.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night26.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night27.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night28.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night29.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night30.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night31.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night32.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night33.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night34.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night38.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night39.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night40.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo-night41.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/tokyo.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/walking-girl-on-water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/walking-girl-on-water.jpg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/wallpaper.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/waves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/dotfiles/.wallpapers/waves.jpg -------------------------------------------------------------------------------- /dotfiles/.zsh-aliases/exa.zsh: -------------------------------------------------------------------------------- 1 | # EXA Alias 2 | alias ls="exa -l" 3 | alias ll="exa -la" 4 | alias la="exa --long --all --group" -------------------------------------------------------------------------------- /fonts/GrapeNuts-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/GrapeNuts-Regular.ttf -------------------------------------------------------------------------------- /fonts/Icomoon-Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/Icomoon-Feather.ttf -------------------------------------------------------------------------------- /fonts/Iosevka-Nerd-Font-Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/Iosevka-Nerd-Font-Complete.ttf -------------------------------------------------------------------------------- /fonts/JetBrains-Mono-Nerd-Font-Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/JetBrains-Mono-Nerd-Font-Complete.ttf -------------------------------------------------------------------------------- /fonts/NerdFont/MesloLGS NF Bold Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/NerdFont/MesloLGS NF Bold Italic.ttf -------------------------------------------------------------------------------- /fonts/NerdFont/MesloLGS NF Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/NerdFont/MesloLGS NF Bold.ttf -------------------------------------------------------------------------------- /fonts/NerdFont/MesloLGS NF Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/NerdFont/MesloLGS NF Italic.ttf -------------------------------------------------------------------------------- /fonts/NerdFont/MesloLGS NF Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/NerdFont/MesloLGS NF Regular.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/ProductSans/ProductSans-Black.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Bold-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/ProductSans/ProductSans-Bold-Italic.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/ProductSans/ProductSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/ProductSans/ProductSans-Light.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/ProductSans/ProductSans-Medium.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Regular-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/ProductSans/ProductSans-Regular-Italic.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/ProductSans/ProductSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/ProductSans/ProductSans-Thin.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono/Roboto Mono Bold Nerd Font Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/RobotoMono/Roboto Mono Bold Nerd Font Complete.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono/Roboto Mono Nerd Font Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/RobotoMono/Roboto Mono Nerd Font Complete.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Bold.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Bold.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Bold.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Bold.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-BoldItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-BoldItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-BoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-DemiBold.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-DemiBold.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-DemiBold.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-DemiBold.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-DemiBoldItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-DemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-DemiBoldItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-DemiBoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraBold.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraBold.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraBoldItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraLight.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraLightItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraLightItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Heavy.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Heavy.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Heavy.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Heavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Heavy.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Heavy.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-HeavyItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-HeavyItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-HeavyItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-HeavyItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-HeavyItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-HeavyItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-HeavyItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Light.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Light.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Light.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Light.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-LightItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-LightItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-LightItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Regular.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Regular.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Regular.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Regular.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-RegularItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-RegularItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-RegularItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-RegularItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-RegularItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Thin.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Thin.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Thin.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-Thin.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ThinItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ThinItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ThinItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/cartograph-cf/CartographCF-ThinItalic.woff2 -------------------------------------------------------------------------------- /fonts/f/Fira_Code_Medium_Nerd_Font_Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/f4cd9def8a40cc5d9e7aadd3ee02d67c13cf32d9/fonts/f/Fira_Code_Medium_Nerd_Font_Complete.ttf --------------------------------------------------------------------------------