├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── install ├── gnome-settings ├── notes.md ├── packages │ ├── arch │ │ ├── aur.list │ │ └── pac.list │ ├── snaps │ │ └── snap.list │ └── ubuntu │ │ └── pkg.list ├── windows │ ├── windows-setup.md │ ├── windows-terminal.json │ └── wsl-clipboard.sh └── x │ ├── dotfiles.sh │ ├── macos.sh │ ├── neovim.sh │ ├── nerdfonts.sh │ └── system.sh └── src ├── .config ├── X11 │ ├── xinitrc │ └── xresources ├── alacritty │ └── alacritty.yml ├── awesome │ ├── .stylua.toml │ ├── modules │ │ ├── config.lua │ │ └── keymaps.lua │ └── rc.lua ├── bookmarks │ └── urls.conf ├── fontconfig │ └── fonts.conf ├── ghostty │ └── config ├── git │ ├── config │ └── ignore ├── gtk-2.0 │ ├── gtkfilechooser.ini │ └── gtkrc-2.0 ├── gtk-3.0 │ ├── bookmarks │ └── settings.ini ├── htop │ └── htoprc ├── kitty │ ├── fonts │ │ ├── FiraCode.conf │ │ ├── Iosevka.conf │ │ ├── JetBrainsMono.conf │ │ └── UbuntuMono.conf │ ├── kitty.conf │ └── themes │ │ ├── custom.conf │ │ ├── dracula.conf │ │ ├── gruvbox.conf │ │ ├── monokai.conf │ │ ├── onedark.conf │ │ └── tokyonight.conf ├── nvim │ ├── init.lua │ ├── lazy-lock.json │ └── lua │ │ ├── config │ │ ├── autocmd.lua │ │ ├── keymaps.lua │ │ ├── lazy.lua │ │ ├── options.lua │ │ └── telescope.lua │ │ └── plugins │ │ ├── ai.lua │ │ ├── autoformat.lua │ │ ├── colorscheme.lua │ │ ├── editor.lua │ │ ├── lsp.lua │ │ ├── telescope.lua │ │ └── treesitter.lua ├── ranger │ ├── plugins │ │ ├── __init__.py │ │ └── icons │ │ │ ├── __init__.py │ │ │ └── devicons.py │ ├── rc.conf │ └── scope.sh ├── tmux │ ├── tmux.conf │ └── tmux.conf.bak ├── user-dirs.dirs ├── wget │ └── wgetrc ├── zathura │ └── zathurarc ├── zed │ ├── keymap.json │ └── settings.json └── zsh │ ├── .zshrc │ └── config │ ├── alias.sh │ ├── exports.sh │ └── scripts.sh ├── .local ├── bin │ ├── dmenu │ │ ├── dm-bookmarks │ │ └── dm-maim │ ├── maimscript │ ├── notion.sh │ ├── npm │ │ └── package.json │ ├── scripts │ │ └── remap │ └── statusbar │ │ ├── sb-battery │ │ ├── sb-clock │ │ ├── sb-cpuavg │ │ ├── sb-disk │ │ ├── sb-internet │ │ ├── sb-memory │ │ ├── sb-volume │ │ └── sb-weather └── src │ ├── dwm │ ├── Makefile │ ├── config.h │ ├── config.mk │ ├── drw.c │ ├── drw.h │ ├── dwm.1 │ ├── dwm.c │ ├── patches │ │ ├── dwm-actualfullscreen-20191112-cb3f58a.diff │ │ ├── dwm-alpha-20201019-61bb8b2.diff │ │ ├── dwm-alwaysfullscreen-6.1.diff │ │ ├── dwm-attachaside-20180126-db22360.diff │ │ ├── dwm-cfacts-vanitygaps-6.2_combo.diff │ │ ├── dwm-hide_vacant_tags-6.2.diff │ │ └── dwm-pertag-20200914-61bb8b2.diff │ ├── transient.c │ ├── util.c │ ├── util.h │ └── vanitygaps.c │ └── dwmblocks │ ├── Makefile │ ├── blocks.h │ └── dwmblocks.c ├── .zshrc └── Library └── Application Support └── Cursor └── User ├── keybindings.json └── settings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /install/gnome-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/gnome-settings -------------------------------------------------------------------------------- /install/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/notes.md -------------------------------------------------------------------------------- /install/packages/arch/aur.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/packages/arch/aur.list -------------------------------------------------------------------------------- /install/packages/arch/pac.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/packages/arch/pac.list -------------------------------------------------------------------------------- /install/packages/snaps/snap.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/packages/snaps/snap.list -------------------------------------------------------------------------------- /install/packages/ubuntu/pkg.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/packages/ubuntu/pkg.list -------------------------------------------------------------------------------- /install/windows/windows-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/windows/windows-setup.md -------------------------------------------------------------------------------- /install/windows/windows-terminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/windows/windows-terminal.json -------------------------------------------------------------------------------- /install/windows/wsl-clipboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/windows/wsl-clipboard.sh -------------------------------------------------------------------------------- /install/x/dotfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/x/dotfiles.sh -------------------------------------------------------------------------------- /install/x/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/x/macos.sh -------------------------------------------------------------------------------- /install/x/neovim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/x/neovim.sh -------------------------------------------------------------------------------- /install/x/nerdfonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/x/nerdfonts.sh -------------------------------------------------------------------------------- /install/x/system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/install/x/system.sh -------------------------------------------------------------------------------- /src/.config/X11/xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/X11/xinitrc -------------------------------------------------------------------------------- /src/.config/X11/xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/X11/xresources -------------------------------------------------------------------------------- /src/.config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /src/.config/awesome/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/awesome/.stylua.toml -------------------------------------------------------------------------------- /src/.config/awesome/modules/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/awesome/modules/config.lua -------------------------------------------------------------------------------- /src/.config/awesome/modules/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/awesome/modules/keymaps.lua -------------------------------------------------------------------------------- /src/.config/awesome/rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/awesome/rc.lua -------------------------------------------------------------------------------- /src/.config/bookmarks/urls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/bookmarks/urls.conf -------------------------------------------------------------------------------- /src/.config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /src/.config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/ghostty/config -------------------------------------------------------------------------------- /src/.config/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/git/config -------------------------------------------------------------------------------- /src/.config/git/ignore: -------------------------------------------------------------------------------- 1 | **/.claude/settings.local.json 2 | -------------------------------------------------------------------------------- /src/.config/gtk-2.0/gtkfilechooser.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/gtk-2.0/gtkfilechooser.ini -------------------------------------------------------------------------------- /src/.config/gtk-2.0/gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/gtk-2.0/gtkrc-2.0 -------------------------------------------------------------------------------- /src/.config/gtk-3.0/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/gtk-3.0/bookmarks -------------------------------------------------------------------------------- /src/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /src/.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/htop/htoprc -------------------------------------------------------------------------------- /src/.config/kitty/fonts/FiraCode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/fonts/FiraCode.conf -------------------------------------------------------------------------------- /src/.config/kitty/fonts/Iosevka.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/fonts/Iosevka.conf -------------------------------------------------------------------------------- /src/.config/kitty/fonts/JetBrainsMono.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/fonts/JetBrainsMono.conf -------------------------------------------------------------------------------- /src/.config/kitty/fonts/UbuntuMono.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/fonts/UbuntuMono.conf -------------------------------------------------------------------------------- /src/.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /src/.config/kitty/themes/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/themes/custom.conf -------------------------------------------------------------------------------- /src/.config/kitty/themes/dracula.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/themes/dracula.conf -------------------------------------------------------------------------------- /src/.config/kitty/themes/gruvbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/themes/gruvbox.conf -------------------------------------------------------------------------------- /src/.config/kitty/themes/monokai.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/themes/monokai.conf -------------------------------------------------------------------------------- /src/.config/kitty/themes/onedark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/themes/onedark.conf -------------------------------------------------------------------------------- /src/.config/kitty/themes/tokyonight.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/kitty/themes/tokyonight.conf -------------------------------------------------------------------------------- /src/.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/init.lua -------------------------------------------------------------------------------- /src/.config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /src/.config/nvim/lua/config/autocmd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/config/autocmd.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/config/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/config/telescope.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/plugins/ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/plugins/ai.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/plugins/autoformat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/plugins/autoformat.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/plugins/colorscheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/plugins/colorscheme.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/plugins/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/plugins/editor.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/plugins/lsp.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/plugins/telescope.lua -------------------------------------------------------------------------------- /src/.config/nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /src/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/.config/ranger/plugins/icons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/ranger/plugins/icons/__init__.py -------------------------------------------------------------------------------- /src/.config/ranger/plugins/icons/devicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/ranger/plugins/icons/devicons.py -------------------------------------------------------------------------------- /src/.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/ranger/rc.conf -------------------------------------------------------------------------------- /src/.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/ranger/scope.sh -------------------------------------------------------------------------------- /src/.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /src/.config/tmux/tmux.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/tmux/tmux.conf.bak -------------------------------------------------------------------------------- /src/.config/user-dirs.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/user-dirs.dirs -------------------------------------------------------------------------------- /src/.config/wget/wgetrc: -------------------------------------------------------------------------------- 1 | hsts-file=~/.cache/wget-hsts 2 | -------------------------------------------------------------------------------- /src/.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/zathura/zathurarc -------------------------------------------------------------------------------- /src/.config/zed/keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/zed/keymap.json -------------------------------------------------------------------------------- /src/.config/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/zed/settings.json -------------------------------------------------------------------------------- /src/.config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/zsh/.zshrc -------------------------------------------------------------------------------- /src/.config/zsh/config/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/zsh/config/alias.sh -------------------------------------------------------------------------------- /src/.config/zsh/config/exports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/zsh/config/exports.sh -------------------------------------------------------------------------------- /src/.config/zsh/config/scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.config/zsh/config/scripts.sh -------------------------------------------------------------------------------- /src/.local/bin/dmenu/dm-bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/dmenu/dm-bookmarks -------------------------------------------------------------------------------- /src/.local/bin/dmenu/dm-maim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/dmenu/dm-maim -------------------------------------------------------------------------------- /src/.local/bin/maimscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/maimscript -------------------------------------------------------------------------------- /src/.local/bin/notion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/notion.sh -------------------------------------------------------------------------------- /src/.local/bin/npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/npm/package.json -------------------------------------------------------------------------------- /src/.local/bin/scripts/remap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/scripts/remap -------------------------------------------------------------------------------- /src/.local/bin/statusbar/sb-battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/statusbar/sb-battery -------------------------------------------------------------------------------- /src/.local/bin/statusbar/sb-clock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/statusbar/sb-clock -------------------------------------------------------------------------------- /src/.local/bin/statusbar/sb-cpuavg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/statusbar/sb-cpuavg -------------------------------------------------------------------------------- /src/.local/bin/statusbar/sb-disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/statusbar/sb-disk -------------------------------------------------------------------------------- /src/.local/bin/statusbar/sb-internet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/statusbar/sb-internet -------------------------------------------------------------------------------- /src/.local/bin/statusbar/sb-memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/statusbar/sb-memory -------------------------------------------------------------------------------- /src/.local/bin/statusbar/sb-volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/statusbar/sb-volume -------------------------------------------------------------------------------- /src/.local/bin/statusbar/sb-weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/bin/statusbar/sb-weather -------------------------------------------------------------------------------- /src/.local/src/dwm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/Makefile -------------------------------------------------------------------------------- /src/.local/src/dwm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/config.h -------------------------------------------------------------------------------- /src/.local/src/dwm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/config.mk -------------------------------------------------------------------------------- /src/.local/src/dwm/drw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/drw.c -------------------------------------------------------------------------------- /src/.local/src/dwm/drw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/drw.h -------------------------------------------------------------------------------- /src/.local/src/dwm/dwm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/dwm.1 -------------------------------------------------------------------------------- /src/.local/src/dwm/dwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/dwm.c -------------------------------------------------------------------------------- /src/.local/src/dwm/patches/dwm-actualfullscreen-20191112-cb3f58a.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/patches/dwm-actualfullscreen-20191112-cb3f58a.diff -------------------------------------------------------------------------------- /src/.local/src/dwm/patches/dwm-alpha-20201019-61bb8b2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/patches/dwm-alpha-20201019-61bb8b2.diff -------------------------------------------------------------------------------- /src/.local/src/dwm/patches/dwm-alwaysfullscreen-6.1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/patches/dwm-alwaysfullscreen-6.1.diff -------------------------------------------------------------------------------- /src/.local/src/dwm/patches/dwm-attachaside-20180126-db22360.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/patches/dwm-attachaside-20180126-db22360.diff -------------------------------------------------------------------------------- /src/.local/src/dwm/patches/dwm-cfacts-vanitygaps-6.2_combo.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/patches/dwm-cfacts-vanitygaps-6.2_combo.diff -------------------------------------------------------------------------------- /src/.local/src/dwm/patches/dwm-hide_vacant_tags-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/patches/dwm-hide_vacant_tags-6.2.diff -------------------------------------------------------------------------------- /src/.local/src/dwm/patches/dwm-pertag-20200914-61bb8b2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/patches/dwm-pertag-20200914-61bb8b2.diff -------------------------------------------------------------------------------- /src/.local/src/dwm/transient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/transient.c -------------------------------------------------------------------------------- /src/.local/src/dwm/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/util.c -------------------------------------------------------------------------------- /src/.local/src/dwm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/util.h -------------------------------------------------------------------------------- /src/.local/src/dwm/vanitygaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwm/vanitygaps.c -------------------------------------------------------------------------------- /src/.local/src/dwmblocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwmblocks/Makefile -------------------------------------------------------------------------------- /src/.local/src/dwmblocks/blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwmblocks/blocks.h -------------------------------------------------------------------------------- /src/.local/src/dwmblocks/dwmblocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/.local/src/dwmblocks/dwmblocks.c -------------------------------------------------------------------------------- /src/.zshrc: -------------------------------------------------------------------------------- 1 | .config/zsh/.zshrc -------------------------------------------------------------------------------- /src/Library/Application Support/Cursor/User/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/Library/Application Support/Cursor/User/keybindings.json -------------------------------------------------------------------------------- /src/Library/Application Support/Cursor/User/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsione/dotfiles/HEAD/src/Library/Application Support/Cursor/User/settings.json --------------------------------------------------------------------------------