├── .bash_profile ├── .bashrc ├── .gitattributes ├── .gitconfig ├── .gitignore ├── .inputrc ├── DankMaterialShell ├── .gitignore ├── firefox.css ├── plugin_settings.json └── settings.json ├── bat └── bat.config ├── btop └── btop.conf ├── cava └── config ├── clashtui ├── .gitignore ├── basic_clash_config.yaml ├── config.yaml ├── data.yaml └── templates │ └── aaa.yaml ├── clipse ├── .gitignore ├── config.json └── custom_theme.json ├── code-flags.conf ├── dingtalk-hook.sh ├── fastfetch └── config.jsonc ├── fcitx5 ├── conf │ ├── cached_layouts │ ├── chttrans.conf │ ├── classicui.conf │ ├── cloudpinyin.conf │ ├── notifications.conf │ ├── pinyin.conf │ ├── punctuation.conf │ └── quickphrase.conf ├── config └── profile ├── gtk-3.0 ├── bookmarks ├── libadwaita-tweaks.css ├── libadwaita.css └── settings.ini ├── hyprlock └── hyprlock.conf ├── kitty ├── .gitignore ├── current-theme.conf ├── kitty.conf ├── kitty.conf.bak ├── tab.conf └── tab_bar.py ├── lazygit └── config.yml ├── ly └── config.ini ├── mpv ├── input.conf ├── mpv.conf └── scripts │ └── pause-replay.lua ├── niri ├── .gitignore ├── action.kdl ├── config.kdl ├── debug.kdl ├── env.kdl ├── fire-close.frag ├── input.kdl ├── look.kdl ├── miscellaneous.kdl ├── noctalia.kdl ├── output.kdl └── rules.kdl ├── nwg-drawer └── drawer.css ├── qq-flags.conf ├── spicetify └── config-xpui.ini ├── spotify-launcher.conf ├── ssh-config ├── starship.toml ├── tray-tui └── config.toml ├── wallpaper ├── chill │ ├── Biryulyovo_Zapadnoye_District-blur.webp │ ├── Biryulyovo_Zapadnoye_District.webp │ ├── snowmoutain-lake.jpg │ ├── snowmoutain-night.png │ ├── wallhaven-0wyj16.jpg │ ├── wallhaven-d5wlmj.jpg │ ├── wallhaven-kxw957.jpg │ └── wallhaven-oxxkz9.jpg ├── red.png └── simple.png ├── way-edges ├── .gitignore ├── .prettierrc ├── battery.sh ├── config.jsonc ├── hyprland.jsonc └── niri.jsonc └── yazi ├── init.lua ├── keymap.toml ├── keymap.toml.bak ├── package.toml ├── plugins ├── chmod.yazi │ ├── LICENSE │ ├── README.md │ └── main.lua ├── full-border.yazi │ ├── LICENSE │ ├── README.md │ └── main.lua ├── max-preview.yazi │ ├── LICENSE │ ├── README.md │ └── main.lua ├── toggle-view.yazi │ ├── LICENSE │ ├── README.md │ └── main.lua └── what-size.yazi │ ├── LICENSE │ ├── README.md │ └── main.lua ├── theme.toml └── yazi.toml /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/.bash_profile -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/.bashrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/.gitignore -------------------------------------------------------------------------------- /.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/.inputrc -------------------------------------------------------------------------------- /DankMaterialShell/.gitignore: -------------------------------------------------------------------------------- 1 | plugins 2 | firefox.css 3 | -------------------------------------------------------------------------------- /DankMaterialShell/firefox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/DankMaterialShell/firefox.css -------------------------------------------------------------------------------- /DankMaterialShell/plugin_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/DankMaterialShell/plugin_settings.json -------------------------------------------------------------------------------- /DankMaterialShell/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/DankMaterialShell/settings.json -------------------------------------------------------------------------------- /bat/bat.config: -------------------------------------------------------------------------------- 1 | --theme="Catppuccin-mocha" 2 | -------------------------------------------------------------------------------- /btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/btop/btop.conf -------------------------------------------------------------------------------- /cava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/cava/config -------------------------------------------------------------------------------- /clashtui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/clashtui/.gitignore -------------------------------------------------------------------------------- /clashtui/basic_clash_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/clashtui/basic_clash_config.yaml -------------------------------------------------------------------------------- /clashtui/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/clashtui/config.yaml -------------------------------------------------------------------------------- /clashtui/data.yaml: -------------------------------------------------------------------------------- 1 | current_profile: aaa.yaml 2 | no_pp: false 3 | -------------------------------------------------------------------------------- /clashtui/templates/aaa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/clashtui/templates/aaa.yaml -------------------------------------------------------------------------------- /clipse/.gitignore: -------------------------------------------------------------------------------- 1 | clipboard_history.json 2 | clipse.log 3 | tmp_files 4 | -------------------------------------------------------------------------------- /clipse/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/clipse/config.json -------------------------------------------------------------------------------- /clipse/custom_theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/clipse/custom_theme.json -------------------------------------------------------------------------------- /code-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/code-flags.conf -------------------------------------------------------------------------------- /dingtalk-hook.sh: -------------------------------------------------------------------------------- 1 | export QT_SCREEN_SCALE_FACTORS=2 2 | -------------------------------------------------------------------------------- /fastfetch/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fastfetch/config.jsonc -------------------------------------------------------------------------------- /fcitx5/conf/cached_layouts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/conf/cached_layouts -------------------------------------------------------------------------------- /fcitx5/conf/chttrans.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/conf/chttrans.conf -------------------------------------------------------------------------------- /fcitx5/conf/classicui.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/conf/classicui.conf -------------------------------------------------------------------------------- /fcitx5/conf/cloudpinyin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/conf/cloudpinyin.conf -------------------------------------------------------------------------------- /fcitx5/conf/notifications.conf: -------------------------------------------------------------------------------- 1 | [HiddenNotifications] 2 | 0=wayland-diagnose-other 3 | 4 | -------------------------------------------------------------------------------- /fcitx5/conf/pinyin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/conf/pinyin.conf -------------------------------------------------------------------------------- /fcitx5/conf/punctuation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/conf/punctuation.conf -------------------------------------------------------------------------------- /fcitx5/conf/quickphrase.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/conf/quickphrase.conf -------------------------------------------------------------------------------- /fcitx5/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/config -------------------------------------------------------------------------------- /fcitx5/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/fcitx5/profile -------------------------------------------------------------------------------- /gtk-3.0/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/gtk-3.0/bookmarks -------------------------------------------------------------------------------- /gtk-3.0/libadwaita-tweaks.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gtk-3.0/libadwaita.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /hyprlock/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/hyprlock/hyprlock.conf -------------------------------------------------------------------------------- /kitty/.gitignore: -------------------------------------------------------------------------------- 1 | dank* 2 | -------------------------------------------------------------------------------- /kitty/current-theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/kitty/current-theme.conf -------------------------------------------------------------------------------- /kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/kitty/kitty.conf -------------------------------------------------------------------------------- /kitty/kitty.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/kitty/kitty.conf.bak -------------------------------------------------------------------------------- /kitty/tab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/kitty/tab.conf -------------------------------------------------------------------------------- /kitty/tab_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/kitty/tab_bar.py -------------------------------------------------------------------------------- /lazygit/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/lazygit/config.yml -------------------------------------------------------------------------------- /ly/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/ly/config.ini -------------------------------------------------------------------------------- /mpv/input.conf: -------------------------------------------------------------------------------- 1 | SPACE script-message pause-replay 2 | -------------------------------------------------------------------------------- /mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | keep-open=yes 2 | -------------------------------------------------------------------------------- /mpv/scripts/pause-replay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/mpv/scripts/pause-replay.lua -------------------------------------------------------------------------------- /niri/.gitignore: -------------------------------------------------------------------------------- 1 | dms 2 | -------------------------------------------------------------------------------- /niri/action.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/action.kdl -------------------------------------------------------------------------------- /niri/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/config.kdl -------------------------------------------------------------------------------- /niri/debug.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/debug.kdl -------------------------------------------------------------------------------- /niri/env.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/env.kdl -------------------------------------------------------------------------------- /niri/fire-close.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/fire-close.frag -------------------------------------------------------------------------------- /niri/input.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/input.kdl -------------------------------------------------------------------------------- /niri/look.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/look.kdl -------------------------------------------------------------------------------- /niri/miscellaneous.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/miscellaneous.kdl -------------------------------------------------------------------------------- /niri/noctalia.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/noctalia.kdl -------------------------------------------------------------------------------- /niri/output.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/output.kdl -------------------------------------------------------------------------------- /niri/rules.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/niri/rules.kdl -------------------------------------------------------------------------------- /nwg-drawer/drawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/nwg-drawer/drawer.css -------------------------------------------------------------------------------- /qq-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/qq-flags.conf -------------------------------------------------------------------------------- /spicetify/config-xpui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/spicetify/config-xpui.ini -------------------------------------------------------------------------------- /spotify-launcher.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/spotify-launcher.conf -------------------------------------------------------------------------------- /ssh-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/ssh-config -------------------------------------------------------------------------------- /starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/starship.toml -------------------------------------------------------------------------------- /tray-tui/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/tray-tui/config.toml -------------------------------------------------------------------------------- /wallpaper/chill/Biryulyovo_Zapadnoye_District-blur.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/chill/Biryulyovo_Zapadnoye_District-blur.webp -------------------------------------------------------------------------------- /wallpaper/chill/Biryulyovo_Zapadnoye_District.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/chill/Biryulyovo_Zapadnoye_District.webp -------------------------------------------------------------------------------- /wallpaper/chill/snowmoutain-lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/chill/snowmoutain-lake.jpg -------------------------------------------------------------------------------- /wallpaper/chill/snowmoutain-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/chill/snowmoutain-night.png -------------------------------------------------------------------------------- /wallpaper/chill/wallhaven-0wyj16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/chill/wallhaven-0wyj16.jpg -------------------------------------------------------------------------------- /wallpaper/chill/wallhaven-d5wlmj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/chill/wallhaven-d5wlmj.jpg -------------------------------------------------------------------------------- /wallpaper/chill/wallhaven-kxw957.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/chill/wallhaven-kxw957.jpg -------------------------------------------------------------------------------- /wallpaper/chill/wallhaven-oxxkz9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/chill/wallhaven-oxxkz9.jpg -------------------------------------------------------------------------------- /wallpaper/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/red.png -------------------------------------------------------------------------------- /wallpaper/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/wallpaper/simple.png -------------------------------------------------------------------------------- /way-edges/.gitignore: -------------------------------------------------------------------------------- 1 | schema.json 2 | -------------------------------------------------------------------------------- /way-edges/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/way-edges/.prettierrc -------------------------------------------------------------------------------- /way-edges/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/way-edges/battery.sh -------------------------------------------------------------------------------- /way-edges/config.jsonc: -------------------------------------------------------------------------------- 1 | ./niri.jsonc -------------------------------------------------------------------------------- /way-edges/hyprland.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/way-edges/hyprland.jsonc -------------------------------------------------------------------------------- /way-edges/niri.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/way-edges/niri.jsonc -------------------------------------------------------------------------------- /yazi/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/init.lua -------------------------------------------------------------------------------- /yazi/keymap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/keymap.toml -------------------------------------------------------------------------------- /yazi/keymap.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/keymap.toml.bak -------------------------------------------------------------------------------- /yazi/package.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/package.toml -------------------------------------------------------------------------------- /yazi/plugins/chmod.yazi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/chmod.yazi/LICENSE -------------------------------------------------------------------------------- /yazi/plugins/chmod.yazi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/chmod.yazi/README.md -------------------------------------------------------------------------------- /yazi/plugins/chmod.yazi/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/chmod.yazi/main.lua -------------------------------------------------------------------------------- /yazi/plugins/full-border.yazi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/full-border.yazi/LICENSE -------------------------------------------------------------------------------- /yazi/plugins/full-border.yazi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/full-border.yazi/README.md -------------------------------------------------------------------------------- /yazi/plugins/full-border.yazi/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/full-border.yazi/main.lua -------------------------------------------------------------------------------- /yazi/plugins/max-preview.yazi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/max-preview.yazi/LICENSE -------------------------------------------------------------------------------- /yazi/plugins/max-preview.yazi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/max-preview.yazi/README.md -------------------------------------------------------------------------------- /yazi/plugins/max-preview.yazi/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/max-preview.yazi/main.lua -------------------------------------------------------------------------------- /yazi/plugins/toggle-view.yazi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/toggle-view.yazi/LICENSE -------------------------------------------------------------------------------- /yazi/plugins/toggle-view.yazi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/toggle-view.yazi/README.md -------------------------------------------------------------------------------- /yazi/plugins/toggle-view.yazi/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/toggle-view.yazi/main.lua -------------------------------------------------------------------------------- /yazi/plugins/what-size.yazi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/what-size.yazi/LICENSE -------------------------------------------------------------------------------- /yazi/plugins/what-size.yazi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/what-size.yazi/README.md -------------------------------------------------------------------------------- /yazi/plugins/what-size.yazi/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/plugins/what-size.yazi/main.lua -------------------------------------------------------------------------------- /yazi/theme.toml: -------------------------------------------------------------------------------- 1 | [flavor] 2 | use = "tokyo-night" 3 | -------------------------------------------------------------------------------- /yazi/yazi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogios/dots/HEAD/yazi/yazi.toml --------------------------------------------------------------------------------