├── README.md ├── bin ├── borders ├── fetch ├── layout-mgr.sh ├── lock ├── screensht ├── tglbar └── xcolor-pick ├── config ├── bspwm │ ├── bspwmrc │ └── scripts │ │ ├── autostart.sh │ │ ├── bspwm_resize │ │ ├── gen-updates.sh │ │ └── monitor.sh ├── cava │ └── config ├── color-scripts │ ├── alpha │ ├── arch │ ├── bars │ ├── blocks │ ├── blocks1 │ ├── blocks2 │ ├── bloks │ ├── colorbars │ ├── colortest │ ├── colortest-slim │ ├── colorview │ ├── colorwheel │ ├── crunch │ ├── crunchbang │ ├── crunchbang-mini │ ├── darthvader │ ├── dna │ ├── dotx │ ├── elfman │ ├── faces │ ├── fade │ ├── ghosts │ ├── guns │ ├── hex-block │ ├── illumina │ ├── jangofett │ ├── launch.sh │ ├── monster │ ├── mouseface │ ├── mouseface2 │ ├── pacman │ ├── panes │ ├── pinguco │ ├── pukeskull │ ├── rails │ ├── rally-x │ ├── rupees │ ├── space-invaders │ ├── spectrum │ ├── square │ ├── tanks │ ├── thebat │ ├── thebat2 │ ├── tiefighter1 │ ├── tiefighter1-no-invo │ ├── tiefighter1row │ ├── tiefighter2 │ ├── unowns.py │ └── zwaves ├── dunst │ └── dunstrc ├── eww │ ├── assets │ │ ├── avatar.jpg │ │ ├── fallback.png │ │ └── lockscreen.png │ ├── eww.scss │ ├── eww.yuck │ ├── scripts │ │ ├── echoSongArt │ │ ├── getCalendarMonth │ │ ├── getLayout │ │ ├── getNetwork │ │ ├── getPlayerStatus │ │ ├── getSongArt │ │ ├── getSongArtist │ │ ├── getSongTitle │ │ ├── getUsedRam │ │ ├── getVpn │ │ ├── getWeather │ │ ├── getWorkspaces │ │ ├── lockScreen │ │ ├── openCalendar.sh │ │ ├── openSysTray.sh │ │ └── toggle-vpn.sh │ └── src │ │ ├── scss │ │ ├── _config.scss │ │ ├── _overrides.scss │ │ ├── _variables.scss │ │ ├── _variables.scss.night │ │ ├── bar │ │ │ ├── index.scss │ │ │ └── widgets │ │ │ │ ├── _browser.scss │ │ │ │ ├── _calendar.scss │ │ │ │ ├── _chat.scss │ │ │ │ ├── _launcher.scss │ │ │ │ ├── _powermenu.scss │ │ │ │ ├── _rofi.scss │ │ │ │ ├── _systray.scss │ │ │ │ ├── _terminal.scss │ │ │ │ ├── _time.scss │ │ │ │ ├── _vpn.scss │ │ │ │ └── _workspaces.scss │ │ ├── lock │ │ │ └── index.scss │ │ └── widgets │ │ │ └── _layouts.scss │ │ └── yuck │ │ ├── _variables.yuck │ │ ├── bar │ │ ├── _definitions.yuck │ │ └── _widgets.yuck │ │ ├── lock │ │ ├── _definitions.yuck │ │ └── _widgets.yuck │ │ └── widgets │ │ ├── _definitions.yuck │ │ └── _widgets.yuck ├── gtk-3.0 │ ├── bookmarks │ └── settings.ini ├── picom │ └── picom.conf ├── ranger │ ├── .gitignore │ ├── install-plugs.sh │ └── rc.conf ├── rofi │ ├── appmnu.rasi │ ├── colors │ │ ├── colors.rasi │ │ └── colors.rasi.night │ └── config.rasi ├── st │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── arg.h │ ├── boxdraw.c │ ├── boxdraw_data.h │ ├── config.def.h │ ├── config.mk │ ├── hb.c │ ├── hb.h │ ├── normalMode.c │ ├── normalMode.h │ ├── shell.nix │ ├── st-copyout │ ├── st-urlhandler │ ├── st.1 │ ├── st.c │ ├── st.desktop │ ├── st.h │ ├── st.info │ ├── utils.h │ ├── win.h │ ├── world │ ├── x.c │ └── xresources ├── sxhkd │ └── sxhkdrc └── wallpapers │ ├── cats │ ├── 1.png │ └── 2.png │ ├── colors │ ├── black.png │ ├── gray.png │ └── teal.png │ ├── dark │ └── 1.png │ ├── everblush │ ├── 0day.png │ └── tile.png │ ├── misc │ ├── boy.png │ ├── iceberg.jpg │ ├── key.jpg │ ├── monoWave.png │ ├── nature-13.jpg │ ├── night-ice-2.jpg │ ├── night-ice.jpg │ └── wal.png │ ├── mountains │ ├── blue.jpg │ ├── cliffsides.jpg │ ├── dark-blue.jpg │ ├── dark.jpg │ ├── gray.jpg │ ├── gruvbox_white.jpg │ ├── light.jpg │ ├── night.png │ ├── nordic.jpg │ └── white.jpg │ ├── neon │ └── city.png │ ├── night │ ├── bg.png │ ├── comets.png │ ├── night-mountains.jpg │ ├── night.jpg │ └── night2.png │ ├── pixelart │ ├── anime.png │ ├── blue.png │ ├── city.png │ ├── constelation.jpg │ ├── dark.png │ ├── light.png │ ├── mountains.jpg │ ├── night.jpg │ └── pokemon.jpg │ ├── sky │ └── 1.jpg │ └── sunsets │ └── purple.jpg ├── home ├── .Xresources ├── .Xresources.night └── .gtkrc-2.0 └── misc └── preview.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/borders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/bin/borders -------------------------------------------------------------------------------- /bin/fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/bin/fetch -------------------------------------------------------------------------------- /bin/layout-mgr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/bin/layout-mgr.sh -------------------------------------------------------------------------------- /bin/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/bin/lock -------------------------------------------------------------------------------- /bin/screensht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/bin/screensht -------------------------------------------------------------------------------- /bin/tglbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/bin/tglbar -------------------------------------------------------------------------------- /bin/xcolor-pick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/bin/xcolor-pick -------------------------------------------------------------------------------- /config/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/bspwm/bspwmrc -------------------------------------------------------------------------------- /config/bspwm/scripts/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/bspwm/scripts/autostart.sh -------------------------------------------------------------------------------- /config/bspwm/scripts/bspwm_resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/bspwm/scripts/bspwm_resize -------------------------------------------------------------------------------- /config/bspwm/scripts/gen-updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/bspwm/scripts/gen-updates.sh -------------------------------------------------------------------------------- /config/bspwm/scripts/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/bspwm/scripts/monitor.sh -------------------------------------------------------------------------------- /config/cava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/cava/config -------------------------------------------------------------------------------- /config/color-scripts/alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/alpha -------------------------------------------------------------------------------- /config/color-scripts/arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/arch -------------------------------------------------------------------------------- /config/color-scripts/bars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/bars -------------------------------------------------------------------------------- /config/color-scripts/blocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/blocks -------------------------------------------------------------------------------- /config/color-scripts/blocks1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/blocks1 -------------------------------------------------------------------------------- /config/color-scripts/blocks2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/blocks2 -------------------------------------------------------------------------------- /config/color-scripts/bloks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/bloks -------------------------------------------------------------------------------- /config/color-scripts/colorbars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/colorbars -------------------------------------------------------------------------------- /config/color-scripts/colortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/colortest -------------------------------------------------------------------------------- /config/color-scripts/colortest-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/colortest-slim -------------------------------------------------------------------------------- /config/color-scripts/colorview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/colorview -------------------------------------------------------------------------------- /config/color-scripts/colorwheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/colorwheel -------------------------------------------------------------------------------- /config/color-scripts/crunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/crunch -------------------------------------------------------------------------------- /config/color-scripts/crunchbang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/crunchbang -------------------------------------------------------------------------------- /config/color-scripts/crunchbang-mini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/crunchbang-mini -------------------------------------------------------------------------------- /config/color-scripts/darthvader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/darthvader -------------------------------------------------------------------------------- /config/color-scripts/dna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/dna -------------------------------------------------------------------------------- /config/color-scripts/dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/dotx -------------------------------------------------------------------------------- /config/color-scripts/elfman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/elfman -------------------------------------------------------------------------------- /config/color-scripts/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/faces -------------------------------------------------------------------------------- /config/color-scripts/fade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/fade -------------------------------------------------------------------------------- /config/color-scripts/ghosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/ghosts -------------------------------------------------------------------------------- /config/color-scripts/guns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/guns -------------------------------------------------------------------------------- /config/color-scripts/hex-block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/hex-block -------------------------------------------------------------------------------- /config/color-scripts/illumina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/illumina -------------------------------------------------------------------------------- /config/color-scripts/jangofett: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/jangofett -------------------------------------------------------------------------------- /config/color-scripts/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/launch.sh -------------------------------------------------------------------------------- /config/color-scripts/monster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/monster -------------------------------------------------------------------------------- /config/color-scripts/mouseface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/mouseface -------------------------------------------------------------------------------- /config/color-scripts/mouseface2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/mouseface2 -------------------------------------------------------------------------------- /config/color-scripts/pacman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/pacman -------------------------------------------------------------------------------- /config/color-scripts/panes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/panes -------------------------------------------------------------------------------- /config/color-scripts/pinguco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/pinguco -------------------------------------------------------------------------------- /config/color-scripts/pukeskull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/pukeskull -------------------------------------------------------------------------------- /config/color-scripts/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/rails -------------------------------------------------------------------------------- /config/color-scripts/rally-x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/rally-x -------------------------------------------------------------------------------- /config/color-scripts/rupees: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/rupees -------------------------------------------------------------------------------- /config/color-scripts/space-invaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/space-invaders -------------------------------------------------------------------------------- /config/color-scripts/spectrum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/spectrum -------------------------------------------------------------------------------- /config/color-scripts/square: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/square -------------------------------------------------------------------------------- /config/color-scripts/tanks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/tanks -------------------------------------------------------------------------------- /config/color-scripts/thebat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/thebat -------------------------------------------------------------------------------- /config/color-scripts/thebat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/thebat2 -------------------------------------------------------------------------------- /config/color-scripts/tiefighter1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/tiefighter1 -------------------------------------------------------------------------------- /config/color-scripts/tiefighter1-no-invo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/tiefighter1-no-invo -------------------------------------------------------------------------------- /config/color-scripts/tiefighter1row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/tiefighter1row -------------------------------------------------------------------------------- /config/color-scripts/tiefighter2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/tiefighter2 -------------------------------------------------------------------------------- /config/color-scripts/unowns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/unowns.py -------------------------------------------------------------------------------- /config/color-scripts/zwaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/color-scripts/zwaves -------------------------------------------------------------------------------- /config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/dunst/dunstrc -------------------------------------------------------------------------------- /config/eww/assets/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/assets/avatar.jpg -------------------------------------------------------------------------------- /config/eww/assets/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/assets/fallback.png -------------------------------------------------------------------------------- /config/eww/assets/lockscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/assets/lockscreen.png -------------------------------------------------------------------------------- /config/eww/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/eww.scss -------------------------------------------------------------------------------- /config/eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/eww.yuck -------------------------------------------------------------------------------- /config/eww/scripts/echoSongArt: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "$HOME/.cache/eww/spotify/cover.png" -------------------------------------------------------------------------------- /config/eww/scripts/getCalendarMonth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getCalendarMonth -------------------------------------------------------------------------------- /config/eww/scripts/getLayout: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | layout-mgr.sh get 4 | -------------------------------------------------------------------------------- /config/eww/scripts/getNetwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getNetwork -------------------------------------------------------------------------------- /config/eww/scripts/getPlayerStatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getPlayerStatus -------------------------------------------------------------------------------- /config/eww/scripts/getSongArt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getSongArt -------------------------------------------------------------------------------- /config/eww/scripts/getSongArtist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getSongArtist -------------------------------------------------------------------------------- /config/eww/scripts/getSongTitle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getSongTitle -------------------------------------------------------------------------------- /config/eww/scripts/getUsedRam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getUsedRam -------------------------------------------------------------------------------- /config/eww/scripts/getVpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getVpn -------------------------------------------------------------------------------- /config/eww/scripts/getWeather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getWeather -------------------------------------------------------------------------------- /config/eww/scripts/getWorkspaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/getWorkspaces -------------------------------------------------------------------------------- /config/eww/scripts/lockScreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/lockScreen -------------------------------------------------------------------------------- /config/eww/scripts/openCalendar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/openCalendar.sh -------------------------------------------------------------------------------- /config/eww/scripts/openSysTray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/openSysTray.sh -------------------------------------------------------------------------------- /config/eww/scripts/toggle-vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/scripts/toggle-vpn.sh -------------------------------------------------------------------------------- /config/eww/src/scss/_config.scss: -------------------------------------------------------------------------------- 1 | .line { 2 | margin-left: -1px; 3 | } -------------------------------------------------------------------------------- /config/eww/src/scss/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/_overrides.scss -------------------------------------------------------------------------------- /config/eww/src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/_variables.scss -------------------------------------------------------------------------------- /config/eww/src/scss/_variables.scss.night: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/_variables.scss.night -------------------------------------------------------------------------------- /config/eww/src/scss/bar/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/index.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_browser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_browser.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_calendar.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_chat.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_launcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_launcher.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_powermenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_powermenu.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_rofi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_rofi.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_systray.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_systray.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_terminal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_terminal.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_time.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_time.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_vpn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_vpn.scss -------------------------------------------------------------------------------- /config/eww/src/scss/bar/widgets/_workspaces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/bar/widgets/_workspaces.scss -------------------------------------------------------------------------------- /config/eww/src/scss/lock/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/lock/index.scss -------------------------------------------------------------------------------- /config/eww/src/scss/widgets/_layouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/scss/widgets/_layouts.scss -------------------------------------------------------------------------------- /config/eww/src/yuck/_variables.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/yuck/_variables.yuck -------------------------------------------------------------------------------- /config/eww/src/yuck/bar/_definitions.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/yuck/bar/_definitions.yuck -------------------------------------------------------------------------------- /config/eww/src/yuck/bar/_widgets.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/yuck/bar/_widgets.yuck -------------------------------------------------------------------------------- /config/eww/src/yuck/lock/_definitions.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/yuck/lock/_definitions.yuck -------------------------------------------------------------------------------- /config/eww/src/yuck/lock/_widgets.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/yuck/lock/_widgets.yuck -------------------------------------------------------------------------------- /config/eww/src/yuck/widgets/_definitions.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/yuck/widgets/_definitions.yuck -------------------------------------------------------------------------------- /config/eww/src/yuck/widgets/_widgets.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/eww/src/yuck/widgets/_widgets.yuck -------------------------------------------------------------------------------- /config/gtk-3.0/bookmarks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/picom/picom.conf -------------------------------------------------------------------------------- /config/ranger/.gitignore: -------------------------------------------------------------------------------- 1 | plugins 2 | -------------------------------------------------------------------------------- /config/ranger/install-plugs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/ranger/install-plugs.sh -------------------------------------------------------------------------------- /config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/ranger/rc.conf -------------------------------------------------------------------------------- /config/rofi/appmnu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/rofi/appmnu.rasi -------------------------------------------------------------------------------- /config/rofi/colors/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/rofi/colors/colors.rasi -------------------------------------------------------------------------------- /config/rofi/colors/colors.rasi.night: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/rofi/colors/colors.rasi.night -------------------------------------------------------------------------------- /config/rofi/config.rasi: -------------------------------------------------------------------------------- 1 | @theme "appmnu" 2 | -------------------------------------------------------------------------------- /config/st/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | st 3 | *.o 4 | -------------------------------------------------------------------------------- /config/st/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/LICENSE -------------------------------------------------------------------------------- /config/st/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/Makefile -------------------------------------------------------------------------------- /config/st/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/README.md -------------------------------------------------------------------------------- /config/st/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/arg.h -------------------------------------------------------------------------------- /config/st/boxdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/boxdraw.c -------------------------------------------------------------------------------- /config/st/boxdraw_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/boxdraw_data.h -------------------------------------------------------------------------------- /config/st/config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/config.def.h -------------------------------------------------------------------------------- /config/st/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/config.mk -------------------------------------------------------------------------------- /config/st/hb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/hb.c -------------------------------------------------------------------------------- /config/st/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/hb.h -------------------------------------------------------------------------------- /config/st/normalMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/normalMode.c -------------------------------------------------------------------------------- /config/st/normalMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/normalMode.h -------------------------------------------------------------------------------- /config/st/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/shell.nix -------------------------------------------------------------------------------- /config/st/st-copyout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/st-copyout -------------------------------------------------------------------------------- /config/st/st-urlhandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/st-urlhandler -------------------------------------------------------------------------------- /config/st/st.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/st.1 -------------------------------------------------------------------------------- /config/st/st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/st.c -------------------------------------------------------------------------------- /config/st/st.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/st.desktop -------------------------------------------------------------------------------- /config/st/st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/st.h -------------------------------------------------------------------------------- /config/st/st.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/st.info -------------------------------------------------------------------------------- /config/st/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/utils.h -------------------------------------------------------------------------------- /config/st/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/win.h -------------------------------------------------------------------------------- /config/st/world: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /config/st/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/x.c -------------------------------------------------------------------------------- /config/st/xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/st/xresources -------------------------------------------------------------------------------- /config/sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /config/wallpapers/cats/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/cats/1.png -------------------------------------------------------------------------------- /config/wallpapers/cats/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/cats/2.png -------------------------------------------------------------------------------- /config/wallpapers/colors/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/colors/black.png -------------------------------------------------------------------------------- /config/wallpapers/colors/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/colors/gray.png -------------------------------------------------------------------------------- /config/wallpapers/colors/teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/colors/teal.png -------------------------------------------------------------------------------- /config/wallpapers/dark/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/dark/1.png -------------------------------------------------------------------------------- /config/wallpapers/everblush/0day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/everblush/0day.png -------------------------------------------------------------------------------- /config/wallpapers/everblush/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/everblush/tile.png -------------------------------------------------------------------------------- /config/wallpapers/misc/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/misc/boy.png -------------------------------------------------------------------------------- /config/wallpapers/misc/iceberg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/misc/iceberg.jpg -------------------------------------------------------------------------------- /config/wallpapers/misc/key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/misc/key.jpg -------------------------------------------------------------------------------- /config/wallpapers/misc/monoWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/misc/monoWave.png -------------------------------------------------------------------------------- /config/wallpapers/misc/nature-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/misc/nature-13.jpg -------------------------------------------------------------------------------- /config/wallpapers/misc/night-ice-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/misc/night-ice-2.jpg -------------------------------------------------------------------------------- /config/wallpapers/misc/night-ice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/misc/night-ice.jpg -------------------------------------------------------------------------------- /config/wallpapers/misc/wal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/misc/wal.png -------------------------------------------------------------------------------- /config/wallpapers/mountains/blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/blue.jpg -------------------------------------------------------------------------------- /config/wallpapers/mountains/cliffsides.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/cliffsides.jpg -------------------------------------------------------------------------------- /config/wallpapers/mountains/dark-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/dark-blue.jpg -------------------------------------------------------------------------------- /config/wallpapers/mountains/dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/dark.jpg -------------------------------------------------------------------------------- /config/wallpapers/mountains/gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/gray.jpg -------------------------------------------------------------------------------- /config/wallpapers/mountains/gruvbox_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/gruvbox_white.jpg -------------------------------------------------------------------------------- /config/wallpapers/mountains/light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/light.jpg -------------------------------------------------------------------------------- /config/wallpapers/mountains/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/night.png -------------------------------------------------------------------------------- /config/wallpapers/mountains/nordic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/nordic.jpg -------------------------------------------------------------------------------- /config/wallpapers/mountains/white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/mountains/white.jpg -------------------------------------------------------------------------------- /config/wallpapers/neon/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/neon/city.png -------------------------------------------------------------------------------- /config/wallpapers/night/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/night/bg.png -------------------------------------------------------------------------------- /config/wallpapers/night/comets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/night/comets.png -------------------------------------------------------------------------------- /config/wallpapers/night/night-mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/night/night-mountains.jpg -------------------------------------------------------------------------------- /config/wallpapers/night/night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/night/night.jpg -------------------------------------------------------------------------------- /config/wallpapers/night/night2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/night/night2.png -------------------------------------------------------------------------------- /config/wallpapers/pixelart/anime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/anime.png -------------------------------------------------------------------------------- /config/wallpapers/pixelart/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/blue.png -------------------------------------------------------------------------------- /config/wallpapers/pixelart/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/city.png -------------------------------------------------------------------------------- /config/wallpapers/pixelart/constelation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/constelation.jpg -------------------------------------------------------------------------------- /config/wallpapers/pixelart/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/dark.png -------------------------------------------------------------------------------- /config/wallpapers/pixelart/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/light.png -------------------------------------------------------------------------------- /config/wallpapers/pixelart/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/mountains.jpg -------------------------------------------------------------------------------- /config/wallpapers/pixelart/night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/night.jpg -------------------------------------------------------------------------------- /config/wallpapers/pixelart/pokemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/pixelart/pokemon.jpg -------------------------------------------------------------------------------- /config/wallpapers/sky/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/sky/1.jpg -------------------------------------------------------------------------------- /config/wallpapers/sunsets/purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/config/wallpapers/sunsets/purple.jpg -------------------------------------------------------------------------------- /home/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/home/.Xresources -------------------------------------------------------------------------------- /home/.Xresources.night: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/home/.Xresources.night -------------------------------------------------------------------------------- /home/.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/home/.gtkrc-2.0 -------------------------------------------------------------------------------- /misc/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaTechnolog/eww-dotfiles/HEAD/misc/preview.png --------------------------------------------------------------------------------