├── .chezmoi.toml.tmpl ├── .chezmoiignore ├── LICENSE ├── README.md ├── assets └── images │ ├── preview.png │ ├── preview2.jpg │ ├── preview3.png │ └── preview4.png ├── dot_Xresources ├── dot_bin ├── compress_images_avif.ps1 ├── compress_pdf.ps1 ├── executable_app_launcher.sh ├── executable_brightness.sh ├── executable_btrfs_maintenance.sh ├── executable_clipboard.sh ├── executable_cmd_launcher.sh ├── executable_compress_images_avif.sh ├── executable_compress_pdf.sh ├── executable_efistub.sh ├── executable_hyprland_enter.sh ├── executable_hyprland_gamemode.sh ├── executable_install_fonts.sh ├── executable_literal_remove_sync_conflicts.sh ├── executable_mode.sh ├── executable_newm_enter.sh ├── executable_powermenu.sh ├── executable_status.sh ├── executable_sway_enter.sh ├── executable_sway_exit.sh ├── executable_sway_lock.sh ├── executable_sway_wallpaper.sh ├── executable_volume.sh ├── executable_with-sudo.sh ├── executable_with-wl.sh ├── executable_x0rzavi.zsh.tmpl └── literal_remove_sync_conflicts.ps1 ├── dot_config ├── MangoHud │ └── MangoHud.conf ├── alacritty │ └── private_alacritty.toml ├── aria2 │ └── aria2.conf ├── bottom │ └── bottom.toml ├── btop │ └── btop.conf ├── chrome-dev-flags.conf ├── chrome-flags.conf ├── code-flags.conf ├── containers │ ├── containers.conf │ ├── registries.conf │ └── storage.conf ├── dunst │ └── dunstrc ├── electron-flags.conf ├── environment.d │ ├── kwallet_gpg.conf │ └── ssh_askpass.conf ├── fish │ └── config.fish.tmpl ├── fontconfig │ └── fonts.conf ├── foot │ └── foot.ini ├── ghostty │ └── config ├── hypr │ ├── hyprland.conf │ └── hyprpaper.conf ├── imv │ └── config ├── mako │ └── config ├── micro │ └── settings.json ├── microsoft-edge-stable-flags.conf ├── mimeapps.list ├── mpd │ └── mpd.conf ├── ncmpcpp │ └── config ├── neofetch │ └── config.conf ├── newm │ └── config.py ├── nvim │ └── lua │ │ ├── config │ │ ├── keymaps.lua │ │ └── options.lua │ │ └── plugins │ │ ├── cmake_palette.lua │ │ ├── ctcache.lua.bak │ │ ├── example.lua │ │ └── plugins.lua ├── pipewire │ └── pipewire.conf.d │ │ └── crackling.conf ├── private_atuin │ └── private_config.toml ├── private_gtk-3.0 │ └── private_settings.ini ├── private_htop │ └── htoprc ├── private_mpv │ └── mpv.conf ├── psd │ └── psd.conf ├── rofi │ ├── colors.rasi │ └── config.rasi ├── sway │ └── config ├── tmux │ └── executable_tmux.conf ├── waybar │ ├── colors.css │ ├── config │ └── style.css ├── wofi │ ├── config │ └── style.css ├── xdg-desktop-portal-wlr │ └── config ├── xsettingsd │ └── xsettingsd.conf └── zellij │ └── config.kdl ├── dot_gitconfig ├── dot_gtkrc-2.0 ├── dot_local └── share │ └── dbus-1 │ └── services │ ├── org.freedesktop.impl.portal.Secret.service │ └── org.freedesktop.secrets.service ├── dot_ssh ├── authorized_keys.tmpl └── encrypted_private_config.asc ├── dot_zkbd └── keymaps ├── dot_zowe └── zowe.config.json ├── dot_zprofile.tmpl ├── dot_zshenv.tmpl ├── dot_zshrc.tmpl └── private_dot_gnupg ├── gpg-agent.conf.tmpl └── gpg.conf /.chezmoi.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/.chezmoi.toml.tmpl -------------------------------------------------------------------------------- /.chezmoiignore: -------------------------------------------------------------------------------- 1 | # Ignore files exclusively made for repository 2 | LICENSE 3 | assets 4 | README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/assets/images/preview.png -------------------------------------------------------------------------------- /assets/images/preview2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/assets/images/preview2.jpg -------------------------------------------------------------------------------- /assets/images/preview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/assets/images/preview3.png -------------------------------------------------------------------------------- /assets/images/preview4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/assets/images/preview4.png -------------------------------------------------------------------------------- /dot_Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_Xresources -------------------------------------------------------------------------------- /dot_bin/compress_images_avif.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/compress_images_avif.ps1 -------------------------------------------------------------------------------- /dot_bin/compress_pdf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/compress_pdf.ps1 -------------------------------------------------------------------------------- /dot_bin/executable_app_launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_app_launcher.sh -------------------------------------------------------------------------------- /dot_bin/executable_brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_brightness.sh -------------------------------------------------------------------------------- /dot_bin/executable_btrfs_maintenance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_btrfs_maintenance.sh -------------------------------------------------------------------------------- /dot_bin/executable_clipboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_clipboard.sh -------------------------------------------------------------------------------- /dot_bin/executable_cmd_launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_cmd_launcher.sh -------------------------------------------------------------------------------- /dot_bin/executable_compress_images_avif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_compress_images_avif.sh -------------------------------------------------------------------------------- /dot_bin/executable_compress_pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_compress_pdf.sh -------------------------------------------------------------------------------- /dot_bin/executable_efistub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_efistub.sh -------------------------------------------------------------------------------- /dot_bin/executable_hyprland_enter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_hyprland_enter.sh -------------------------------------------------------------------------------- /dot_bin/executable_hyprland_gamemode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_hyprland_gamemode.sh -------------------------------------------------------------------------------- /dot_bin/executable_install_fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_install_fonts.sh -------------------------------------------------------------------------------- /dot_bin/executable_literal_remove_sync_conflicts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_literal_remove_sync_conflicts.sh -------------------------------------------------------------------------------- /dot_bin/executable_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_mode.sh -------------------------------------------------------------------------------- /dot_bin/executable_newm_enter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_newm_enter.sh -------------------------------------------------------------------------------- /dot_bin/executable_powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_powermenu.sh -------------------------------------------------------------------------------- /dot_bin/executable_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_status.sh -------------------------------------------------------------------------------- /dot_bin/executable_sway_enter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_sway_enter.sh -------------------------------------------------------------------------------- /dot_bin/executable_sway_exit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_sway_exit.sh -------------------------------------------------------------------------------- /dot_bin/executable_sway_lock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_sway_lock.sh -------------------------------------------------------------------------------- /dot_bin/executable_sway_wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_sway_wallpaper.sh -------------------------------------------------------------------------------- /dot_bin/executable_volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_volume.sh -------------------------------------------------------------------------------- /dot_bin/executable_with-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_with-sudo.sh -------------------------------------------------------------------------------- /dot_bin/executable_with-wl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_with-wl.sh -------------------------------------------------------------------------------- /dot_bin/executable_x0rzavi.zsh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/executable_x0rzavi.zsh.tmpl -------------------------------------------------------------------------------- /dot_bin/literal_remove_sync_conflicts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_bin/literal_remove_sync_conflicts.ps1 -------------------------------------------------------------------------------- /dot_config/MangoHud/MangoHud.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/MangoHud/MangoHud.conf -------------------------------------------------------------------------------- /dot_config/alacritty/private_alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/alacritty/private_alacritty.toml -------------------------------------------------------------------------------- /dot_config/aria2/aria2.conf: -------------------------------------------------------------------------------- 1 | max-connection-per-server=4 2 | min-split-size=5M 3 | -------------------------------------------------------------------------------- /dot_config/bottom/bottom.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/bottom/bottom.toml -------------------------------------------------------------------------------- /dot_config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/btop/btop.conf -------------------------------------------------------------------------------- /dot_config/chrome-dev-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/chrome-dev-flags.conf -------------------------------------------------------------------------------- /dot_config/chrome-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/chrome-flags.conf -------------------------------------------------------------------------------- /dot_config/code-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/code-flags.conf -------------------------------------------------------------------------------- /dot_config/containers/containers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/containers/containers.conf -------------------------------------------------------------------------------- /dot_config/containers/registries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/containers/registries.conf -------------------------------------------------------------------------------- /dot_config/containers/storage.conf: -------------------------------------------------------------------------------- 1 | [storage] 2 | driver = "overlay" 3 | -------------------------------------------------------------------------------- /dot_config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/dunst/dunstrc -------------------------------------------------------------------------------- /dot_config/electron-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/electron-flags.conf -------------------------------------------------------------------------------- /dot_config/environment.d/kwallet_gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/environment.d/kwallet_gpg.conf -------------------------------------------------------------------------------- /dot_config/environment.d/ssh_askpass.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/environment.d/ssh_askpass.conf -------------------------------------------------------------------------------- /dot_config/fish/config.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/fish/config.fish.tmpl -------------------------------------------------------------------------------- /dot_config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /dot_config/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/foot/foot.ini -------------------------------------------------------------------------------- /dot_config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/ghostty/config -------------------------------------------------------------------------------- /dot_config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/hypr/hyprland.conf -------------------------------------------------------------------------------- /dot_config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /dot_config/imv/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/imv/config -------------------------------------------------------------------------------- /dot_config/mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/mako/config -------------------------------------------------------------------------------- /dot_config/micro/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/micro/settings.json -------------------------------------------------------------------------------- /dot_config/microsoft-edge-stable-flags.conf: -------------------------------------------------------------------------------- 1 | --ozone-platform-hint=auto 2 | -------------------------------------------------------------------------------- /dot_config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/mimeapps.list -------------------------------------------------------------------------------- /dot_config/mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/mpd/mpd.conf -------------------------------------------------------------------------------- /dot_config/ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/ncmpcpp/config -------------------------------------------------------------------------------- /dot_config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/neofetch/config.conf -------------------------------------------------------------------------------- /dot_config/newm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/newm/config.py -------------------------------------------------------------------------------- /dot_config/nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /dot_config/nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /dot_config/nvim/lua/plugins/cmake_palette.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/nvim/lua/plugins/cmake_palette.lua -------------------------------------------------------------------------------- /dot_config/nvim/lua/plugins/ctcache.lua.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/nvim/lua/plugins/ctcache.lua.bak -------------------------------------------------------------------------------- /dot_config/nvim/lua/plugins/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/nvim/lua/plugins/example.lua -------------------------------------------------------------------------------- /dot_config/nvim/lua/plugins/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/nvim/lua/plugins/plugins.lua -------------------------------------------------------------------------------- /dot_config/pipewire/pipewire.conf.d/crackling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/pipewire/pipewire.conf.d/crackling.conf -------------------------------------------------------------------------------- /dot_config/private_atuin/private_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/private_atuin/private_config.toml -------------------------------------------------------------------------------- /dot_config/private_gtk-3.0/private_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/private_gtk-3.0/private_settings.ini -------------------------------------------------------------------------------- /dot_config/private_htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/private_htop/htoprc -------------------------------------------------------------------------------- /dot_config/private_mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/private_mpv/mpv.conf -------------------------------------------------------------------------------- /dot_config/psd/psd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/psd/psd.conf -------------------------------------------------------------------------------- /dot_config/rofi/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/rofi/colors.rasi -------------------------------------------------------------------------------- /dot_config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/rofi/config.rasi -------------------------------------------------------------------------------- /dot_config/sway/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/sway/config -------------------------------------------------------------------------------- /dot_config/tmux/executable_tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/tmux/executable_tmux.conf -------------------------------------------------------------------------------- /dot_config/waybar/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/waybar/colors.css -------------------------------------------------------------------------------- /dot_config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/waybar/config -------------------------------------------------------------------------------- /dot_config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/waybar/style.css -------------------------------------------------------------------------------- /dot_config/wofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/wofi/config -------------------------------------------------------------------------------- /dot_config/wofi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/wofi/style.css -------------------------------------------------------------------------------- /dot_config/xdg-desktop-portal-wlr/config: -------------------------------------------------------------------------------- 1 | [screencast] 2 | output_name=eDP-1 3 | chooser_type = none 4 | max_fps=60 5 | -------------------------------------------------------------------------------- /dot_config/xsettingsd/xsettingsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/xsettingsd/xsettingsd.conf -------------------------------------------------------------------------------- /dot_config/zellij/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_config/zellij/config.kdl -------------------------------------------------------------------------------- /dot_gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_gitconfig -------------------------------------------------------------------------------- /dot_gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_gtkrc-2.0 -------------------------------------------------------------------------------- /dot_local/share/dbus-1/services/org.freedesktop.impl.portal.Secret.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_local/share/dbus-1/services/org.freedesktop.impl.portal.Secret.service -------------------------------------------------------------------------------- /dot_local/share/dbus-1/services/org.freedesktop.secrets.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_local/share/dbus-1/services/org.freedesktop.secrets.service -------------------------------------------------------------------------------- /dot_ssh/authorized_keys.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_ssh/authorized_keys.tmpl -------------------------------------------------------------------------------- /dot_ssh/encrypted_private_config.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_ssh/encrypted_private_config.asc -------------------------------------------------------------------------------- /dot_zkbd/keymaps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_zkbd/keymaps -------------------------------------------------------------------------------- /dot_zowe/zowe.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_zowe/zowe.config.json -------------------------------------------------------------------------------- /dot_zprofile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_zprofile.tmpl -------------------------------------------------------------------------------- /dot_zshenv.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_zshenv.tmpl -------------------------------------------------------------------------------- /dot_zshrc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/dot_zshrc.tmpl -------------------------------------------------------------------------------- /private_dot_gnupg/gpg-agent.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/private_dot_gnupg/gpg-agent.conf.tmpl -------------------------------------------------------------------------------- /private_dot_gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x0rzavi/dotfiles/HEAD/private_dot_gnupg/gpg.conf --------------------------------------------------------------------------------