├── .aerospace.toml ├── .latexmkrc ├── .tmux.conf ├── .yabairc ├── .zshrc ├── INSTALLATION_GUIDE.md ├── README.md ├── alacritty.toml ├── bordersrc ├── firefox ├── chrome │ ├── userChrome.css │ └── userContent.css ├── local-settings.js ├── mozilla.cfg ├── startpage │ ├── icons │ │ ├── art.svg │ │ ├── code.svg │ │ ├── docs.svg │ │ ├── duck.svg │ │ ├── entertainment.svg │ │ ├── fox.svg │ │ ├── google.svg │ │ ├── music.svg │ │ └── search.svg │ ├── index.html │ ├── scripts │ │ ├── load.js │ │ └── search.js │ └── style.css └── user.js ├── flake.lock ├── flake.nix ├── hypr ├── hypridle.conf ├── hyprland.conf └── hyprlock.conf ├── imgs └── desktop.png ├── karabiner ├── assets │ └── complex_modifications │ │ ├── .DS_Store │ │ └── hyper_key.json └── karabiner.json ├── mako.cfg ├── nix ├── brew.nix ├── home-darwin.nix ├── home-fedora.nix ├── home-shared.nix └── nix-darwin.nix ├── nvim ├── ftplugin │ ├── java.lua │ └── markdown.vim ├── init.lua ├── lazy-lock.json ├── lua │ ├── config │ │ ├── lazy.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ ├── runner.lua │ │ ├── status.vim.backup │ │ └── utils.lua │ └── plugins │ │ ├── bar.lua │ │ ├── cmp.lua │ │ ├── colors.lua │ │ ├── dap.lua │ │ ├── lsp.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ ├── utils.lua │ │ ├── vimtex.lua │ │ └── zen.lua ├── luasnippets │ └── tex.lua └── stylua.toml ├── rofi.rasi ├── scripts ├── generate_set_latex ├── journal ├── music-player ├── spotify-mini │ ├── .gitignore │ ├── README.md │ ├── bar_sptmini.sh │ ├── gen-credentials.sh │ ├── launch.sh │ ├── launch_kitty.sh │ └── sptmini.sh ├── system │ └── volumelightctl ├── wallpaper └── weather.py ├── sketchybar ├── colors.sh ├── icons.sh ├── items │ ├── apple.sh │ ├── battery.sh │ ├── calendar.sh │ ├── cpu_temp.sh │ ├── mail.sh │ ├── messages.sh │ ├── spaces.sh │ └── spotify.sh ├── plugins │ ├── battery.sh │ ├── cpu_temp.sh │ ├── mail.sh │ ├── messages.sh │ ├── spotify.sh │ └── time.sh └── sketchybarrc ├── skhdrc ├── sway.cfg ├── wallpapers ├── blue_sky.jpeg ├── blue_sunset.jpg ├── cat_mug.png ├── celeste.png ├── code_human.png ├── code_human_bg.png ├── ethereal_forest_river.jpg ├── ethereal_lake.png ├── flat_solar_system.jpg ├── flat_space.jpg ├── flat_stars.png ├── foggy_lake.png ├── forest_valley.jpg ├── purple_fuji.jpg ├── purple_mountain.png ├── purple_sea.jpg ├── purple_train.png ├── purple_train_station.jpg ├── sunset_cityscape.png ├── sunset_ethereal.png ├── sunset_soft.jpeg ├── sunset_traveler.png ├── valley_drive.jpg └── wave.png ├── waybar ├── config ├── music.sh ├── style.css └── togglednd.sh └── wezterm.lua /.aerospace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/.aerospace.toml -------------------------------------------------------------------------------- /.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/.latexmkrc -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.yabairc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/.yabairc -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /INSTALLATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/INSTALLATION_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/alacritty.toml -------------------------------------------------------------------------------- /bordersrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/bordersrc -------------------------------------------------------------------------------- /firefox/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/chrome/userChrome.css -------------------------------------------------------------------------------- /firefox/chrome/userContent.css: -------------------------------------------------------------------------------- 1 | :root{ scrollbar-width: none } 2 | -------------------------------------------------------------------------------- /firefox/local-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/local-settings.js -------------------------------------------------------------------------------- /firefox/mozilla.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/mozilla.cfg -------------------------------------------------------------------------------- /firefox/startpage/icons/art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/art.svg -------------------------------------------------------------------------------- /firefox/startpage/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/code.svg -------------------------------------------------------------------------------- /firefox/startpage/icons/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/docs.svg -------------------------------------------------------------------------------- /firefox/startpage/icons/duck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/duck.svg -------------------------------------------------------------------------------- /firefox/startpage/icons/entertainment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/entertainment.svg -------------------------------------------------------------------------------- /firefox/startpage/icons/fox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/fox.svg -------------------------------------------------------------------------------- /firefox/startpage/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/google.svg -------------------------------------------------------------------------------- /firefox/startpage/icons/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/music.svg -------------------------------------------------------------------------------- /firefox/startpage/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/icons/search.svg -------------------------------------------------------------------------------- /firefox/startpage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/index.html -------------------------------------------------------------------------------- /firefox/startpage/scripts/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/scripts/load.js -------------------------------------------------------------------------------- /firefox/startpage/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/scripts/search.js -------------------------------------------------------------------------------- /firefox/startpage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/startpage/style.css -------------------------------------------------------------------------------- /firefox/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/firefox/user.js -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/flake.nix -------------------------------------------------------------------------------- /hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/hypr/hypridle.conf -------------------------------------------------------------------------------- /hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/hypr/hyprland.conf -------------------------------------------------------------------------------- /hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/hypr/hyprlock.conf -------------------------------------------------------------------------------- /imgs/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/imgs/desktop.png -------------------------------------------------------------------------------- /karabiner/assets/complex_modifications/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/karabiner/assets/complex_modifications/.DS_Store -------------------------------------------------------------------------------- /karabiner/assets/complex_modifications/hyper_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/karabiner/assets/complex_modifications/hyper_key.json -------------------------------------------------------------------------------- /karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/karabiner/karabiner.json -------------------------------------------------------------------------------- /mako.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/mako.cfg -------------------------------------------------------------------------------- /nix/brew.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nix/brew.nix -------------------------------------------------------------------------------- /nix/home-darwin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nix/home-darwin.nix -------------------------------------------------------------------------------- /nix/home-fedora.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nix/home-fedora.nix -------------------------------------------------------------------------------- /nix/home-shared.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nix/home-shared.nix -------------------------------------------------------------------------------- /nix/nix-darwin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nix/nix-darwin.nix -------------------------------------------------------------------------------- /nvim/ftplugin/java.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/ftplugin/java.lua -------------------------------------------------------------------------------- /nvim/ftplugin/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/ftplugin/markdown.vim -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lazy-lock.json -------------------------------------------------------------------------------- /nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /nvim/lua/config/mappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/config/mappings.lua -------------------------------------------------------------------------------- /nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /nvim/lua/config/runner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/config/runner.lua -------------------------------------------------------------------------------- /nvim/lua/config/status.vim.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/config/status.vim.backup -------------------------------------------------------------------------------- /nvim/lua/config/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/config/utils.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/bar.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/cmp.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/colors.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/dap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/dap.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/lsp.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/telescope.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/utils.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/vimtex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/vimtex.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/zen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/lua/plugins/zen.lua -------------------------------------------------------------------------------- /nvim/luasnippets/tex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/luasnippets/tex.lua -------------------------------------------------------------------------------- /nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/nvim/stylua.toml -------------------------------------------------------------------------------- /rofi.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/rofi.rasi -------------------------------------------------------------------------------- /scripts/generate_set_latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/generate_set_latex -------------------------------------------------------------------------------- /scripts/journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/journal -------------------------------------------------------------------------------- /scripts/music-player: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/music-player -------------------------------------------------------------------------------- /scripts/spotify-mini/.gitignore: -------------------------------------------------------------------------------- 1 | credentials.cfg 2 | -------------------------------------------------------------------------------- /scripts/spotify-mini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/spotify-mini/README.md -------------------------------------------------------------------------------- /scripts/spotify-mini/bar_sptmini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/spotify-mini/bar_sptmini.sh -------------------------------------------------------------------------------- /scripts/spotify-mini/gen-credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/spotify-mini/gen-credentials.sh -------------------------------------------------------------------------------- /scripts/spotify-mini/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/spotify-mini/launch.sh -------------------------------------------------------------------------------- /scripts/spotify-mini/launch_kitty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/spotify-mini/launch_kitty.sh -------------------------------------------------------------------------------- /scripts/spotify-mini/sptmini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/spotify-mini/sptmini.sh -------------------------------------------------------------------------------- /scripts/system/volumelightctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/system/volumelightctl -------------------------------------------------------------------------------- /scripts/wallpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/wallpaper -------------------------------------------------------------------------------- /scripts/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/scripts/weather.py -------------------------------------------------------------------------------- /sketchybar/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/colors.sh -------------------------------------------------------------------------------- /sketchybar/icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/icons.sh -------------------------------------------------------------------------------- /sketchybar/items/apple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/items/apple.sh -------------------------------------------------------------------------------- /sketchybar/items/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/items/battery.sh -------------------------------------------------------------------------------- /sketchybar/items/calendar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/items/calendar.sh -------------------------------------------------------------------------------- /sketchybar/items/cpu_temp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/items/cpu_temp.sh -------------------------------------------------------------------------------- /sketchybar/items/mail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/items/mail.sh -------------------------------------------------------------------------------- /sketchybar/items/messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/items/messages.sh -------------------------------------------------------------------------------- /sketchybar/items/spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/items/spaces.sh -------------------------------------------------------------------------------- /sketchybar/items/spotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/items/spotify.sh -------------------------------------------------------------------------------- /sketchybar/plugins/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/plugins/battery.sh -------------------------------------------------------------------------------- /sketchybar/plugins/cpu_temp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/plugins/cpu_temp.sh -------------------------------------------------------------------------------- /sketchybar/plugins/mail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/plugins/mail.sh -------------------------------------------------------------------------------- /sketchybar/plugins/messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/plugins/messages.sh -------------------------------------------------------------------------------- /sketchybar/plugins/spotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/plugins/spotify.sh -------------------------------------------------------------------------------- /sketchybar/plugins/time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/plugins/time.sh -------------------------------------------------------------------------------- /sketchybar/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sketchybar/sketchybarrc -------------------------------------------------------------------------------- /skhdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/skhdrc -------------------------------------------------------------------------------- /sway.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/sway.cfg -------------------------------------------------------------------------------- /wallpapers/blue_sky.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/blue_sky.jpeg -------------------------------------------------------------------------------- /wallpapers/blue_sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/blue_sunset.jpg -------------------------------------------------------------------------------- /wallpapers/cat_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/cat_mug.png -------------------------------------------------------------------------------- /wallpapers/celeste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/celeste.png -------------------------------------------------------------------------------- /wallpapers/code_human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/code_human.png -------------------------------------------------------------------------------- /wallpapers/code_human_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/code_human_bg.png -------------------------------------------------------------------------------- /wallpapers/ethereal_forest_river.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/ethereal_forest_river.jpg -------------------------------------------------------------------------------- /wallpapers/ethereal_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/ethereal_lake.png -------------------------------------------------------------------------------- /wallpapers/flat_solar_system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/flat_solar_system.jpg -------------------------------------------------------------------------------- /wallpapers/flat_space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/flat_space.jpg -------------------------------------------------------------------------------- /wallpapers/flat_stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/flat_stars.png -------------------------------------------------------------------------------- /wallpapers/foggy_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/foggy_lake.png -------------------------------------------------------------------------------- /wallpapers/forest_valley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/forest_valley.jpg -------------------------------------------------------------------------------- /wallpapers/purple_fuji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/purple_fuji.jpg -------------------------------------------------------------------------------- /wallpapers/purple_mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/purple_mountain.png -------------------------------------------------------------------------------- /wallpapers/purple_sea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/purple_sea.jpg -------------------------------------------------------------------------------- /wallpapers/purple_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/purple_train.png -------------------------------------------------------------------------------- /wallpapers/purple_train_station.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/purple_train_station.jpg -------------------------------------------------------------------------------- /wallpapers/sunset_cityscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/sunset_cityscape.png -------------------------------------------------------------------------------- /wallpapers/sunset_ethereal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/sunset_ethereal.png -------------------------------------------------------------------------------- /wallpapers/sunset_soft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/sunset_soft.jpeg -------------------------------------------------------------------------------- /wallpapers/sunset_traveler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/sunset_traveler.png -------------------------------------------------------------------------------- /wallpapers/valley_drive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/valley_drive.jpg -------------------------------------------------------------------------------- /wallpapers/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wallpapers/wave.png -------------------------------------------------------------------------------- /waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/waybar/config -------------------------------------------------------------------------------- /waybar/music.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/waybar/music.sh -------------------------------------------------------------------------------- /waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/waybar/style.css -------------------------------------------------------------------------------- /waybar/togglednd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/waybar/togglednd.sh -------------------------------------------------------------------------------- /wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlovesmath/dotfiles/HEAD/wezterm.lua --------------------------------------------------------------------------------