├── .gitconfig ├── .gitignore ├── .profile ├── README.md ├── bin ├── brightness_set ├── fuzzel-systemd-run └── record_minidisc ├── environment.d ├── 10-default.conf └── 99-local.conf ├── fcitx5 ├── conf │ └── classicui.conf ├── profile └── themes │ └── winter │ ├── arrow.png │ ├── panel.png │ ├── radio.png │ └── theme.conf ├── fish ├── conf.d │ └── fish_title.fish └── config.fish ├── fontconfig └── fonts.conf ├── foot └── foot.ini ├── fuzzel └── fuzzel.ini ├── gnupg └── gpg-agent.conf ├── greetd └── config.toml ├── install.sh ├── isync └── mbsyncrc ├── mako └── config ├── mpd ├── mpd.conf └── output.conf.example ├── mpv └── mpv.conf ├── msmtp └── config ├── ncmpcpp └── config ├── niri └── config.kdl ├── notmuch └── default │ ├── config │ └── hooks │ ├── post-new │ └── pre-new ├── rime ├── .gitignore ├── aurora_pinyin.custom.yaml ├── aurora_pinyin.extended.dict.yaml └── default.custom.yaml ├── systemd ├── system │ └── greetd.service.d │ │ └── override.conf └── user │ ├── fcitx5.service │ ├── niri.service.wants │ ├── fcitx5.service │ ├── foot-server.socket │ ├── mako.service │ ├── notmuch.timer │ ├── plasma-polkit-agent.service │ ├── swaybg.service │ ├── swayidle.service │ ├── waybar.service │ └── wlsunset.service │ ├── notmuch.service │ ├── notmuch.timer │ ├── plasma-polkit-agent.service │ ├── polkit-kde-agent.service │ ├── swaybg.service │ ├── swayidle.service │ └── wlsunset.service ├── tmux └── tmux.conf └── waybar ├── config └── style.css /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/.profile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/brightness_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/bin/brightness_set -------------------------------------------------------------------------------- /bin/fuzzel-systemd-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/bin/fuzzel-systemd-run -------------------------------------------------------------------------------- /bin/record_minidisc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/bin/record_minidisc -------------------------------------------------------------------------------- /environment.d/10-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/environment.d/10-default.conf -------------------------------------------------------------------------------- /environment.d/99-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/environment.d/99-local.conf -------------------------------------------------------------------------------- /fcitx5/conf/classicui.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fcitx5/conf/classicui.conf -------------------------------------------------------------------------------- /fcitx5/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fcitx5/profile -------------------------------------------------------------------------------- /fcitx5/themes/winter/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fcitx5/themes/winter/arrow.png -------------------------------------------------------------------------------- /fcitx5/themes/winter/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fcitx5/themes/winter/panel.png -------------------------------------------------------------------------------- /fcitx5/themes/winter/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fcitx5/themes/winter/radio.png -------------------------------------------------------------------------------- /fcitx5/themes/winter/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fcitx5/themes/winter/theme.conf -------------------------------------------------------------------------------- /fish/conf.d/fish_title.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fish/conf.d/fish_title.fish -------------------------------------------------------------------------------- /fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fish/config.fish -------------------------------------------------------------------------------- /fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fontconfig/fonts.conf -------------------------------------------------------------------------------- /foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/foot/foot.ini -------------------------------------------------------------------------------- /fuzzel/fuzzel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/fuzzel/fuzzel.ini -------------------------------------------------------------------------------- /gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /greetd/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/greetd/config.toml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /isync/mbsyncrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/isync/mbsyncrc -------------------------------------------------------------------------------- /mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/mako/config -------------------------------------------------------------------------------- /mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/mpd/mpd.conf -------------------------------------------------------------------------------- /mpd/output.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/mpd/output.conf.example -------------------------------------------------------------------------------- /mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/mpv/mpv.conf -------------------------------------------------------------------------------- /msmtp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/msmtp/config -------------------------------------------------------------------------------- /ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/ncmpcpp/config -------------------------------------------------------------------------------- /niri/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/niri/config.kdl -------------------------------------------------------------------------------- /notmuch/default/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/notmuch/default/config -------------------------------------------------------------------------------- /notmuch/default/hooks/post-new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/notmuch/default/hooks/post-new -------------------------------------------------------------------------------- /notmuch/default/hooks/pre-new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/notmuch/default/hooks/pre-new -------------------------------------------------------------------------------- /rime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/rime/.gitignore -------------------------------------------------------------------------------- /rime/aurora_pinyin.custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/rime/aurora_pinyin.custom.yaml -------------------------------------------------------------------------------- /rime/aurora_pinyin.extended.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/rime/aurora_pinyin.extended.dict.yaml -------------------------------------------------------------------------------- /rime/default.custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/rime/default.custom.yaml -------------------------------------------------------------------------------- /systemd/system/greetd.service.d/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/system/greetd.service.d/override.conf -------------------------------------------------------------------------------- /systemd/user/fcitx5.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/user/fcitx5.service -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/fcitx5.service: -------------------------------------------------------------------------------- 1 | ../fcitx5.service -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/foot-server.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/user/foot-server.socket -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/mako.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/user/mako.service -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/notmuch.timer: -------------------------------------------------------------------------------- 1 | ../notmuch.timer -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/plasma-polkit-agent.service: -------------------------------------------------------------------------------- 1 | ../plasma-polkit-agent.service -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/swaybg.service: -------------------------------------------------------------------------------- 1 | ../swaybg.service -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/swayidle.service: -------------------------------------------------------------------------------- 1 | ../swayidle.service -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/waybar.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/user/waybar.service -------------------------------------------------------------------------------- /systemd/user/niri.service.wants/wlsunset.service: -------------------------------------------------------------------------------- 1 | ../wlsunset.service -------------------------------------------------------------------------------- /systemd/user/notmuch.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/user/notmuch.service -------------------------------------------------------------------------------- /systemd/user/notmuch.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/user/notmuch.timer -------------------------------------------------------------------------------- /systemd/user/plasma-polkit-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/user/plasma-polkit-agent.service -------------------------------------------------------------------------------- /systemd/user/polkit-kde-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/user/polkit-kde-agent.service -------------------------------------------------------------------------------- /systemd/user/swaybg.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/user/swaybg.service -------------------------------------------------------------------------------- /systemd/user/swayidle.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/user/swayidle.service -------------------------------------------------------------------------------- /systemd/user/wlsunset.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/systemd/user/wlsunset.service -------------------------------------------------------------------------------- /tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/tmux/tmux.conf -------------------------------------------------------------------------------- /waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/waybar/config -------------------------------------------------------------------------------- /waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szclsya/dotfiles/HEAD/waybar/style.css --------------------------------------------------------------------------------