├── .config ├── dunst │ └── dunstrc ├── foot │ └── foot.ini ├── hypr │ ├── hypridle.conf │ ├── hyprland.conf │ ├── hyprlock.conf │ └── hyprpaper.conf ├── imv │ └── config ├── kitty │ └── kitty.conf ├── lf │ ├── lfrc │ └── previewer ├── mimeapps.list ├── mpv │ └── mpv.conf ├── newsboat │ ├── config │ └── urls ├── nvim │ └── init.lua ├── paru │ └── paru.conf ├── swaylock │ └── config ├── systemd │ └── user │ │ ├── battery-alert.service │ │ └── battery-alert.timer ├── tofi │ ├── config │ └── powermenu-config ├── waybar │ ├── config │ └── style.css └── zsh │ ├── .p10k.zsh │ ├── .zaliases │ └── .zshrc ├── .github ├── README.md └── screenshots │ └── desktop.png ├── .local ├── bin │ ├── backlight │ ├── battery-alert │ ├── battery-charging │ ├── lockscreen │ ├── pacman-updates │ ├── powermenu │ ├── previewer │ ├── setwallpaper │ ├── tofi-clip │ ├── tofi-emoji │ └── volume └── share │ ├── icons │ └── dunst │ │ ├── battery-alert.svg │ │ ├── battery-charging.svg │ │ ├── battery-discharging.svg │ │ ├── battery.svg │ │ ├── brightness.svg │ │ ├── volume-high.svg │ │ ├── volume-low.svg │ │ ├── volume-medium.svg │ │ └── volume-mute.svg │ └── wall.png └── .zshenv /.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/dunst/dunstrc -------------------------------------------------------------------------------- /.config/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/foot/foot.ini -------------------------------------------------------------------------------- /.config/hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/hypr/hypridle.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /.config/imv/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/imv/config -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /.config/lf/lfrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/lf/lfrc -------------------------------------------------------------------------------- /.config/lf/previewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/lf/previewer -------------------------------------------------------------------------------- /.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/mimeapps.list -------------------------------------------------------------------------------- /.config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/mpv/mpv.conf -------------------------------------------------------------------------------- /.config/newsboat/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/newsboat/config -------------------------------------------------------------------------------- /.config/newsboat/urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/newsboat/urls -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/paru/paru.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/paru/paru.conf -------------------------------------------------------------------------------- /.config/swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/swaylock/config -------------------------------------------------------------------------------- /.config/systemd/user/battery-alert.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/systemd/user/battery-alert.service -------------------------------------------------------------------------------- /.config/systemd/user/battery-alert.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/systemd/user/battery-alert.timer -------------------------------------------------------------------------------- /.config/tofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/tofi/config -------------------------------------------------------------------------------- /.config/tofi/powermenu-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/tofi/powermenu-config -------------------------------------------------------------------------------- /.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/waybar/config -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.config/zsh/.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/zsh/.p10k.zsh -------------------------------------------------------------------------------- /.config/zsh/.zaliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/zsh/.zaliases -------------------------------------------------------------------------------- /.config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.config/zsh/.zshrc -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/screenshots/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.github/screenshots/desktop.png -------------------------------------------------------------------------------- /.local/bin/backlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/backlight -------------------------------------------------------------------------------- /.local/bin/battery-alert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/battery-alert -------------------------------------------------------------------------------- /.local/bin/battery-charging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/battery-charging -------------------------------------------------------------------------------- /.local/bin/lockscreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/lockscreen -------------------------------------------------------------------------------- /.local/bin/pacman-updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/pacman-updates -------------------------------------------------------------------------------- /.local/bin/powermenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/powermenu -------------------------------------------------------------------------------- /.local/bin/previewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/previewer -------------------------------------------------------------------------------- /.local/bin/setwallpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/setwallpaper -------------------------------------------------------------------------------- /.local/bin/tofi-clip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/tofi-clip -------------------------------------------------------------------------------- /.local/bin/tofi-emoji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/tofi-emoji -------------------------------------------------------------------------------- /.local/bin/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/bin/volume -------------------------------------------------------------------------------- /.local/share/icons/dunst/battery-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/battery-alert.svg -------------------------------------------------------------------------------- /.local/share/icons/dunst/battery-charging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/battery-charging.svg -------------------------------------------------------------------------------- /.local/share/icons/dunst/battery-discharging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/battery-discharging.svg -------------------------------------------------------------------------------- /.local/share/icons/dunst/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/battery.svg -------------------------------------------------------------------------------- /.local/share/icons/dunst/brightness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/brightness.svg -------------------------------------------------------------------------------- /.local/share/icons/dunst/volume-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/volume-high.svg -------------------------------------------------------------------------------- /.local/share/icons/dunst/volume-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/volume-low.svg -------------------------------------------------------------------------------- /.local/share/icons/dunst/volume-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/volume-medium.svg -------------------------------------------------------------------------------- /.local/share/icons/dunst/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/icons/dunst/volume-mute.svg -------------------------------------------------------------------------------- /.local/share/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.local/share/wall.png -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmurphyxyz/dotfiles/HEAD/.zshenv --------------------------------------------------------------------------------