├── .bashrc ├── .cdw ├── cdw.colors └── cdw.conf ├── .config ├── X11 │ ├── Xresources │ ├── Xresources.d │ │ ├── dmenu │ │ ├── i3wm │ │ ├── nsxiv │ │ ├── polybar │ │ ├── rxvt-unicode │ │ ├── slock │ │ ├── st │ │ ├── tabbed │ │ ├── wallpaper │ │ ├── xautolock │ │ ├── xcursor │ │ └── xft │ ├── xinit │ │ ├── xinitrc │ │ └── xinitrc.d │ │ │ ├── 20-monitor.sh │ │ │ └── 90-gnupg-ssh-agent.sh │ └── xorg.conf.d │ │ ├── 00-keyboard.conf │ │ ├── 10-keyboard.conf │ │ ├── 20-video-amd.conf │ │ ├── 20-video-intel.conf │ │ ├── 30-touchpad.conf │ │ └── 70-wacom.conf ├── aliases ├── aria2 │ ├── aria2.conf │ └── aria2d.conf ├── btop │ ├── btop.conf │ └── themes │ │ └── klassiker.theme ├── cmus │ ├── klassiker.theme │ └── rc ├── dunst │ └── dunstrc ├── fontconfig │ ├── conf.avail │ │ ├── 75-dejavu-emoji.conf │ │ ├── 75-joypixels.conf │ │ ├── 75-microsoft.conf │ │ └── 75-noto-color-emoji.conf │ └── conf.d │ │ ├── 75-dejavu-emoji.conf │ │ ├── 75-microsoft.conf │ │ └── 75-noto-color-emoji.conf ├── functions ├── highlight │ └── klassiker.theme ├── htop │ └── htoprc ├── i3 │ ├── config │ └── config.d │ │ ├── applications.conf │ │ ├── keybindings_applications.conf │ │ ├── keybindings_multimedia.conf │ │ ├── keybindings_system_management.conf │ │ ├── keybindings_windows.conf │ │ ├── keybindings_workspaces.conf │ │ ├── mode_container.conf │ │ ├── mode_exit.conf │ │ ├── mode_floating.conf │ │ ├── mode_macros.conf │ │ ├── mode_nfs.conf │ │ ├── mode_services.conf │ │ ├── mode_ssh.conf │ │ └── status_bar.conf ├── i3status │ ├── config_pmon │ └── config_smon ├── libinput-gestures.conf ├── mc │ ├── hotlist │ ├── ini │ └── panels.ini ├── mimeapps.list ├── mpv │ ├── mpv.conf │ ├── profile.conf │ └── scripts │ │ ├── menu_playlist.lua │ │ └── menu_yt-dlp_quality.lua ├── ncdu │ └── config ├── newsboat │ ├── config │ └── urls ├── npm │ └── npmrc ├── nsxiv │ └── exec │ │ ├── image-info │ │ ├── key-handler │ │ ├── thumb-info │ │ └── win-title ├── nvim │ ├── autoload │ │ └── lightline │ │ │ └── colorscheme │ │ │ └── klassiker.vim │ ├── coc-settings.json │ ├── colors │ │ └── klassiker.vim │ ├── init.vim │ └── init │ │ ├── coding.vim │ │ ├── commands.vim │ │ ├── encrypt.vim │ │ ├── filetypes.vim │ │ ├── header.vim │ │ ├── keybindings.vim │ │ ├── netrw.vim │ │ ├── plugins.vim │ │ ├── plugins │ │ ├── coc.vim │ │ ├── goyo.vim │ │ ├── hexmode.vim │ │ ├── indentLine.vim │ │ ├── lightline.vim │ │ ├── nvim-highlight-colors.lua │ │ ├── vim-commentary.vim │ │ ├── vim-gitgutter.vim │ │ ├── vim-which-key.vim │ │ └── vimwiki.vim │ │ ├── reload.vim │ │ ├── templates.vim │ │ └── templates │ │ ├── c.tpl │ │ ├── gpg.tpl │ │ ├── lua.tpl │ │ ├── md.tpl │ │ ├── py.tpl │ │ ├── sh.tpl │ │ └── vim.tpl ├── pacman │ └── makepkg.conf ├── paru │ ├── paru.conf │ ├── pkgs_all.txt │ └── pkgs_explicit.txt ├── picom │ └── picom.conf ├── polybar │ ├── config.d │ │ ├── audio.ini │ │ ├── battery.ini │ │ ├── cpu.ini │ │ ├── date.ini │ │ ├── fs.ini │ │ ├── i3.ini │ │ ├── ipc.ini │ │ ├── ipc_timer.ini │ │ ├── memory.ini │ │ ├── menu.ini │ │ ├── network.ini │ │ ├── script.ini │ │ ├── temperature.ini │ │ ├── tray.ini │ │ ├── xbacklight.ini │ │ ├── xkeyboard.ini │ │ └── xwindow.ini │ └── config.ini ├── qutebrowser │ ├── config.py │ └── default.css ├── ranger │ ├── colorschemes │ │ └── klassiker.py │ ├── commands.py │ ├── rc.conf │ ├── rifle.conf │ └── scope.sh ├── systemd │ └── user │ │ ├── aria2cd.service │ │ ├── i3.target │ │ ├── i3_autotiling.service │ │ ├── i3_defaults.service │ │ ├── picom.service │ │ ├── polybar.service │ │ ├── wacom.service │ │ ├── wallpaper.service │ │ ├── xautolock.service │ │ └── xhidecursor.service ├── tmux │ └── tmux.conf ├── yt-dlp │ └── config ├── zathura │ ├── klassiker.theme │ └── zathurarc └── zsh │ ├── .zprofile │ └── .zshrc ├── .gitignore ├── .hushlogin ├── .local ├── share │ ├── applications │ │ ├── urxvtc.desktop │ │ ├── userapp-alsa.desktop │ │ ├── userapp-bookmarks.desktop │ │ ├── userapp-calculator.desktop │ │ ├── userapp-cdw.desktop │ │ ├── userapp-cmus.desktop │ │ ├── userapp-color-picker.desktop │ │ ├── userapp-cpupower.desktop │ │ ├── userapp-display.desktop │ │ ├── userapp-iptv.desktop │ │ ├── userapp-man.desktop │ │ ├── userapp-mount.desktop │ │ ├── userapp-network-manager.desktop │ │ ├── userapp-pacman.desktop │ │ ├── userapp-pass.desktop │ │ ├── userapp-screenshot.desktop │ │ ├── userapp-shortcuts.desktop │ │ ├── userapp-ssh.desktop │ │ ├── userapp-st.desktop │ │ ├── userapp-surf.desktop │ │ ├── userapp-unicode-symbols.desktop │ │ ├── userapp-usb.desktop │ │ ├── userapp-virtualbox.desktop │ │ ├── userapp-w3m.desktop │ │ ├── userapp-windows.desktop │ │ ├── userapp-xkeymou.desktop │ │ └── userapp-youtube.desktop │ ├── mc │ │ └── skins │ │ │ └── klassiker.ini │ └── tty │ │ ├── arch.issue │ │ ├── arch_solid.issue │ │ ├── blank.issue │ │ ├── cinfo.issue │ │ ├── debian.issue │ │ ├── debian_red.issue │ │ ├── gentoo.issue │ │ ├── info.issue │ │ ├── issue │ │ ├── manjaro.issue │ │ ├── pacman.issue │ │ └── plain.issue └── state │ └── w3m │ ├── config │ └── keymap ├── .zshenv ├── LICENSE.md ├── README.md └── screenshot.png /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.cdw/cdw.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.cdw/cdw.colors -------------------------------------------------------------------------------- /.cdw/cdw.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.cdw/cdw.conf -------------------------------------------------------------------------------- /.config/X11/Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources -------------------------------------------------------------------------------- /.config/X11/Xresources.d/dmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/dmenu -------------------------------------------------------------------------------- /.config/X11/Xresources.d/i3wm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/i3wm -------------------------------------------------------------------------------- /.config/X11/Xresources.d/nsxiv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/nsxiv -------------------------------------------------------------------------------- /.config/X11/Xresources.d/polybar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/polybar -------------------------------------------------------------------------------- /.config/X11/Xresources.d/rxvt-unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/rxvt-unicode -------------------------------------------------------------------------------- /.config/X11/Xresources.d/slock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/slock -------------------------------------------------------------------------------- /.config/X11/Xresources.d/st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/st -------------------------------------------------------------------------------- /.config/X11/Xresources.d/tabbed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/tabbed -------------------------------------------------------------------------------- /.config/X11/Xresources.d/wallpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/wallpaper -------------------------------------------------------------------------------- /.config/X11/Xresources.d/xautolock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/xautolock -------------------------------------------------------------------------------- /.config/X11/Xresources.d/xcursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/xcursor -------------------------------------------------------------------------------- /.config/X11/Xresources.d/xft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/Xresources.d/xft -------------------------------------------------------------------------------- /.config/X11/xinit/xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xinit/xinitrc -------------------------------------------------------------------------------- /.config/X11/xinit/xinitrc.d/20-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xinit/xinitrc.d/20-monitor.sh -------------------------------------------------------------------------------- /.config/X11/xinit/xinitrc.d/90-gnupg-ssh-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xinit/xinitrc.d/90-gnupg-ssh-agent.sh -------------------------------------------------------------------------------- /.config/X11/xorg.conf.d/00-keyboard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xorg.conf.d/00-keyboard.conf -------------------------------------------------------------------------------- /.config/X11/xorg.conf.d/10-keyboard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xorg.conf.d/10-keyboard.conf -------------------------------------------------------------------------------- /.config/X11/xorg.conf.d/20-video-amd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xorg.conf.d/20-video-amd.conf -------------------------------------------------------------------------------- /.config/X11/xorg.conf.d/20-video-intel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xorg.conf.d/20-video-intel.conf -------------------------------------------------------------------------------- /.config/X11/xorg.conf.d/30-touchpad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xorg.conf.d/30-touchpad.conf -------------------------------------------------------------------------------- /.config/X11/xorg.conf.d/70-wacom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/X11/xorg.conf.d/70-wacom.conf -------------------------------------------------------------------------------- /.config/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/aliases -------------------------------------------------------------------------------- /.config/aria2/aria2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/aria2/aria2.conf -------------------------------------------------------------------------------- /.config/aria2/aria2d.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/aria2/aria2d.conf -------------------------------------------------------------------------------- /.config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/btop/btop.conf -------------------------------------------------------------------------------- /.config/btop/themes/klassiker.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/btop/themes/klassiker.theme -------------------------------------------------------------------------------- /.config/cmus/klassiker.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/cmus/klassiker.theme -------------------------------------------------------------------------------- /.config/cmus/rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/cmus/rc -------------------------------------------------------------------------------- /.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/dunst/dunstrc -------------------------------------------------------------------------------- /.config/fontconfig/conf.avail/75-dejavu-emoji.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/fontconfig/conf.avail/75-dejavu-emoji.conf -------------------------------------------------------------------------------- /.config/fontconfig/conf.avail/75-joypixels.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/fontconfig/conf.avail/75-joypixels.conf -------------------------------------------------------------------------------- /.config/fontconfig/conf.avail/75-microsoft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/fontconfig/conf.avail/75-microsoft.conf -------------------------------------------------------------------------------- /.config/fontconfig/conf.avail/75-noto-color-emoji.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/fontconfig/conf.avail/75-noto-color-emoji.conf -------------------------------------------------------------------------------- /.config/fontconfig/conf.d/75-dejavu-emoji.conf: -------------------------------------------------------------------------------- 1 | ../conf.avail/75-dejavu-emoji.conf -------------------------------------------------------------------------------- /.config/fontconfig/conf.d/75-microsoft.conf: -------------------------------------------------------------------------------- 1 | ../conf.avail/75-microsoft.conf -------------------------------------------------------------------------------- /.config/fontconfig/conf.d/75-noto-color-emoji.conf: -------------------------------------------------------------------------------- 1 | ../conf.avail/75-noto-color-emoji.conf -------------------------------------------------------------------------------- /.config/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/functions -------------------------------------------------------------------------------- /.config/highlight/klassiker.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/highlight/klassiker.theme -------------------------------------------------------------------------------- /.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/htop/htoprc -------------------------------------------------------------------------------- /.config/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config -------------------------------------------------------------------------------- /.config/i3/config.d/applications.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/applications.conf -------------------------------------------------------------------------------- /.config/i3/config.d/keybindings_applications.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/keybindings_applications.conf -------------------------------------------------------------------------------- /.config/i3/config.d/keybindings_multimedia.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/keybindings_multimedia.conf -------------------------------------------------------------------------------- /.config/i3/config.d/keybindings_system_management.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/keybindings_system_management.conf -------------------------------------------------------------------------------- /.config/i3/config.d/keybindings_windows.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/keybindings_windows.conf -------------------------------------------------------------------------------- /.config/i3/config.d/keybindings_workspaces.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/keybindings_workspaces.conf -------------------------------------------------------------------------------- /.config/i3/config.d/mode_container.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/mode_container.conf -------------------------------------------------------------------------------- /.config/i3/config.d/mode_exit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/mode_exit.conf -------------------------------------------------------------------------------- /.config/i3/config.d/mode_floating.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/mode_floating.conf -------------------------------------------------------------------------------- /.config/i3/config.d/mode_macros.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/mode_macros.conf -------------------------------------------------------------------------------- /.config/i3/config.d/mode_nfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/mode_nfs.conf -------------------------------------------------------------------------------- /.config/i3/config.d/mode_services.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/mode_services.conf -------------------------------------------------------------------------------- /.config/i3/config.d/mode_ssh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/mode_ssh.conf -------------------------------------------------------------------------------- /.config/i3/config.d/status_bar.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3/config.d/status_bar.conf -------------------------------------------------------------------------------- /.config/i3status/config_pmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3status/config_pmon -------------------------------------------------------------------------------- /.config/i3status/config_smon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/i3status/config_smon -------------------------------------------------------------------------------- /.config/libinput-gestures.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/libinput-gestures.conf -------------------------------------------------------------------------------- /.config/mc/hotlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/mc/hotlist -------------------------------------------------------------------------------- /.config/mc/ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/mc/ini -------------------------------------------------------------------------------- /.config/mc/panels.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/mc/panels.ini -------------------------------------------------------------------------------- /.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/mimeapps.list -------------------------------------------------------------------------------- /.config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/mpv/mpv.conf -------------------------------------------------------------------------------- /.config/mpv/profile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/mpv/profile.conf -------------------------------------------------------------------------------- /.config/mpv/scripts/menu_playlist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/mpv/scripts/menu_playlist.lua -------------------------------------------------------------------------------- /.config/mpv/scripts/menu_yt-dlp_quality.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/mpv/scripts/menu_yt-dlp_quality.lua -------------------------------------------------------------------------------- /.config/ncdu/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/ncdu/config -------------------------------------------------------------------------------- /.config/newsboat/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/newsboat/config -------------------------------------------------------------------------------- /.config/newsboat/urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/newsboat/urls -------------------------------------------------------------------------------- /.config/npm/npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/npm/npmrc -------------------------------------------------------------------------------- /.config/nsxiv/exec/image-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nsxiv/exec/image-info -------------------------------------------------------------------------------- /.config/nsxiv/exec/key-handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nsxiv/exec/key-handler -------------------------------------------------------------------------------- /.config/nsxiv/exec/thumb-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nsxiv/exec/thumb-info -------------------------------------------------------------------------------- /.config/nsxiv/exec/win-title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nsxiv/exec/win-title -------------------------------------------------------------------------------- /.config/nvim/autoload/lightline/colorscheme/klassiker.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/autoload/lightline/colorscheme/klassiker.vim -------------------------------------------------------------------------------- /.config/nvim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/coc-settings.json -------------------------------------------------------------------------------- /.config/nvim/colors/klassiker.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/colors/klassiker.vim -------------------------------------------------------------------------------- /.config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init.vim -------------------------------------------------------------------------------- /.config/nvim/init/coding.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/coding.vim -------------------------------------------------------------------------------- /.config/nvim/init/commands.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/commands.vim -------------------------------------------------------------------------------- /.config/nvim/init/encrypt.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/encrypt.vim -------------------------------------------------------------------------------- /.config/nvim/init/filetypes.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/filetypes.vim -------------------------------------------------------------------------------- /.config/nvim/init/header.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/header.vim -------------------------------------------------------------------------------- /.config/nvim/init/keybindings.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/keybindings.vim -------------------------------------------------------------------------------- /.config/nvim/init/netrw.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/netrw.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/coc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/coc.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/goyo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/goyo.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/hexmode.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/hexmode.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/indentLine.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/indentLine.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/lightline.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/lightline.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/nvim-highlight-colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/nvim-highlight-colors.lua -------------------------------------------------------------------------------- /.config/nvim/init/plugins/vim-commentary.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/vim-commentary.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/vim-gitgutter.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/vim-gitgutter.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/vim-which-key.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/vim-which-key.vim -------------------------------------------------------------------------------- /.config/nvim/init/plugins/vimwiki.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/plugins/vimwiki.vim -------------------------------------------------------------------------------- /.config/nvim/init/reload.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/reload.vim -------------------------------------------------------------------------------- /.config/nvim/init/templates.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/templates.vim -------------------------------------------------------------------------------- /.config/nvim/init/templates/c.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/templates/c.tpl -------------------------------------------------------------------------------- /.config/nvim/init/templates/gpg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/templates/gpg.tpl -------------------------------------------------------------------------------- /.config/nvim/init/templates/lua.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/templates/lua.tpl -------------------------------------------------------------------------------- /.config/nvim/init/templates/md.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/templates/md.tpl -------------------------------------------------------------------------------- /.config/nvim/init/templates/py.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/templates/py.tpl -------------------------------------------------------------------------------- /.config/nvim/init/templates/sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/templates/sh.tpl -------------------------------------------------------------------------------- /.config/nvim/init/templates/vim.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/nvim/init/templates/vim.tpl -------------------------------------------------------------------------------- /.config/pacman/makepkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/pacman/makepkg.conf -------------------------------------------------------------------------------- /.config/paru/paru.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/paru/paru.conf -------------------------------------------------------------------------------- /.config/paru/pkgs_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/paru/pkgs_all.txt -------------------------------------------------------------------------------- /.config/paru/pkgs_explicit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/paru/pkgs_explicit.txt -------------------------------------------------------------------------------- /.config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/picom/picom.conf -------------------------------------------------------------------------------- /.config/polybar/config.d/audio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/audio.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/battery.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/battery.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/cpu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/cpu.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/date.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/date.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/fs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/fs.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/i3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/i3.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/ipc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/ipc.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/ipc_timer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/ipc_timer.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/memory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/memory.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/menu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/menu.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/network.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/network.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/script.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/script.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/temperature.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/temperature.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/tray.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/tray.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/xbacklight.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/xbacklight.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/xkeyboard.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/xkeyboard.ini -------------------------------------------------------------------------------- /.config/polybar/config.d/xwindow.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.d/xwindow.ini -------------------------------------------------------------------------------- /.config/polybar/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/polybar/config.ini -------------------------------------------------------------------------------- /.config/qutebrowser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/qutebrowser/config.py -------------------------------------------------------------------------------- /.config/qutebrowser/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/qutebrowser/default.css -------------------------------------------------------------------------------- /.config/ranger/colorschemes/klassiker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/ranger/colorschemes/klassiker.py -------------------------------------------------------------------------------- /.config/ranger/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/ranger/commands.py -------------------------------------------------------------------------------- /.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/ranger/rc.conf -------------------------------------------------------------------------------- /.config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/ranger/rifle.conf -------------------------------------------------------------------------------- /.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/ranger/scope.sh -------------------------------------------------------------------------------- /.config/systemd/user/aria2cd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/aria2cd.service -------------------------------------------------------------------------------- /.config/systemd/user/i3.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/i3.target -------------------------------------------------------------------------------- /.config/systemd/user/i3_autotiling.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/i3_autotiling.service -------------------------------------------------------------------------------- /.config/systemd/user/i3_defaults.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/i3_defaults.service -------------------------------------------------------------------------------- /.config/systemd/user/picom.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/picom.service -------------------------------------------------------------------------------- /.config/systemd/user/polybar.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/polybar.service -------------------------------------------------------------------------------- /.config/systemd/user/wacom.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/wacom.service -------------------------------------------------------------------------------- /.config/systemd/user/wallpaper.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/wallpaper.service -------------------------------------------------------------------------------- /.config/systemd/user/xautolock.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/xautolock.service -------------------------------------------------------------------------------- /.config/systemd/user/xhidecursor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/systemd/user/xhidecursor.service -------------------------------------------------------------------------------- /.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /.config/yt-dlp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/yt-dlp/config -------------------------------------------------------------------------------- /.config/zathura/klassiker.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/zathura/klassiker.theme -------------------------------------------------------------------------------- /.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/zathura/zathurarc -------------------------------------------------------------------------------- /.config/zsh/.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/zsh/.zprofile -------------------------------------------------------------------------------- /.config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.config/zsh/.zshrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.hushlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.hushlogin -------------------------------------------------------------------------------- /.local/share/applications/urxvtc.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/urxvtc.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-alsa.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-alsa.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-bookmarks.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-bookmarks.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-calculator.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-calculator.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-cdw.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-cdw.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-cmus.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-cmus.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-color-picker.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-color-picker.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-cpupower.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-cpupower.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-display.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-display.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-iptv.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-iptv.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-man.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-man.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-mount.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-mount.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-network-manager.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-network-manager.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-pacman.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-pacman.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-pass.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-pass.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-screenshot.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-screenshot.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-shortcuts.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-shortcuts.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-ssh.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-ssh.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-st.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-st.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-surf.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-surf.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-unicode-symbols.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-unicode-symbols.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-usb.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-usb.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-virtualbox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-virtualbox.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-w3m.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-w3m.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-windows.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-windows.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-xkeymou.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-xkeymou.desktop -------------------------------------------------------------------------------- /.local/share/applications/userapp-youtube.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/applications/userapp-youtube.desktop -------------------------------------------------------------------------------- /.local/share/mc/skins/klassiker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/mc/skins/klassiker.ini -------------------------------------------------------------------------------- /.local/share/tty/arch.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/arch.issue -------------------------------------------------------------------------------- /.local/share/tty/arch_solid.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/arch_solid.issue -------------------------------------------------------------------------------- /.local/share/tty/blank.issue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.local/share/tty/cinfo.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/cinfo.issue -------------------------------------------------------------------------------- /.local/share/tty/debian.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/debian.issue -------------------------------------------------------------------------------- /.local/share/tty/debian_red.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/debian_red.issue -------------------------------------------------------------------------------- /.local/share/tty/gentoo.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/gentoo.issue -------------------------------------------------------------------------------- /.local/share/tty/info.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/info.issue -------------------------------------------------------------------------------- /.local/share/tty/issue: -------------------------------------------------------------------------------- 1 | plain.issue -------------------------------------------------------------------------------- /.local/share/tty/manjaro.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/manjaro.issue -------------------------------------------------------------------------------- /.local/share/tty/pacman.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/pacman.issue -------------------------------------------------------------------------------- /.local/share/tty/plain.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/share/tty/plain.issue -------------------------------------------------------------------------------- /.local/state/w3m/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/state/w3m/config -------------------------------------------------------------------------------- /.local/state/w3m/keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.local/state/w3m/keymap -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/.zshenv -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdotx/dotfiles/HEAD/screenshot.png --------------------------------------------------------------------------------