├── .gitignore ├── README.md ├── bspwm ├── bspwmrc └── rules ├── dunst ├── dunstrc └── icons │ ├── notification-audio-volume-high.svg │ ├── notification-audio-volume-low.svg │ ├── notification-audio-volume-medium.svg │ └── notification-audio-volume-muted.svg ├── eww ├── colors │ ├── everforest.scss │ └── rose_pine.scss ├── eww.scss ├── eww.yuck ├── images │ ├── music.png │ └── profile.jpg ├── scripts │ ├── mem-ad │ ├── memory │ ├── music_info │ ├── toggle_tray │ ├── wifi │ └── workspaces ├── scss │ ├── bar.scss │ ├── player.scss │ └── powermenu.scss ├── toggle_bar └── yuck │ ├── bar.yuck │ ├── player.yuck │ └── powermenu.yuck ├── feh └── buttons ├── fish ├── conf.d │ ├── abbr.fish │ └── alias.fish ├── config.fish ├── functions │ ├── ...fish │ ├── extract.fish │ ├── fco.fish │ ├── fcoc.fish │ ├── fish_user_key_bindings.fish │ ├── gr.fish │ └── rm.fish └── themes │ ├── Catppuccin Frappe.theme │ ├── Catppuccin Latte.theme │ ├── Catppuccin Macchiato.theme │ ├── Catppuccin Mocha.theme │ ├── Duskfox.theme │ ├── Everforest.theme │ ├── Gruvbox.theme │ ├── Nightfox.theme │ ├── Nordic.theme │ ├── Rosé Pine Moon.theme │ ├── Tokyonight Moon.theme │ └── Tokyonight Storm.theme ├── fonts ├── Feather.ttf ├── Font Awesome 6 Pro-Solid-900.otf ├── MaterialDesignIconsDesktop.ttf └── MesloLGS_NF_Regular.ttf ├── gitconfig └── gitconfig ├── gromoit-mpx └── gromit-mpx.cfg ├── imv └── config ├── keymapper └── keymapper.conf ├── kitty └── kitty.conf ├── mini-vimrc └── vimrc ├── mpd └── mpd.conf ├── mpv ├── config ├── input.conf ├── script-opts │ ├── playlistmanager.conf │ └── thumbfast.conf └── scripts │ ├── SmartCopyPaste.lua │ ├── modern.lua │ ├── playlistmanager.lua │ └── thumbfast.lua ├── ncmpcpp ├── bindings └── config ├── neofetch └── config.conf ├── picom └── picom.conf ├── polybar ├── colors.ini ├── config.ini ├── launch.sh └── modules.ini ├── rofi ├── config.rasi ├── mpd │ ├── mpd │ └── style.rasi ├── powermenu │ ├── config.rasi │ ├── confirm.rasi │ └── powermenu └── theme.rasi ├── scripts ├── mpd-notify ├── showkey ├── sshot ├── tmux-sessionizer ├── tocenter ├── unhidewindow └── volume_dunst ├── stalonetray └── stalonetrayrc ├── starship └── starship.toml ├── stylua.toml ├── sxhkd └── sxhkdrc ├── systemd └── mpd-notify.service ├── termux ├── colors.properties ├── font.ttf ├── shell └── termux.properties ├── tmux ├── README.md ├── tmux-line.conf └── tmux.conf ├── wezterm ├── colors │ ├── Duskfox.toml │ ├── Everforest.toml │ ├── Nightfox.toml │ ├── Nordic.toml │ ├── Rosé Pine Moon.toml │ ├── Tokyonight Moon.toml │ └── Tokyonight Storm.toml └── wezterm.lua ├── xdm.yaml ├── xinitrc ├── yt-dlp └── yt-dlp.conf └── zsh ├── .zshrc └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/bspwm/bspwmrc -------------------------------------------------------------------------------- /bspwm/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/bspwm/rules -------------------------------------------------------------------------------- /dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/dunst/dunstrc -------------------------------------------------------------------------------- /dunst/icons/notification-audio-volume-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/dunst/icons/notification-audio-volume-high.svg -------------------------------------------------------------------------------- /dunst/icons/notification-audio-volume-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/dunst/icons/notification-audio-volume-low.svg -------------------------------------------------------------------------------- /dunst/icons/notification-audio-volume-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/dunst/icons/notification-audio-volume-medium.svg -------------------------------------------------------------------------------- /dunst/icons/notification-audio-volume-muted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/dunst/icons/notification-audio-volume-muted.svg -------------------------------------------------------------------------------- /eww/colors/everforest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/colors/everforest.scss -------------------------------------------------------------------------------- /eww/colors/rose_pine.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/colors/rose_pine.scss -------------------------------------------------------------------------------- /eww/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/eww.scss -------------------------------------------------------------------------------- /eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/eww.yuck -------------------------------------------------------------------------------- /eww/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/images/music.png -------------------------------------------------------------------------------- /eww/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/images/profile.jpg -------------------------------------------------------------------------------- /eww/scripts/mem-ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scripts/mem-ad -------------------------------------------------------------------------------- /eww/scripts/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scripts/memory -------------------------------------------------------------------------------- /eww/scripts/music_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scripts/music_info -------------------------------------------------------------------------------- /eww/scripts/toggle_tray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scripts/toggle_tray -------------------------------------------------------------------------------- /eww/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scripts/wifi -------------------------------------------------------------------------------- /eww/scripts/workspaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scripts/workspaces -------------------------------------------------------------------------------- /eww/scss/bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scss/bar.scss -------------------------------------------------------------------------------- /eww/scss/player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scss/player.scss -------------------------------------------------------------------------------- /eww/scss/powermenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/scss/powermenu.scss -------------------------------------------------------------------------------- /eww/toggle_bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/toggle_bar -------------------------------------------------------------------------------- /eww/yuck/bar.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/yuck/bar.yuck -------------------------------------------------------------------------------- /eww/yuck/player.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/yuck/player.yuck -------------------------------------------------------------------------------- /eww/yuck/powermenu.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/eww/yuck/powermenu.yuck -------------------------------------------------------------------------------- /feh/buttons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/feh/buttons -------------------------------------------------------------------------------- /fish/conf.d/abbr.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/conf.d/abbr.fish -------------------------------------------------------------------------------- /fish/conf.d/alias.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/conf.d/alias.fish -------------------------------------------------------------------------------- /fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/config.fish -------------------------------------------------------------------------------- /fish/functions/...fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/functions/...fish -------------------------------------------------------------------------------- /fish/functions/extract.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/functions/extract.fish -------------------------------------------------------------------------------- /fish/functions/fco.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/functions/fco.fish -------------------------------------------------------------------------------- /fish/functions/fcoc.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/functions/fcoc.fish -------------------------------------------------------------------------------- /fish/functions/fish_user_key_bindings.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/functions/fish_user_key_bindings.fish -------------------------------------------------------------------------------- /fish/functions/gr.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/functions/gr.fish -------------------------------------------------------------------------------- /fish/functions/rm.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/functions/rm.fish -------------------------------------------------------------------------------- /fish/themes/Catppuccin Frappe.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Catppuccin Frappe.theme -------------------------------------------------------------------------------- /fish/themes/Catppuccin Latte.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Catppuccin Latte.theme -------------------------------------------------------------------------------- /fish/themes/Catppuccin Macchiato.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Catppuccin Macchiato.theme -------------------------------------------------------------------------------- /fish/themes/Catppuccin Mocha.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Catppuccin Mocha.theme -------------------------------------------------------------------------------- /fish/themes/Duskfox.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Duskfox.theme -------------------------------------------------------------------------------- /fish/themes/Everforest.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Everforest.theme -------------------------------------------------------------------------------- /fish/themes/Gruvbox.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Gruvbox.theme -------------------------------------------------------------------------------- /fish/themes/Nightfox.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Nightfox.theme -------------------------------------------------------------------------------- /fish/themes/Nordic.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Nordic.theme -------------------------------------------------------------------------------- /fish/themes/Rosé Pine Moon.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Rosé Pine Moon.theme -------------------------------------------------------------------------------- /fish/themes/Tokyonight Moon.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Tokyonight Moon.theme -------------------------------------------------------------------------------- /fish/themes/Tokyonight Storm.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fish/themes/Tokyonight Storm.theme -------------------------------------------------------------------------------- /fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fonts/Feather.ttf -------------------------------------------------------------------------------- /fonts/Font Awesome 6 Pro-Solid-900.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fonts/Font Awesome 6 Pro-Solid-900.otf -------------------------------------------------------------------------------- /fonts/MaterialDesignIconsDesktop.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fonts/MaterialDesignIconsDesktop.ttf -------------------------------------------------------------------------------- /fonts/MesloLGS_NF_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/fonts/MesloLGS_NF_Regular.ttf -------------------------------------------------------------------------------- /gitconfig/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/gitconfig/gitconfig -------------------------------------------------------------------------------- /gromoit-mpx/gromit-mpx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/gromoit-mpx/gromit-mpx.cfg -------------------------------------------------------------------------------- /imv/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/imv/config -------------------------------------------------------------------------------- /keymapper/keymapper.conf: -------------------------------------------------------------------------------- 1 | [default] 2 | CapsLock >> Control 3 | -------------------------------------------------------------------------------- /kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/kitty/kitty.conf -------------------------------------------------------------------------------- /mini-vimrc/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mini-vimrc/vimrc -------------------------------------------------------------------------------- /mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpd/mpd.conf -------------------------------------------------------------------------------- /mpv/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpv/config -------------------------------------------------------------------------------- /mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpv/input.conf -------------------------------------------------------------------------------- /mpv/script-opts/playlistmanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpv/script-opts/playlistmanager.conf -------------------------------------------------------------------------------- /mpv/script-opts/thumbfast.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpv/script-opts/thumbfast.conf -------------------------------------------------------------------------------- /mpv/scripts/SmartCopyPaste.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpv/scripts/SmartCopyPaste.lua -------------------------------------------------------------------------------- /mpv/scripts/modern.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpv/scripts/modern.lua -------------------------------------------------------------------------------- /mpv/scripts/playlistmanager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpv/scripts/playlistmanager.lua -------------------------------------------------------------------------------- /mpv/scripts/thumbfast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/mpv/scripts/thumbfast.lua -------------------------------------------------------------------------------- /ncmpcpp/bindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/ncmpcpp/bindings -------------------------------------------------------------------------------- /ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/ncmpcpp/config -------------------------------------------------------------------------------- /neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/neofetch/config.conf -------------------------------------------------------------------------------- /picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/picom/picom.conf -------------------------------------------------------------------------------- /polybar/colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/polybar/colors.ini -------------------------------------------------------------------------------- /polybar/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/polybar/config.ini -------------------------------------------------------------------------------- /polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/polybar/launch.sh -------------------------------------------------------------------------------- /polybar/modules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/polybar/modules.ini -------------------------------------------------------------------------------- /rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/rofi/config.rasi -------------------------------------------------------------------------------- /rofi/mpd/mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/rofi/mpd/mpd -------------------------------------------------------------------------------- /rofi/mpd/style.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/rofi/mpd/style.rasi -------------------------------------------------------------------------------- /rofi/powermenu/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/rofi/powermenu/config.rasi -------------------------------------------------------------------------------- /rofi/powermenu/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/rofi/powermenu/confirm.rasi -------------------------------------------------------------------------------- /rofi/powermenu/powermenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/rofi/powermenu/powermenu -------------------------------------------------------------------------------- /rofi/theme.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/rofi/theme.rasi -------------------------------------------------------------------------------- /scripts/mpd-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/scripts/mpd-notify -------------------------------------------------------------------------------- /scripts/showkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/scripts/showkey -------------------------------------------------------------------------------- /scripts/sshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/scripts/sshot -------------------------------------------------------------------------------- /scripts/tmux-sessionizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/scripts/tmux-sessionizer -------------------------------------------------------------------------------- /scripts/tocenter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/scripts/tocenter -------------------------------------------------------------------------------- /scripts/unhidewindow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/scripts/unhidewindow -------------------------------------------------------------------------------- /scripts/volume_dunst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/scripts/volume_dunst -------------------------------------------------------------------------------- /stalonetray/stalonetrayrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/stalonetray/stalonetrayrc -------------------------------------------------------------------------------- /starship/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/starship/starship.toml -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/stylua.toml -------------------------------------------------------------------------------- /sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /systemd/mpd-notify.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/systemd/mpd-notify.service -------------------------------------------------------------------------------- /termux/colors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/termux/colors.properties -------------------------------------------------------------------------------- /termux/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/termux/font.ttf -------------------------------------------------------------------------------- /termux/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/termux/shell -------------------------------------------------------------------------------- /termux/termux.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/termux/termux.properties -------------------------------------------------------------------------------- /tmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/tmux/README.md -------------------------------------------------------------------------------- /tmux/tmux-line.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/tmux/tmux-line.conf -------------------------------------------------------------------------------- /tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/tmux/tmux.conf -------------------------------------------------------------------------------- /wezterm/colors/Duskfox.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/wezterm/colors/Duskfox.toml -------------------------------------------------------------------------------- /wezterm/colors/Everforest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/wezterm/colors/Everforest.toml -------------------------------------------------------------------------------- /wezterm/colors/Nightfox.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/wezterm/colors/Nightfox.toml -------------------------------------------------------------------------------- /wezterm/colors/Nordic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/wezterm/colors/Nordic.toml -------------------------------------------------------------------------------- /wezterm/colors/Rosé Pine Moon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/wezterm/colors/Rosé Pine Moon.toml -------------------------------------------------------------------------------- /wezterm/colors/Tokyonight Moon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/wezterm/colors/Tokyonight Moon.toml -------------------------------------------------------------------------------- /wezterm/colors/Tokyonight Storm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/wezterm/colors/Tokyonight Storm.toml -------------------------------------------------------------------------------- /wezterm/wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/wezterm/wezterm.lua -------------------------------------------------------------------------------- /xdm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/xdm.yaml -------------------------------------------------------------------------------- /xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/xinitrc -------------------------------------------------------------------------------- /yt-dlp/yt-dlp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/yt-dlp/yt-dlp.conf -------------------------------------------------------------------------------- /zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/zsh/.zshrc -------------------------------------------------------------------------------- /zsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XXiaoA/dotfiles/HEAD/zsh/README.md --------------------------------------------------------------------------------