├── 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 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/README.md -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/betterdiscord.asar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/BetterDiscord/data/betterdiscord.asar -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/stable/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/stable/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/BetterDiscord/data/stable/misc.json -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/stable/plugins.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/stable/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/BetterDiscord/data/stable/settings.json -------------------------------------------------------------------------------- /dotfiles/.config/BetterDiscord/data/stable/themes.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tokyo Night": true 3 | } -------------------------------------------------------------------------------- /dotfiles/.config/Thunar/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/Thunar/accels.scm -------------------------------------------------------------------------------- /dotfiles/.config/Thunar/uca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/Thunar/uca.xml -------------------------------------------------------------------------------- /dotfiles/.config/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/alacritty.yml -------------------------------------------------------------------------------- /dotfiles/.config/awesome/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/brightness.sh -------------------------------------------------------------------------------- /dotfiles/.config/awesome/freedesktop/desktop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/freedesktop/desktop.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/freedesktop/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/freedesktop/init.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/freedesktop/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/freedesktop/menu.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/helpers.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/cal/black/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/dotfiles/.config/awesome/lain/icons/cal/white/9.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/mail.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/no_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/no_net.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/01d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/01n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/01n.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/02d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/02d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/02n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/02n.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/03d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/03d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/03n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/03n.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/04d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/04d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/09d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/09d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/10d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/10d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/11d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/11d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/13d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/13d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/50d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/50d.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/openweathermap/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/openweathermap/na.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/icons/taskwarrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/icons/taskwarrior.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/init.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/lain-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/lain-scm-1.rockspec -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/layout/cascade.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/layout/cascade.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/layout/centerwork.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/layout/centerwork.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/layout/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/layout/init.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/layout/termfair.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/layout/termfair.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/util/dkjson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/util/dkjson.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/util/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/util/init.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/util/markup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/util/markup.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/util/menu_iterator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/util/menu_iterator.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/util/quake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/util/quake.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/util/separators.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/util/separators.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/alsa.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/alsa.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/alsabar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/alsabar.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/bat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/bat.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/cal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/cal.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/contrib/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/contrib/init.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/contrib/moc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/contrib/moc.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/contrib/redshift.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/contrib/redshift.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/contrib/task.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/contrib/task.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/contrib/tp_smapi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/contrib/tp_smapi.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/cpu.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/fs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/fs.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/imap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/imap.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/init.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/mem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/mem.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/mpd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/mpd.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/net.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/net.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/pulse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/pulse.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/pulsebar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/pulsebar.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/sysload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/sysload.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/temp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/temp.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/widget/weather.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/widget/weather.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/Home.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/Layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/Layouts.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/Utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/Utilities.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/Widgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/Widgets.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/_Footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/_Footer.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/_Sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/_Sidebar.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/alsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/alsa.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/alsabar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/alsabar.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/bat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/bat.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/cal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/cal.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/cpu.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/fs.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/imap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/imap.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/mem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/mem.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/moc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/moc.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/mpd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/mpd.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/net.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/pulse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/pulse.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/pulseaudio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/pulseaudio.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/pulsebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/pulsebar.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/redshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/redshift.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/sysload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/sysload.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/task.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/temp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/temp.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/tp_smapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/tp_smapi.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/watch.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/lain/wiki/weather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/lain/wiki/weather.md -------------------------------------------------------------------------------- /dotfiles/.config/awesome/rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/rc.lua -------------------------------------------------------------------------------- /dotfiles/.config/awesome/scripts/compton-toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/scripts/compton-toggle.sh -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/ac.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/cpu.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/hdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/hdd.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/mail.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/net.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/note.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/temp.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/tile.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/icons/vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/themes/tokyo-night/icons/vol.png -------------------------------------------------------------------------------- /dotfiles/.config/awesome/themes/tokyo-night/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/awesome/themes/tokyo-night/theme.lua -------------------------------------------------------------------------------- /dotfiles/.config/cava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/cava/config -------------------------------------------------------------------------------- /dotfiles/.config/cava/config.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/cava/config.bk -------------------------------------------------------------------------------- /dotfiles/.config/kitty/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/kitty/color.ini -------------------------------------------------------------------------------- /dotfiles/.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /dotfiles/.config/neofetch/ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/neofetch/ascii.txt -------------------------------------------------------------------------------- /dotfiles/.config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/neofetch/config.conf -------------------------------------------------------------------------------- /dotfiles/.config/picom/picom-bk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/picom/picom-bk.conf -------------------------------------------------------------------------------- /dotfiles/.config/picom/picom-hyprland-like-animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/picom/picom-hyprland-like-animations.conf -------------------------------------------------------------------------------- /dotfiles/.config/picom/picom-hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/picom/picom-hyprland.conf -------------------------------------------------------------------------------- /dotfiles/.config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/picom/picom.conf -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/apps.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/backlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/backlight.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/colors.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/confirm.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/five.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/five.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/message.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/message.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/mpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/mpd.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/powermenu.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/quicklinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/quicklinks.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/screenshot.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/six.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/six.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/three.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/three.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/android/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/android/volume.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/apps.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/backlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/backlight.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/battery.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/mpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/mpd.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/network.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/powermenu.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/quicklinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/quicklinks.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/screenshot.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/style.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/time.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/applets/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/applets/volume.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/apps.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/backlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/backlight.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/battery.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/configs/circle/mpd.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/configs/circle/mpd.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/configs/square/mpd.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/configs/square/mpd.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/mpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/mpd.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/network.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/powermenu.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/quicklinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/quicklinks.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/screenshot.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/style.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/time.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/menu/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/menu/volume.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/adapta-nokto.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/adapta-nokto.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/adapta.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/adapta.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/adwaita.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/adwaita.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/arc-dark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/arc-dark.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/arc.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/arc.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/armchair.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/armchair.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/colors.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/confirm.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/dark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/dark.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/darkpink.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/darkpink.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/fresh.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/fresh.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/gruvbox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/gruvbox.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/inside.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/inside.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/message.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/message.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/minimo.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/minimo.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/party.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/party.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/applets/styles/sirin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/applets/styles/sirin.rasi -------------------------------------------------------------------------------- /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/bin/usedcpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/bin/usedcpu -------------------------------------------------------------------------------- /dotfiles/.config/rofi/bin/usedram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/bin/usedram -------------------------------------------------------------------------------- /dotfiles/.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/config.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/colors.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_1.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_10.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_11.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_12.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_2.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_3.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_4.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_5.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_6.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_7.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_8.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/colorful/style_9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/colorful/style_9.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/appdrawer.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/appdrawer.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/appdrawer_alt.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/appdrawer_alt.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/appfolder.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/appfolder.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/blurry.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/blurry.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/blurry_full.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/blurry_full.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/column.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/column.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/gnome_do.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/gnome_do.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/kde_krunner.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/kde_krunner.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/kde_simplemenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/kde_simplemenu.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/launchpad.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/launchpad.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/row.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/row.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/row_center.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/row_center.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/row_dock.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/row_dock.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/row_dropdown.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/row_dropdown.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/screen.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/screen.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/misc/slingshot.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/misc/slingshot.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/full_bottom.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/full_bottom.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/full_left.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/full_left.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/full_right.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/full_right.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/full_top.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/full_top.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/ribbon_bottom.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/ribbon_bottom.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/ribbon_left.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/ribbon_left.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/ribbon_right.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/ribbon_right.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/ribbon_top.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/ribbon_top.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/berry.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/berry.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/bluish.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/bluish.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/cocoa.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/cocoa.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/colors.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/faded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/faded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/gotham.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/gotham.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/mask.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/mask.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/nightly.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/nightly.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/ribbon/styles/nordic.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/ribbon/styles/nordic.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/slate_bottom.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/slate_bottom.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/slate_center.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/slate_center.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/slate_full.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/slate_full.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/slate_left.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/slate_left.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/slate_right.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/slate_right.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/slate_top.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/slate_top.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Amber.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Amber.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Black.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Black.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Blue.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Blue.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Brown.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Brown.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Cyan.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Cyan.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Gray.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Gray.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Green.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Green.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Indigo.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Indigo.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Lime.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Lime.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Orange.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Orange.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Pink.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Pink.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Purple.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Purple.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Red.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Red.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Teal.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Teal.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/Yellow.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/Yellow.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/slate/styles/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/slate/styles/colors.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/launcher.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/style_1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/style_1.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/style_2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/style_2.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/style_3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/style_3.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/style_4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/style_4.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/style_5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/style_5.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/style_6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/style_6.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/style_7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/style_7.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/berry.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/berry.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/black.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/black.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/bluish.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/bluish.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/cocoa.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/cocoa.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/colors.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/faded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/faded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/gotham.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/gotham.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/mask.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/mask.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/nightly.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/nightly.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/nordic.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/nordic.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/launchers/text/styles/white.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/launchers/text/styles/white.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/card_alt.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/card_alt.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/card_circle.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/card_circle.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/card_rounded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/card_rounded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/card_square.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/card_square.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/column_alt.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/column_alt.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/column_circle.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/column_circle.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/column_rounded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/column_rounded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/column_square.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/column_square.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/confirm.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/dock_alt.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/dock_alt.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/dock_circle.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/dock_circle.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/dock_rounded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/dock_rounded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/dock_square.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/dock_square.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/drop_alt.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/drop_alt.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/drop_circle.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/drop_circle.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/drop_rounded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/drop_rounded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/drop_square.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/drop_square.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/full_alt.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/full_alt.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/full_circle.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/full_circle.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/full_rounded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/full_rounded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/full_square.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/full_square.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/message.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/message.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/powermenu.sh -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/row_alt.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/row_alt.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/row_circle.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/row_circle.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/row_rounded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/row_rounded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/row_square.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/row_square.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/berry.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/berry.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/bluish.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/bluish.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/cocoa.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/cocoa.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/colors.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/faded.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/faded.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/gotham.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/gotham.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/mask.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/mask.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/nightly.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/nightly.rasi -------------------------------------------------------------------------------- /dotfiles/.config/rofi/powermenu/styles/nordic.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.config/rofi/powermenu/styles/nordic.rasi -------------------------------------------------------------------------------- /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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/alias -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/all-scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/bd_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/bottom_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/bottom_side -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/bottom_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/cell -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/center_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/col-resize -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/color-picker -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/context-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/context-menu -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/dnd-link -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dnd-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/dnd-move -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/dnd-no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/down-arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/fd_double_arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/left_side -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/left_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/no-drop -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/not-allowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/openhand -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/pencil -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/right-arrow -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/right_ptr -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/right_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/right_side -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/right_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/right_tee -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/row-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/size_bdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/size_fdiag -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/size_hor -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/tcross -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/top_right_corner -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/top_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/top_side -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/top_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/zoom-in -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/cursors/zoom-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/cursors/zoom-out -------------------------------------------------------------------------------- /dotfiles/.icons/oreo_grey_cursors/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.icons/oreo_grey_cursors/index.theme -------------------------------------------------------------------------------- /dotfiles/.screenlayout/rightAcerMonitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.screenlayout/rightAcerMonitor.sh -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/COPYING -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/chrome/chrome-scrollbar.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/chrome/chrome-scrollbar.crx -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/chrome/chrome-theme.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/chrome/chrome-theme.crx -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/assets/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/cinnamon/assets/checkbox.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/assets/toggle-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/cinnamon/assets/toggle-off.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/assets/toggle-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/cinnamon/assets/toggle-on.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/assets/trash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/cinnamon/assets/trash-icon.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/cinnamon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/cinnamon/cinnamon.css -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gnome-shell/README.md -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gnome-shell/assets/close.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/noise-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gnome-shell/noise-texture.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gnome-shell/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gnome-shell/pad-osd.css -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/apps.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/apps.rc -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/border.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/button.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/entry.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/flat-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/focus.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/frame.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-horz.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/handle-vert.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-down.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-left.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up-alt.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/pan-up.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-ltr-up.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/assets/spin-rtl-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/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/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/assets/tab.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/hacks.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/hacks.rc -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-2.0/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-2.0/main.rc -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/gtk-assets/scale-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/gtk-assets/scale-slider@2.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/index.theme -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/metacity-1/assets/button.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/metacity-1/assets/close.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/metacity-1/assets/maximize.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/metacity-1/assets/menu.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/metacity-1/assets/minimize.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/shade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/metacity-1/assets/shade.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/metacity-1/assets/unshade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/metacity-1/assets/unshade.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/plank/dock.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/plank/dock.theme -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/close.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/close_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/close_dash.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/close_dash_disabled.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/close_dash_prelight.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/close_dash_pressed.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/close_focused_normal.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/close_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/close_unfocused.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/dash-widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/dash-widgets.json -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/launcher_bfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/launcher_bfb.png -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/maximize.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/maximize_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/maximize_dash.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/minimize.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/minimize_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/minimize_dash.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/progress_bar_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/progress_bar_fill.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/unmaximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/unmaximize.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/unity/unmaximize_dash.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/bottom-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/bottom-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/bottom-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/bottom-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/close-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/close-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/close-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/close-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/close-prelight.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/close-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/close-pressed.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/hide-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/hide-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/hide-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/hide-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/hide-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/hide-prelight.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/hide-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/hide-pressed.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/left-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/left-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/maximize-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/maximize-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/maximize-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/maximize-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/maximize-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/maximize-prelight.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/maximize-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/maximize-pressed.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/menu-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/menu-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/menu-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/menu-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/menu-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/menu-prelight.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/menu-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/menu-pressed.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/right-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/right-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/shade-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/shade-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/shade-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/shade-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/shade-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/shade-prelight.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/shade-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/shade-pressed.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/stick-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/stick-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/stick-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/stick-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/stick-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/stick-prelight.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/stick-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/stick-pressed.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/themerc -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-1-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-1-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-1-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-1-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-2-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-2-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-2-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-2-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-3-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-3-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-3-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-3-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-4-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-4-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-4-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-4-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-5-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-5-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/title-5-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/title-5-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/top-left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/top-left-active.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/top-left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/top-left-inactive.svg -------------------------------------------------------------------------------- /dotfiles/.themes/TokyoNight/xfwm4/top-right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.themes/TokyoNight/xfwm4/top-right-active.svg -------------------------------------------------------------------------------- /dotfiles/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.vimrc -------------------------------------------------------------------------------- /dotfiles/.wallpapers/ApusColors2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/ApusColors2.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/dark.jpg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/dawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/dawn.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/dunes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/dunes.jpg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night01.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night02.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night03.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night04.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night05.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night06.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night07.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night08.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night09.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night10.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night11.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night12.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night13.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night14.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night15.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night16.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night17.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night18.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night19.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night20.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night21.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night22.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night23.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night24.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night25.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night26.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night27.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night28.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night29.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night30.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night31.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night32.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night33.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night34.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night35.svg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night36.svg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night37.svg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night38.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night39.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night40.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo-night41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo-night41.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyo.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyonightWallpaper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyonightWallpaper.svg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/tokyonightWallpaper2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/tokyonightWallpaper2.svg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/walking-girl-on-water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/walking-girl-on-water.jpg -------------------------------------------------------------------------------- /dotfiles/.wallpapers/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/wallpaper.png -------------------------------------------------------------------------------- /dotfiles/.wallpapers/waves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.wallpapers/waves.jpg -------------------------------------------------------------------------------- /dotfiles/.zsh-aliases/cleanup.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.zsh-aliases/cleanup.zsh -------------------------------------------------------------------------------- /dotfiles/.zsh-aliases/exa.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.zsh-aliases/exa.zsh -------------------------------------------------------------------------------- /dotfiles/.zsh-aliases/git.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.zsh-aliases/git.zsh -------------------------------------------------------------------------------- /dotfiles/.zsh-aliases/nix.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.zsh-aliases/nix.zsh -------------------------------------------------------------------------------- /dotfiles/.zsh-aliases/users.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.zsh-aliases/users.zsh -------------------------------------------------------------------------------- /dotfiles/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/dotfiles/.zshrc -------------------------------------------------------------------------------- /firefox-theme/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/firefox-theme/chrome/userChrome.css -------------------------------------------------------------------------------- /firefox-theme/chrome/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/firefox-theme/chrome/userContent.css -------------------------------------------------------------------------------- /fonts/GrapeNuts-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/GrapeNuts-Regular.ttf -------------------------------------------------------------------------------- /fonts/Icomoon-Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/Icomoon-Feather.ttf -------------------------------------------------------------------------------- /fonts/Iosevka-Nerd-Font-Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/Iosevka-Nerd-Font-Complete.ttf -------------------------------------------------------------------------------- /fonts/JetBrains-Mono-Nerd-Font-Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/JetBrains-Mono-Nerd-Font-Complete.ttf -------------------------------------------------------------------------------- /fonts/NerdFont/MesloLGS NF Bold Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/NerdFont/MesloLGS NF Bold Italic.ttf -------------------------------------------------------------------------------- /fonts/NerdFont/MesloLGS NF Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/NerdFont/MesloLGS NF Bold.ttf -------------------------------------------------------------------------------- /fonts/NerdFont/MesloLGS NF Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/NerdFont/MesloLGS NF Italic.ttf -------------------------------------------------------------------------------- /fonts/NerdFont/MesloLGS NF Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/NerdFont/MesloLGS NF Regular.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/ProductSans/ProductSans-Black.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Bold-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/ProductSans/ProductSans-Bold-Italic.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/ProductSans/ProductSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/ProductSans/ProductSans-Light.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/ProductSans/ProductSans-Medium.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Regular-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/ProductSans/ProductSans-Regular-Italic.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/ProductSans/ProductSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/ProductSans/ProductSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/ProductSans/ProductSans-Thin.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono/Roboto Mono Nerd Font Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/RobotoMono/Roboto Mono Nerd Font Complete.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Bold.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Bold.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Bold.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Bold.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-BoldItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-BoldItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-BoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-DemiBold.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-DemiBold.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-DemiBold.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-DemiBold.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-DemiBoldItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-DemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-DemiBoldItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-DemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-DemiBoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraBold.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraBold.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraBoldItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraLight.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraLightItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraLightItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Heavy.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Heavy.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Heavy.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Heavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Heavy.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Heavy.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-HeavyItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-HeavyItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-HeavyItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-HeavyItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-HeavyItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-HeavyItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-HeavyItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Light.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Light.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Light.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Light.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-LightItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-LightItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-LightItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Regular.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Regular.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Regular.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Regular.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-RegularItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-RegularItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-RegularItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-RegularItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-RegularItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Thin.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Thin.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Thin.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-Thin.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ThinItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ThinItalic.eot -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ThinItalic.woff -------------------------------------------------------------------------------- /fonts/cartograph-cf/CartographCF-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/CartographCF-ThinItalic.woff2 -------------------------------------------------------------------------------- /fonts/cartograph-cf/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/demo.html -------------------------------------------------------------------------------- /fonts/cartograph-cf/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/cartograph-cf/stylesheet.css -------------------------------------------------------------------------------- /fonts/f/Fira_Code_Medium_Nerd_Font_Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/fonts/f/Fira_Code_Medium_Nerd_Font_Complete.ttf -------------------------------------------------------------------------------- /pkglist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-hawk/awesomight/HEAD/pkglist --------------------------------------------------------------------------------