├── aliases ├── bashrc ├── config ├── Kvantum │ └── kvantum.kvconfig ├── QtProject.conf ├── alacritty │ └── alacritty.yml ├── arandr │ └── layout.sh ├── autostart │ ├── LXinput-setup.desktop │ ├── easyeffects-service.desktop │ ├── fcitx5.desktop │ ├── flameshot.desktop │ ├── greenclip.desktop │ ├── lxrandr-autostart.desktop │ ├── megasync.desktop │ ├── nitrogen.desktop │ ├── nm-applet.desktop │ ├── polkit-dumb-agent.desktop │ ├── poweralertd.desktop │ ├── remmina-applet.desktop │ ├── volumeicon.desktop │ └── xcompmgr.desktop ├── bottom │ └── bottom.toml ├── cava │ └── config ├── era │ └── config.json ├── fish │ ├── config.fish │ ├── fish_plugins │ └── fish_variables ├── flameshot │ └── flameshot.ini ├── gh │ └── config.yml ├── greenclip.toml ├── gtk-2.0 │ └── gtkfilechooser.ini ├── gtk-3.0 │ ├── bookmarks │ └── settings.ini ├── hypr │ ├── hyprland.conf │ └── init-gtk.sh ├── i3 │ ├── autostart.sh │ └── config ├── lf │ └── lfrc ├── memo │ └── config.toml ├── nitrogen │ └── nitrogen.cfg ├── nvim │ ├── colors.toml │ ├── dein.toml │ ├── denops.toml │ ├── ginit.vim │ ├── init.vim │ ├── joke.toml │ ├── lightlinerc.vim │ ├── lsp.toml │ └── skkeletonrc.vim ├── picom │ └── picom.conf ├── qt5ct │ └── qt5ct.conf ├── rofi │ ├── config.rasi │ └── themes │ │ └── iceberg.rasi ├── starship.toml ├── uwufetch │ └── config ├── volumeicon │ └── volumeicon ├── wezterm │ └── wezterm.lua └── xfce4 │ └── terminal │ ├── accels.scm │ └── terminalrc ├── gitconfig ├── local └── share │ └── bumblebee-status │ └── themes │ └── iceberg-darker-powerline.json ├── profile ├── xprofile └── zshrc /aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/aliases -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/bashrc -------------------------------------------------------------------------------- /config/Kvantum/kvantum.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=Qogir-dark 3 | -------------------------------------------------------------------------------- /config/QtProject.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/QtProject.conf -------------------------------------------------------------------------------- /config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /config/arandr/layout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/arandr/layout.sh -------------------------------------------------------------------------------- /config/autostart/LXinput-setup.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/LXinput-setup.desktop -------------------------------------------------------------------------------- /config/autostart/easyeffects-service.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/easyeffects-service.desktop -------------------------------------------------------------------------------- /config/autostart/fcitx5.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/fcitx5.desktop -------------------------------------------------------------------------------- /config/autostart/flameshot.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/flameshot.desktop -------------------------------------------------------------------------------- /config/autostart/greenclip.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/greenclip.desktop -------------------------------------------------------------------------------- /config/autostart/lxrandr-autostart.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/lxrandr-autostart.desktop -------------------------------------------------------------------------------- /config/autostart/megasync.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/megasync.desktop -------------------------------------------------------------------------------- /config/autostart/nitrogen.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/nitrogen.desktop -------------------------------------------------------------------------------- /config/autostart/nm-applet.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/nm-applet.desktop -------------------------------------------------------------------------------- /config/autostart/polkit-dumb-agent.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/polkit-dumb-agent.desktop -------------------------------------------------------------------------------- /config/autostart/poweralertd.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/poweralertd.desktop -------------------------------------------------------------------------------- /config/autostart/remmina-applet.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/remmina-applet.desktop -------------------------------------------------------------------------------- /config/autostart/volumeicon.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/volumeicon.desktop -------------------------------------------------------------------------------- /config/autostart/xcompmgr.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/autostart/xcompmgr.desktop -------------------------------------------------------------------------------- /config/bottom/bottom.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/bottom/bottom.toml -------------------------------------------------------------------------------- /config/cava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/cava/config -------------------------------------------------------------------------------- /config/era/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/era/config.json -------------------------------------------------------------------------------- /config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/fish/config.fish -------------------------------------------------------------------------------- /config/fish/fish_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/fish/fish_plugins -------------------------------------------------------------------------------- /config/fish/fish_variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/fish/fish_variables -------------------------------------------------------------------------------- /config/flameshot/flameshot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/flameshot/flameshot.ini -------------------------------------------------------------------------------- /config/gh/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/gh/config.yml -------------------------------------------------------------------------------- /config/greenclip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/greenclip.toml -------------------------------------------------------------------------------- /config/gtk-2.0/gtkfilechooser.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/gtk-2.0/gtkfilechooser.ini -------------------------------------------------------------------------------- /config/gtk-3.0/bookmarks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/hypr/hyprland.conf -------------------------------------------------------------------------------- /config/hypr/init-gtk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/hypr/init-gtk.sh -------------------------------------------------------------------------------- /config/i3/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/i3/autostart.sh -------------------------------------------------------------------------------- /config/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/i3/config -------------------------------------------------------------------------------- /config/lf/lfrc: -------------------------------------------------------------------------------- 1 | set hidden 2 | -------------------------------------------------------------------------------- /config/memo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/memo/config.toml -------------------------------------------------------------------------------- /config/nitrogen/nitrogen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nitrogen/nitrogen.cfg -------------------------------------------------------------------------------- /config/nvim/colors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/colors.toml -------------------------------------------------------------------------------- /config/nvim/dein.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/dein.toml -------------------------------------------------------------------------------- /config/nvim/denops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/denops.toml -------------------------------------------------------------------------------- /config/nvim/ginit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/ginit.vim -------------------------------------------------------------------------------- /config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/init.vim -------------------------------------------------------------------------------- /config/nvim/joke.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/joke.toml -------------------------------------------------------------------------------- /config/nvim/lightlinerc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/lightlinerc.vim -------------------------------------------------------------------------------- /config/nvim/lsp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/lsp.toml -------------------------------------------------------------------------------- /config/nvim/skkeletonrc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/nvim/skkeletonrc.vim -------------------------------------------------------------------------------- /config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/picom/picom.conf -------------------------------------------------------------------------------- /config/qt5ct/qt5ct.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/qt5ct/qt5ct.conf -------------------------------------------------------------------------------- /config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/rofi/config.rasi -------------------------------------------------------------------------------- /config/rofi/themes/iceberg.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/rofi/themes/iceberg.rasi -------------------------------------------------------------------------------- /config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/starship.toml -------------------------------------------------------------------------------- /config/uwufetch/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/uwufetch/config -------------------------------------------------------------------------------- /config/volumeicon/volumeicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/volumeicon/volumeicon -------------------------------------------------------------------------------- /config/wezterm/wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/wezterm/wezterm.lua -------------------------------------------------------------------------------- /config/xfce4/terminal/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/xfce4/terminal/accels.scm -------------------------------------------------------------------------------- /config/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/config/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/gitconfig -------------------------------------------------------------------------------- /local/share/bumblebee-status/themes/iceberg-darker-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/local/share/bumblebee-status/themes/iceberg-darker-powerline.json -------------------------------------------------------------------------------- /profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/profile -------------------------------------------------------------------------------- /xprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/xprofile -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepla/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------