├── .gitignore ├── .gitmodules ├── Brewfile ├── LICENSE ├── README.md ├── apps ├── OSXTerminal │ ├── Apprentice.terminal │ ├── Gruvbox-Dark.terminal │ └── Solarized Dark.terminal ├── VSCode │ ├── keybindings.json │ └── settings.json ├── duplicity │ ├── backup │ ├── conf.gpg │ ├── crypt_conf │ ├── excludes │ ├── gdrive │ │ ├── conf │ │ └── credentials.gpg │ └── i3backupicon ├── dwmblocks │ └── scripts │ │ ├── backupicon │ │ ├── battery │ │ ├── jackd │ │ ├── mpd │ │ ├── pacupdate │ │ ├── sonic-pi │ │ ├── time │ │ ├── volume │ │ ├── weather │ │ └── wifi ├── iterm2 │ ├── Solarized Dark.itermcolors │ ├── Solarized Light.itermcolors │ ├── apprentice.itermcolors │ ├── com.googlecode.iterm2.plist │ └── gruvbox-dark.itermcolors ├── mpd │ └── mpd.conf ├── mpv │ ├── config.jack │ ├── config.pulse │ └── input.conf ├── picom.conf ├── profanity │ ├── profrc │ └── themes │ │ └── live ├── qutebrowser │ ├── autoconfig.yml │ ├── config.py │ ├── quickmarks │ └── shortcuts.py ├── ranger │ ├── commands.py │ ├── commands_full.py │ ├── rc.conf │ ├── rifle.conf │ ├── scope.sh │ └── shortcuts.conf ├── sonic-pi │ ├── init.rb │ ├── install_sonic-pi-tool │ ├── normal-dunst │ ├── snippets │ │ ├── bd.sps │ │ ├── boot.sps │ │ ├── clocks.sps │ │ ├── doriangray.sps │ │ ├── echo.sps │ │ ├── fx.sps │ │ ├── gate.sps │ │ ├── knit.sps │ │ ├── lambda.sps │ │ ├── live.sps │ │ ├── liveplus.sps │ │ ├── ll1.sps │ │ ├── ll5.sps │ │ ├── loads.sps │ │ ├── markov.sps │ │ ├── metropolis.sps │ │ ├── metropolism.sps │ │ ├── midi1.sps │ │ ├── midi2.sps │ │ ├── midic1.sps │ │ ├── midic2.sps │ │ ├── midicd1.sps │ │ ├── midicd2.sps │ │ ├── midicf.sps │ │ ├── midicmix.sps │ │ ├── midicr1.sps │ │ ├── midicr2.sps │ │ ├── midid1.sps │ │ ├── midid2.sps │ │ ├── midid3.sps │ │ ├── midid4.sps │ │ ├── pi.sps │ │ ├── pitchshift.sps │ │ ├── reverb.sps │ │ ├── ring.sps │ │ ├── rll.sps │ │ ├── safari.sps │ │ ├── slicer.sps │ │ ├── smp.sps │ │ └── wsynth.sps │ ├── sonic-pi-dunst │ ├── string_ext.rb │ ├── theme.properties.gruvbox │ └── theme.properties.nord ├── ssh │ └── config ├── timekpra │ └── mehrzeit └── wezterm │ └── wezterm.lua ├── arch ├── .asoundrc ├── install_yay ├── jack-post-start ├── jack-post-stop ├── jack-pre-start ├── jack-pre-stop └── set_zsh ├── arch_dependencies.apps ├── arch_dependencies.base ├── arch_dependencies.desktop ├── arch_dependencies.gnome ├── arch_dependencies.i3 ├── arch_dependencies.manjaro ├── arch_uninstall ├── bootstrap_arch ├── config.org ├── fonts ├── .uuid ├── Hack-Bold.ttf ├── Hack-BoldItalic.ttf ├── Hack-Italic.ttf ├── Hack-License.md ├── Hack-Regular.ttf ├── Ubuntu-C.ttf ├── icomoon-feather.ttf └── icomoon.ttf ├── images ├── lambdaphonic.png ├── lambdaphonic_gruvbox.png ├── man-woman-geek.jpg ├── noten.png ├── pacman.jpg ├── sheep-desktop.jpg ├── tron-legacy-wallpaper-08-2588.jpg └── wallpapers │ ├── background_0.png │ ├── background_1.png │ ├── background_1.png.orgic │ ├── background_2.png │ ├── background_3.png │ ├── carina.png │ ├── carina2.png │ ├── cat.png │ └── orion.png ├── install-profile ├── install-standalone ├── macos ├── meta ├── base.json ├── configs │ ├── alacritty.json │ ├── alsa.json │ ├── apt.linux.json │ ├── apt.windows10.json │ ├── arch_dependencies.apps.json │ ├── arch_dependencies.base.json │ ├── arch_dependencies.desktop.json │ ├── arch_dependencies.gnome.json │ ├── arch_dependencies.i3.json │ ├── binaries.linux.json │ ├── defaultapps.json │ ├── dev.json │ ├── duplicity.hint.json │ ├── duplicity.json │ ├── dwm.json │ ├── emacs.json │ ├── fish.linux.arch.json │ ├── fish.linux.json │ ├── fish.osx.json │ ├── fish.windows10.json │ ├── git.json │ ├── git.np4.json │ ├── go.json │ ├── homebrew.json │ ├── i3.json │ ├── kitty.json │ ├── leftwm.json │ ├── mpd.json │ ├── mpv.json │ ├── mutt.osx.json │ ├── neomutt.json │ ├── node.json │ ├── nvim.deps.json │ ├── nvim.linux.json │ ├── onepaq.json │ ├── osx_defaults.json │ ├── profanity.json │ ├── qutebrowser.json │ ├── rtv.json │ ├── ruby.json │ ├── s-nail.json │ ├── sonic-pi.json │ ├── spectacle.json │ ├── ssh.json │ ├── sublime.json │ ├── timekpra.json │ ├── tmux.linux.json │ ├── tmux.osx.json │ ├── vim.linux.json │ ├── vim.osx.json │ ├── vim.windows10.json │ ├── vscode.json │ ├── xmonad.json │ ├── zathura.json │ └── zsh.json ├── dotbot-aptget-sudo │ ├── .gitignore │ └── aptget.py └── profiles │ ├── linux │ ├── linux.arch │ ├── linux.arch.fast │ ├── linux.arch.wsl │ ├── macosx │ └── windows10 ├── nix ├── README.md ├── machines │ ├── arch │ │ ├── desktop.nix │ │ └── thinkmg.nix │ └── wsl │ │ └── home.nix └── modules │ └── home │ ├── .editorconfig │ ├── git.nix │ ├── git │ ├── gitconfig │ └── gitignore_global │ ├── hyprland.nix │ ├── hyprland │ ├── arch_dependencies │ ├── bindir │ │ ├── hlprop │ │ ├── launcher │ │ ├── screensaver │ │ ├── screenshot │ │ ├── touchpad_toggle │ │ └── xdg-portal-hyprland │ ├── hypr │ │ ├── binds.conf │ │ ├── desktop │ │ │ ├── machine.conf │ │ │ ├── monitors.conf │ │ │ └── startup.conf │ │ ├── env_var.conf │ │ ├── env_var_nvidia.conf │ │ ├── hyprland.desktop.conf │ │ ├── hyprland.thinkmg.conf │ │ ├── input.conf │ │ ├── rules.conf │ │ ├── settings.conf │ │ ├── theming.conf │ │ └── thinkmg │ │ │ ├── machine.conf │ │ │ ├── monitors.conf │ │ │ └── startup.conf │ ├── mako │ │ ├── conf │ │ │ ├── config │ │ │ └── config-dark │ │ ├── config │ │ └── icons │ │ │ ├── brightness-100.png │ │ │ ├── brightness-20.png │ │ │ ├── brightness-40.png │ │ │ ├── brightness-60.png │ │ │ ├── brightness-80.png │ │ │ ├── microphone-mute.png │ │ │ ├── microphone.png │ │ │ ├── volume-high.png │ │ │ ├── volume-low.png │ │ │ ├── volume-mid.png │ │ │ └── volume-mute.png │ ├── rofi │ │ ├── launcher.rasi │ │ ├── list_launcher.rasi │ │ ├── nightfox.rasi │ │ ├── powermenu │ │ │ ├── confirm.rasi │ │ │ ├── nightfox.rasi │ │ │ └── powermenu.rasi │ │ └── touch_launcher.rasi │ ├── sddm │ │ ├── etc │ │ │ ├── pam.d │ │ │ │ ├── howdy │ │ │ │ ├── swaylock │ │ │ │ └── system-local-login │ │ │ └── sddm.conf.d │ │ │ │ ├── 000-theme.conf │ │ │ │ └── 001-users.conf │ │ ├── scripts │ │ │ └── Xsetup │ │ └── usr │ │ │ └── share │ │ │ └── sddm │ │ │ └── themes │ │ │ └── sdt │ │ │ ├── Assets │ │ │ ├── Hibernate.svgz │ │ │ ├── Reboot.svgz │ │ │ ├── Shutdown.svgz │ │ │ ├── Suspend.svgz │ │ │ └── User.svgz │ │ │ ├── Components │ │ │ ├── Clock.qml │ │ │ ├── Input.qml │ │ │ ├── LoginForm.qml │ │ │ ├── SessionButton.qml │ │ │ ├── SystemButtons.qml │ │ │ ├── UserList.qml │ │ │ └── VirtualKeyboard.qml │ │ │ ├── Main.qml │ │ │ ├── metadata.desktop │ │ │ ├── theme.conf │ │ │ └── wallpaper.png │ ├── swayidle │ │ └── config │ ├── swaylock │ │ └── config │ ├── waybar │ │ ├── nightfox.css │ │ ├── scripts │ │ │ ├── brightness │ │ │ ├── volume │ │ │ └── waybar-wttr.py │ │ └── style.css │ └── wlogout │ │ ├── layout │ │ ├── lock-hover.png │ │ ├── lock.png │ │ ├── logout-hover.png │ │ ├── logout.png │ │ ├── power-hover.png │ │ ├── power.png │ │ ├── restart-hover.png │ │ ├── restart.png │ │ ├── sleep-hover.png │ │ ├── sleep.png │ │ └── style.css │ ├── kitty.nix │ ├── neovim.nix │ ├── neovim │ ├── .stylua.toml │ ├── .vsnip │ │ ├── package.json │ │ └── ruby.json │ ├── after │ │ ├── ftplugin │ │ │ ├── dashboard.lua │ │ │ ├── http.lua │ │ │ └── python.lua │ │ └── plugin │ │ │ └── treesitter.lua │ ├── ginit.vim │ ├── lua │ │ ├── magicmonty │ │ │ ├── config │ │ │ │ ├── cmp.lua │ │ │ │ ├── diagnostics.lua │ │ │ │ ├── lsp-colors.lua │ │ │ │ ├── lsp │ │ │ │ │ ├── jsonls.lua │ │ │ │ │ ├── lua_ls.lua │ │ │ │ │ ├── mappings.lua │ │ │ │ │ ├── marksman.lua │ │ │ │ │ ├── omnisharp.lua │ │ │ │ │ ├── pylsp.lua │ │ │ │ │ ├── solargraph.lua │ │ │ │ │ └── texlab.lua │ │ │ │ ├── lspkind.lua │ │ │ │ ├── lspsaga.lua │ │ │ │ ├── mason.lua │ │ │ │ ├── nightfox.lua │ │ │ │ ├── sonicpi │ │ │ │ │ └── config.lua │ │ │ │ ├── treesitter.lua │ │ │ │ └── trouble.lua │ │ │ ├── filetype_overrides.lua │ │ │ ├── highlights.lua │ │ │ ├── icons.lua │ │ │ ├── init.lua │ │ │ ├── jwt.lua │ │ │ ├── plugins.lua │ │ │ ├── remap.lua │ │ │ ├── settings.lua │ │ │ ├── snippets │ │ │ │ ├── all.lua │ │ │ │ ├── lua.lua │ │ │ │ └── tex.lua │ │ │ ├── theme.lua │ │ │ └── wsl_support.lua │ │ ├── plugins.lua │ │ ├── plugins │ │ │ ├── autopairs.lua │ │ │ ├── barbar.lua │ │ │ ├── color-converter.lua │ │ │ ├── comment.lua │ │ │ ├── dashboard.lua │ │ │ ├── dressing.lua │ │ │ ├── flit.lua │ │ │ ├── floaterm.lua │ │ │ ├── fugitive.lua │ │ │ ├── gitsigns.lua │ │ │ ├── indent_blankline.lua │ │ │ ├── lsp-zero.lua │ │ │ ├── lualine.lua │ │ │ ├── luasnip.lua │ │ │ ├── neorg.lua │ │ │ ├── nightfox.lua │ │ │ ├── notify.lua │ │ │ ├── nvim-colorizer.lua │ │ │ ├── nvim-tree.lua │ │ │ ├── rest.lua │ │ │ ├── sonicpi.lua │ │ │ ├── telescope-fzf-native.lua │ │ │ ├── telescope.lua │ │ │ ├── todo-comments.lua │ │ │ ├── treesitter.lua │ │ │ ├── undotree.lua │ │ │ ├── vim-tmux-navigator.lua │ │ │ ├── vimtex.lua │ │ │ ├── web-devicons.lua │ │ │ └── which-key.lua │ │ └── vim_ext.lua │ └── snippets │ │ ├── package.json │ │ └── snippets │ │ └── sonicpi.json │ ├── neovim_light.nix │ ├── shell_tools.nix │ ├── starship.nix │ ├── tmux.nix │ ├── tmux │ ├── nightfox.conf │ ├── solarized │ │ ├── tmuxcolors-256.conf │ │ ├── tmuxcolors-dark.conf │ │ └── tmuxcolors-light.conf │ ├── tmux.conf │ ├── tmux.live.conf │ └── tmuxinator │ │ ├── live.yml │ │ ├── playground.yml │ │ ├── socrates.yml │ │ └── wmfra.yml │ ├── waybar.nix │ ├── zathura.nix │ ├── zathura │ └── zathurarc │ ├── zsh.nix │ └── zsh │ ├── .zshrc │ ├── brn │ ├── ncdu.config │ ├── starship.toml │ └── tm ├── screenlayout ├── desktop.sh └── single.sh ├── scripts ├── configs ├── folders ├── shortcuts.sh └── start_sqlserver ├── shells ├── .poshtheme.omp.json ├── defaultapps └── profile ├── system └── etc │ ├── default │ └── grub │ ├── issue │ ├── kmscon │ └── kmscon.conf │ ├── mkinitcpio.conf │ ├── plymouth │ └── plymouthd.conf │ └── vconsole.conf └── windowmanager ├── .emoji ├── Xresources ├── applications ├── feh.desktop ├── qutebrowser.desktop ├── rdp.desktop ├── torrent.desktop ├── vim.desktop └── zathura.desktop ├── bindir ├── camtoggle ├── displayctl ├── displayselect ├── dmenuhandler ├── dmenupass ├── dmenuunicode ├── dwmexit ├── i3_bluetooth ├── i3battery ├── i3exit ├── i3jackd ├── i3mail ├── i3mpd ├── i3music ├── i3pacman ├── i3pacman.py ├── i3pi ├── i3resize ├── i3time ├── i3torrent ├── i3volume ├── i3weather ├── i3wifi ├── launcher ├── linkhandler ├── livejack ├── lmc ├── mpvsafe ├── notify_me ├── opout ├── optimize_pdf ├── pacupdate ├── pluralsight-dl ├── popweather ├── prepare_live_coding ├── pumpv ├── ranger-open ├── rdp ├── remaps ├── reset_skyblock ├── rip ├── setmon ├── showclip ├── start_screensaver ├── startjack ├── stop_screensaver ├── stopjack ├── terminal ├── toggle_pi ├── toggle_picom ├── toggle_screensaver ├── touchpad_toggle └── umpv ├── dunst ├── dunstrc ├── images │ ├── battery-charged.png │ ├── battery-charging.png │ ├── battery-full.png │ ├── battery-low.png │ ├── ethernet.png │ ├── heart.png │ ├── no-connection.png │ ├── notification.png │ └── wifi.png ├── reload └── sonicpi ├── i3-gnome ├── Makefile └── session │ ├── gnome-session-i3 │ ├── i3-gnome │ ├── i3-gnome-xsession.desktop │ ├── i3-gnome.desktop │ └── i3-gnome.session ├── i3 ├── autostart.sh ├── config ├── i3exit ├── prompt ├── qjackctl.jso ├── sonicpi.json └── start_dmenu ├── i3blocks └── config ├── leftwm ├── config.toml └── themes │ └── nightfox │ ├── background_0.png │ ├── background_1.png │ ├── background_2.png │ ├── change_to_tag │ ├── down │ ├── dunst │ └── dunstrc │ ├── liquid │ ├── layout.liquid │ ├── name.liquid │ ├── sizes.liquid │ └── template.liquid │ ├── misc │ └── configs │ │ ├── alacritty │ │ └── alacritty.yml │ │ ├── kitty │ │ ├── kitty.conf │ │ └── nightfox.conf │ │ └── leftwm │ │ └── config.toml │ ├── picom │ └── picom.conf │ ├── polybar │ ├── polybar-tray.config │ ├── polybar.config │ ├── polybar_tray.sh │ └── updates-pacman-aurhelper.sh │ ├── rofi │ ├── global │ │ ├── .gitignore │ │ ├── icons │ │ │ ├── ddg.svg │ │ │ ├── google.svg │ │ │ ├── history.svg │ │ │ ├── result.svg │ │ │ └── suggestion.svg │ │ ├── rofi-spotlight.sh │ │ ├── rofi.rasi │ │ └── web-search.py │ ├── launcher.rasi │ ├── list_launcher.rasi │ ├── powermenu.rasi │ ├── powermenu.sh │ └── touch_launcher.rasi │ ├── theme.toml │ └── up ├── mailcap ├── mimeapps.list ├── polybar ├── 95-battery.rules ├── battery-combined-udev.sh ├── config ├── launch └── ws-icon-list ├── sleep ├── forceautolock ├── lidlock@.service ├── logind.conf └── sleep.conf ├── udiskie └── config.yml └── xmonad ├── arch.dependencies ├── bin ├── greenclip_launcher ├── launcher ├── toggle_picom └── xmonadexit ├── config ├── autostart.sh ├── pacman-hooks │ ├── recompile-xmonad.hook │ └── recompile-xmonadh.hook ├── set_bg └── xmonad.hs ├── picom └── picom.conf ├── polybar ├── polybar-tray.config ├── polybar.config ├── polybar_tray.sh ├── up └── updates-pacman-aurhelper.sh ├── rofi ├── launcher.rasi ├── list_launcher.rasi ├── nightfox.rasi ├── powermenu │ ├── confirm.rasi │ ├── nightfox.rasi │ └── powermenu.rasi └── touch_launcher.rasi ├── wallpapers └── xmobar ├── scripts ├── backupicon ├── battery ├── jackd ├── mpd ├── pacupdate ├── sonic-pi ├── trayer-padding-icon └── wifi ├── xmobarrc ├── xmobarrc0 └── xmobarrc1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/.gitmodules -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/README.md -------------------------------------------------------------------------------- /apps/OSXTerminal/Apprentice.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/OSXTerminal/Apprentice.terminal -------------------------------------------------------------------------------- /apps/OSXTerminal/Gruvbox-Dark.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/OSXTerminal/Gruvbox-Dark.terminal -------------------------------------------------------------------------------- /apps/OSXTerminal/Solarized Dark.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/OSXTerminal/Solarized Dark.terminal -------------------------------------------------------------------------------- /apps/VSCode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/VSCode/keybindings.json -------------------------------------------------------------------------------- /apps/VSCode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/VSCode/settings.json -------------------------------------------------------------------------------- /apps/duplicity/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/duplicity/backup -------------------------------------------------------------------------------- /apps/duplicity/conf.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/duplicity/conf.gpg -------------------------------------------------------------------------------- /apps/duplicity/crypt_conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/duplicity/crypt_conf -------------------------------------------------------------------------------- /apps/duplicity/excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/duplicity/excludes -------------------------------------------------------------------------------- /apps/duplicity/gdrive/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/duplicity/gdrive/conf -------------------------------------------------------------------------------- /apps/duplicity/gdrive/credentials.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/duplicity/gdrive/credentials.gpg -------------------------------------------------------------------------------- /apps/duplicity/i3backupicon: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | cat /tmp/backupicon 2>/dev/null || echo "" 3 | -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/backupicon: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | cat /tmp/backupicon 2>/dev/null || echo "" 3 | -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/dwmblocks/scripts/battery -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/jackd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/dwmblocks/scripts/jackd -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/dwmblocks/scripts/mpd -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/pacupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/dwmblocks/scripts/pacupdate -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/sonic-pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/dwmblocks/scripts/sonic-pi -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/time: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo " 📆$(date '+ %a, %d.%m.%Y ⏰ %H:%M')" 4 | 5 | -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/dwmblocks/scripts/volume -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/dwmblocks/scripts/weather -------------------------------------------------------------------------------- /apps/dwmblocks/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/dwmblocks/scripts/wifi -------------------------------------------------------------------------------- /apps/iterm2/Solarized Dark.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/iterm2/Solarized Dark.itermcolors -------------------------------------------------------------------------------- /apps/iterm2/Solarized Light.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/iterm2/Solarized Light.itermcolors -------------------------------------------------------------------------------- /apps/iterm2/apprentice.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/iterm2/apprentice.itermcolors -------------------------------------------------------------------------------- /apps/iterm2/com.googlecode.iterm2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/iterm2/com.googlecode.iterm2.plist -------------------------------------------------------------------------------- /apps/iterm2/gruvbox-dark.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/iterm2/gruvbox-dark.itermcolors -------------------------------------------------------------------------------- /apps/mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/mpd/mpd.conf -------------------------------------------------------------------------------- /apps/mpv/config.jack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/mpv/config.jack -------------------------------------------------------------------------------- /apps/mpv/config.pulse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/mpv/config.pulse -------------------------------------------------------------------------------- /apps/mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/mpv/input.conf -------------------------------------------------------------------------------- /apps/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/picom.conf -------------------------------------------------------------------------------- /apps/profanity/profrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/profanity/profrc -------------------------------------------------------------------------------- /apps/profanity/themes/live: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/profanity/themes/live -------------------------------------------------------------------------------- /apps/qutebrowser/autoconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/qutebrowser/autoconfig.yml -------------------------------------------------------------------------------- /apps/qutebrowser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/qutebrowser/config.py -------------------------------------------------------------------------------- /apps/qutebrowser/quickmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/qutebrowser/quickmarks -------------------------------------------------------------------------------- /apps/qutebrowser/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/qutebrowser/shortcuts.py -------------------------------------------------------------------------------- /apps/ranger/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/ranger/commands.py -------------------------------------------------------------------------------- /apps/ranger/commands_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/ranger/commands_full.py -------------------------------------------------------------------------------- /apps/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/ranger/rc.conf -------------------------------------------------------------------------------- /apps/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/ranger/rifle.conf -------------------------------------------------------------------------------- /apps/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/ranger/scope.sh -------------------------------------------------------------------------------- /apps/ranger/shortcuts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/ranger/shortcuts.conf -------------------------------------------------------------------------------- /apps/sonic-pi/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/init.rb -------------------------------------------------------------------------------- /apps/sonic-pi/install_sonic-pi-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/install_sonic-pi-tool -------------------------------------------------------------------------------- /apps/sonic-pi/normal-dunst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/normal-dunst -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/bd.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/bd.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/boot.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/boot.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/clocks.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/clocks.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/doriangray.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/doriangray.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/echo.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/echo.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/fx.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/fx.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/gate.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/gate.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/knit.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/knit.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/lambda.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/lambda.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/live.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/live.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/liveplus.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/liveplus.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/ll1.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/ll1.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/ll5.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/ll5.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/loads.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/loads.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/markov.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/markov.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/metropolis.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/metropolis.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/metropolism.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/metropolism.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midi1.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midi1.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midi2.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midi2.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midic1.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midic1.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midic2.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midic2.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midicd1.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midicd1.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midicd2.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midicd2.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midicf.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midicf.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midicmix.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midicmix.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midicr1.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midicr1.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midicr2.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midicr2.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midid1.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midid1.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midid2.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midid2.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midid3.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midid3.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/midid4.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/midid4.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/pi.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/pi.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/pitchshift.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/pitchshift.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/reverb.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/reverb.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/ring.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/ring.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/rll.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/rll.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/safari.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/safari.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/slicer.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/slicer.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/smp.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/smp.sps -------------------------------------------------------------------------------- /apps/sonic-pi/snippets/wsynth.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/snippets/wsynth.sps -------------------------------------------------------------------------------- /apps/sonic-pi/sonic-pi-dunst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/sonic-pi-dunst -------------------------------------------------------------------------------- /apps/sonic-pi/string_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/string_ext.rb -------------------------------------------------------------------------------- /apps/sonic-pi/theme.properties.gruvbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/theme.properties.gruvbox -------------------------------------------------------------------------------- /apps/sonic-pi/theme.properties.nord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/sonic-pi/theme.properties.nord -------------------------------------------------------------------------------- /apps/ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/ssh/config -------------------------------------------------------------------------------- /apps/timekpra/mehrzeit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/timekpra/mehrzeit -------------------------------------------------------------------------------- /apps/wezterm/wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/apps/wezterm/wezterm.lua -------------------------------------------------------------------------------- /arch/.asoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch/.asoundrc -------------------------------------------------------------------------------- /arch/install_yay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch/install_yay -------------------------------------------------------------------------------- /arch/jack-post-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch/jack-post-start -------------------------------------------------------------------------------- /arch/jack-post-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch/jack-post-stop -------------------------------------------------------------------------------- /arch/jack-pre-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch/jack-pre-start -------------------------------------------------------------------------------- /arch/jack-pre-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch/jack-pre-stop -------------------------------------------------------------------------------- /arch/set_zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch/set_zsh -------------------------------------------------------------------------------- /arch_dependencies.apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch_dependencies.apps -------------------------------------------------------------------------------- /arch_dependencies.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch_dependencies.base -------------------------------------------------------------------------------- /arch_dependencies.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch_dependencies.desktop -------------------------------------------------------------------------------- /arch_dependencies.gnome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch_dependencies.gnome -------------------------------------------------------------------------------- /arch_dependencies.i3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch_dependencies.i3 -------------------------------------------------------------------------------- /arch_dependencies.manjaro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/arch_dependencies.manjaro -------------------------------------------------------------------------------- /arch_uninstall: -------------------------------------------------------------------------------- 1 | palemoon-bin 2 | morc_menu 3 | -------------------------------------------------------------------------------- /bootstrap_arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/bootstrap_arch -------------------------------------------------------------------------------- /config.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/config.org -------------------------------------------------------------------------------- /fonts/.uuid: -------------------------------------------------------------------------------- 1 | fe09e1ee-2675-40e5-8bfc-c3236d12d90d -------------------------------------------------------------------------------- /fonts/Hack-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/fonts/Hack-Bold.ttf -------------------------------------------------------------------------------- /fonts/Hack-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/fonts/Hack-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Hack-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/fonts/Hack-Italic.ttf -------------------------------------------------------------------------------- /fonts/Hack-License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/fonts/Hack-License.md -------------------------------------------------------------------------------- /fonts/Hack-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/fonts/Hack-Regular.ttf -------------------------------------------------------------------------------- /fonts/Ubuntu-C.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/fonts/Ubuntu-C.ttf -------------------------------------------------------------------------------- /fonts/icomoon-feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/fonts/icomoon-feather.ttf -------------------------------------------------------------------------------- /fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/fonts/icomoon.ttf -------------------------------------------------------------------------------- /images/lambdaphonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/lambdaphonic.png -------------------------------------------------------------------------------- /images/lambdaphonic_gruvbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/lambdaphonic_gruvbox.png -------------------------------------------------------------------------------- /images/man-woman-geek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/man-woman-geek.jpg -------------------------------------------------------------------------------- /images/noten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/noten.png -------------------------------------------------------------------------------- /images/pacman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/pacman.jpg -------------------------------------------------------------------------------- /images/sheep-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/sheep-desktop.jpg -------------------------------------------------------------------------------- /images/tron-legacy-wallpaper-08-2588.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/tron-legacy-wallpaper-08-2588.jpg -------------------------------------------------------------------------------- /images/wallpapers/background_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/background_0.png -------------------------------------------------------------------------------- /images/wallpapers/background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/background_1.png -------------------------------------------------------------------------------- /images/wallpapers/background_1.png.orgic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/background_1.png.orgic -------------------------------------------------------------------------------- /images/wallpapers/background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/background_2.png -------------------------------------------------------------------------------- /images/wallpapers/background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/background_3.png -------------------------------------------------------------------------------- /images/wallpapers/carina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/carina.png -------------------------------------------------------------------------------- /images/wallpapers/carina2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/carina2.png -------------------------------------------------------------------------------- /images/wallpapers/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/cat.png -------------------------------------------------------------------------------- /images/wallpapers/orion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/images/wallpapers/orion.png -------------------------------------------------------------------------------- /install-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/install-profile -------------------------------------------------------------------------------- /install-standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/install-standalone -------------------------------------------------------------------------------- /macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/macos -------------------------------------------------------------------------------- /meta/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/base.json -------------------------------------------------------------------------------- /meta/configs/alacritty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/alacritty.json -------------------------------------------------------------------------------- /meta/configs/alsa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/alsa.json -------------------------------------------------------------------------------- /meta/configs/apt.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/apt.linux.json -------------------------------------------------------------------------------- /meta/configs/apt.windows10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/apt.windows10.json -------------------------------------------------------------------------------- /meta/configs/arch_dependencies.apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/arch_dependencies.apps.json -------------------------------------------------------------------------------- /meta/configs/arch_dependencies.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/arch_dependencies.base.json -------------------------------------------------------------------------------- /meta/configs/arch_dependencies.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/arch_dependencies.desktop.json -------------------------------------------------------------------------------- /meta/configs/arch_dependencies.gnome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/arch_dependencies.gnome.json -------------------------------------------------------------------------------- /meta/configs/arch_dependencies.i3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/arch_dependencies.i3.json -------------------------------------------------------------------------------- /meta/configs/binaries.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/binaries.linux.json -------------------------------------------------------------------------------- /meta/configs/defaultapps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/defaultapps.json -------------------------------------------------------------------------------- /meta/configs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/dev.json -------------------------------------------------------------------------------- /meta/configs/duplicity.hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/duplicity.hint.json -------------------------------------------------------------------------------- /meta/configs/duplicity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/duplicity.json -------------------------------------------------------------------------------- /meta/configs/dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/dwm.json -------------------------------------------------------------------------------- /meta/configs/emacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/emacs.json -------------------------------------------------------------------------------- /meta/configs/fish.linux.arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/fish.linux.arch.json -------------------------------------------------------------------------------- /meta/configs/fish.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/fish.linux.json -------------------------------------------------------------------------------- /meta/configs/fish.osx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/fish.osx.json -------------------------------------------------------------------------------- /meta/configs/fish.windows10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/fish.windows10.json -------------------------------------------------------------------------------- /meta/configs/git.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/git.json -------------------------------------------------------------------------------- /meta/configs/git.np4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/git.np4.json -------------------------------------------------------------------------------- /meta/configs/go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/go.json -------------------------------------------------------------------------------- /meta/configs/homebrew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/homebrew.json -------------------------------------------------------------------------------- /meta/configs/i3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/i3.json -------------------------------------------------------------------------------- /meta/configs/kitty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/kitty.json -------------------------------------------------------------------------------- /meta/configs/leftwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/leftwm.json -------------------------------------------------------------------------------- /meta/configs/mpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/mpd.json -------------------------------------------------------------------------------- /meta/configs/mpv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/mpv.json -------------------------------------------------------------------------------- /meta/configs/mutt.osx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/mutt.osx.json -------------------------------------------------------------------------------- /meta/configs/neomutt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/neomutt.json -------------------------------------------------------------------------------- /meta/configs/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/node.json -------------------------------------------------------------------------------- /meta/configs/nvim.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/nvim.deps.json -------------------------------------------------------------------------------- /meta/configs/nvim.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/nvim.linux.json -------------------------------------------------------------------------------- /meta/configs/onepaq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/onepaq.json -------------------------------------------------------------------------------- /meta/configs/osx_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/osx_defaults.json -------------------------------------------------------------------------------- /meta/configs/profanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/profanity.json -------------------------------------------------------------------------------- /meta/configs/qutebrowser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/qutebrowser.json -------------------------------------------------------------------------------- /meta/configs/rtv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/rtv.json -------------------------------------------------------------------------------- /meta/configs/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/ruby.json -------------------------------------------------------------------------------- /meta/configs/s-nail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/s-nail.json -------------------------------------------------------------------------------- /meta/configs/sonic-pi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/sonic-pi.json -------------------------------------------------------------------------------- /meta/configs/spectacle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/spectacle.json -------------------------------------------------------------------------------- /meta/configs/ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/ssh.json -------------------------------------------------------------------------------- /meta/configs/sublime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/sublime.json -------------------------------------------------------------------------------- /meta/configs/timekpra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/timekpra.json -------------------------------------------------------------------------------- /meta/configs/tmux.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/tmux.linux.json -------------------------------------------------------------------------------- /meta/configs/tmux.osx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/tmux.osx.json -------------------------------------------------------------------------------- /meta/configs/vim.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/vim.linux.json -------------------------------------------------------------------------------- /meta/configs/vim.osx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/vim.osx.json -------------------------------------------------------------------------------- /meta/configs/vim.windows10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/vim.windows10.json -------------------------------------------------------------------------------- /meta/configs/vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/vscode.json -------------------------------------------------------------------------------- /meta/configs/xmonad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/xmonad.json -------------------------------------------------------------------------------- /meta/configs/zathura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/zathura.json -------------------------------------------------------------------------------- /meta/configs/zsh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/configs/zsh.json -------------------------------------------------------------------------------- /meta/dotbot-aptget-sudo/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /meta/dotbot-aptget-sudo/aptget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/dotbot-aptget-sudo/aptget.py -------------------------------------------------------------------------------- /meta/profiles/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/profiles/linux -------------------------------------------------------------------------------- /meta/profiles/linux.arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/profiles/linux.arch -------------------------------------------------------------------------------- /meta/profiles/linux.arch.fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/profiles/linux.arch.fast -------------------------------------------------------------------------------- /meta/profiles/linux.arch.wsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/profiles/linux.arch.wsl -------------------------------------------------------------------------------- /meta/profiles/macosx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/profiles/macosx -------------------------------------------------------------------------------- /meta/profiles/windows10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/meta/profiles/windows10 -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/machines/arch/desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/machines/arch/desktop.nix -------------------------------------------------------------------------------- /nix/machines/arch/thinkmg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/machines/arch/thinkmg.nix -------------------------------------------------------------------------------- /nix/machines/wsl/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/machines/wsl/home.nix -------------------------------------------------------------------------------- /nix/modules/home/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/.editorconfig -------------------------------------------------------------------------------- /nix/modules/home/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/git.nix -------------------------------------------------------------------------------- /nix/modules/home/git/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/git/gitconfig -------------------------------------------------------------------------------- /nix/modules/home/git/gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/git/gitignore_global -------------------------------------------------------------------------------- /nix/modules/home/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland.nix -------------------------------------------------------------------------------- /nix/modules/home/hyprland/arch_dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/arch_dependencies -------------------------------------------------------------------------------- /nix/modules/home/hyprland/bindir/hlprop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/bindir/hlprop -------------------------------------------------------------------------------- /nix/modules/home/hyprland/bindir/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/bindir/launcher -------------------------------------------------------------------------------- /nix/modules/home/hyprland/bindir/screensaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/bindir/screensaver -------------------------------------------------------------------------------- /nix/modules/home/hyprland/bindir/screenshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/bindir/screenshot -------------------------------------------------------------------------------- /nix/modules/home/hyprland/bindir/touchpad_toggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/bindir/touchpad_toggle -------------------------------------------------------------------------------- /nix/modules/home/hyprland/bindir/xdg-portal-hyprland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/bindir/xdg-portal-hyprland -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/binds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/binds.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/desktop/machine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/desktop/machine.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/desktop/monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/desktop/monitors.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/desktop/startup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/desktop/startup.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/env_var.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/env_var.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/env_var_nvidia.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/env_var_nvidia.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/hyprland.desktop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/hyprland.desktop.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/hyprland.thinkmg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/hyprland.thinkmg.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/input.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/rules.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/settings.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/theming.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/theming.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/thinkmg/machine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/thinkmg/machine.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/thinkmg/monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/thinkmg/monitors.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/hypr/thinkmg/startup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/hypr/thinkmg/startup.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/conf/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/conf/config -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/conf/config-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/conf/config-dark -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/config: -------------------------------------------------------------------------------- 1 | /home/mgondermann/.config/mako/conf/config-dark -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/brightness-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/brightness-100.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/brightness-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/brightness-20.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/brightness-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/brightness-40.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/brightness-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/brightness-60.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/brightness-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/brightness-80.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/microphone-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/microphone-mute.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/microphone.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/volume-high.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/volume-low.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/volume-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/volume-mid.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/mako/icons/volume-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/mako/icons/volume-mute.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/rofi/launcher.rasi: -------------------------------------------------------------------------------- 1 | touch_launcher.rasi -------------------------------------------------------------------------------- /nix/modules/home/hyprland/rofi/list_launcher.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/rofi/list_launcher.rasi -------------------------------------------------------------------------------- /nix/modules/home/hyprland/rofi/nightfox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/rofi/nightfox.rasi -------------------------------------------------------------------------------- /nix/modules/home/hyprland/rofi/powermenu/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/rofi/powermenu/confirm.rasi -------------------------------------------------------------------------------- /nix/modules/home/hyprland/rofi/powermenu/nightfox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/rofi/powermenu/nightfox.rasi -------------------------------------------------------------------------------- /nix/modules/home/hyprland/rofi/powermenu/powermenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/rofi/powermenu/powermenu.rasi -------------------------------------------------------------------------------- /nix/modules/home/hyprland/rofi/touch_launcher.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/rofi/touch_launcher.rasi -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/etc/pam.d/howdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/etc/pam.d/howdy -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/etc/pam.d/swaylock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/etc/pam.d/swaylock -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/etc/pam.d/system-local-login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/etc/pam.d/system-local-login -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/etc/sddm.conf.d/000-theme.conf: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Current=sdt 3 | -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/etc/sddm.conf.d/001-users.conf: -------------------------------------------------------------------------------- 1 | [Users] 2 | MaximumUid=1100 3 | -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/scripts/Xsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/scripts/Xsetup -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/Hibernate.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/Hibernate.svgz -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/Reboot.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/Reboot.svgz -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/Shutdown.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/Shutdown.svgz -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/Suspend.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/Suspend.svgz -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/User.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Assets/User.svgz -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/Clock.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/Clock.qml -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/Input.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/Input.qml -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/LoginForm.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/LoginForm.qml -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/SessionButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/SessionButton.qml -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/SystemButtons.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/SystemButtons.qml -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/UserList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/UserList.qml -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/VirtualKeyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Components/VirtualKeyboard.qml -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/Main.qml -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/metadata.desktop -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/theme.conf -------------------------------------------------------------------------------- /nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/sddm/usr/share/sddm/themes/sdt/wallpaper.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/swayidle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/swayidle/config -------------------------------------------------------------------------------- /nix/modules/home/hyprland/swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/swaylock/config -------------------------------------------------------------------------------- /nix/modules/home/hyprland/waybar/nightfox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/waybar/nightfox.css -------------------------------------------------------------------------------- /nix/modules/home/hyprland/waybar/scripts/brightness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/waybar/scripts/brightness -------------------------------------------------------------------------------- /nix/modules/home/hyprland/waybar/scripts/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/waybar/scripts/volume -------------------------------------------------------------------------------- /nix/modules/home/hyprland/waybar/scripts/waybar-wttr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/waybar/scripts/waybar-wttr.py -------------------------------------------------------------------------------- /nix/modules/home/hyprland/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/waybar/style.css -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/layout -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/lock-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/lock-hover.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/lock.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/logout-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/logout-hover.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/logout.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/power-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/power-hover.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/power.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/restart-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/restart-hover.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/restart.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/sleep-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/sleep-hover.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/sleep.png -------------------------------------------------------------------------------- /nix/modules/home/hyprland/wlogout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/hyprland/wlogout/style.css -------------------------------------------------------------------------------- /nix/modules/home/kitty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/kitty.nix -------------------------------------------------------------------------------- /nix/modules/home/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim.nix -------------------------------------------------------------------------------- /nix/modules/home/neovim/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/.stylua.toml -------------------------------------------------------------------------------- /nix/modules/home/neovim/.vsnip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/.vsnip/package.json -------------------------------------------------------------------------------- /nix/modules/home/neovim/.vsnip/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/.vsnip/ruby.json -------------------------------------------------------------------------------- /nix/modules/home/neovim/after/ftplugin/dashboard.lua: -------------------------------------------------------------------------------- 1 | -- vim.cmd [[ let b:indent_blankline_enabled = v:false ]] 2 | -------------------------------------------------------------------------------- /nix/modules/home/neovim/after/ftplugin/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/after/ftplugin/http.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/after/ftplugin/python.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/after/ftplugin/python.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/after/plugin/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/after/plugin/treesitter.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/ginit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/ginit.vim -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/cmp.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/diagnostics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/diagnostics.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp-colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp-colors.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp/jsonls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp/jsonls.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp/lua_ls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp/lua_ls.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp/mappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp/mappings.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp/marksman.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp/marksman.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp/omnisharp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp/omnisharp.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp/pylsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp/pylsp.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp/solargraph.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp/solargraph.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lsp/texlab.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lsp/texlab.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lspkind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lspkind.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/lspsaga.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/lspsaga.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/mason.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/mason.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/nightfox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/nightfox.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/sonicpi/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/sonicpi/config.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/treesitter.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/config/trouble.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/config/trouble.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/filetype_overrides.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/filetype_overrides.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/highlights.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/highlights.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/icons.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/init.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/jwt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/jwt.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/plugins.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/remap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/remap.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/settings.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/snippets/all.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/snippets/all.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/snippets/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/snippets/lua.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/snippets/tex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/snippets/tex.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/theme.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/magicmonty/wsl_support.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/magicmonty/wsl_support.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/autopairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/autopairs.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/barbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/barbar.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/color-converter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/color-converter.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/comment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/comment.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/dashboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/dashboard.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/dressing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/dressing.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/flit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/flit.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/floaterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/floaterm.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/fugitive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/fugitive.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/gitsigns.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/indent_blankline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/indent_blankline.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/lsp-zero.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/lsp-zero.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/lualine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/lualine.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/luasnip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/luasnip.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/neorg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/neorg.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/nightfox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/nightfox.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/notify.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/nvim-colorizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/nvim-colorizer.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/nvim-tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/nvim-tree.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/rest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/rest.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/sonicpi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/sonicpi.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/telescope-fzf-native.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/telescope-fzf-native.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/telescope.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/todo-comments.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/todo-comments.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/undotree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/undotree.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/vim-tmux-navigator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/vim-tmux-navigator.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/vimtex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/vimtex.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/web-devicons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/web-devicons.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/plugins/which-key.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/plugins/which-key.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/lua/vim_ext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/lua/vim_ext.lua -------------------------------------------------------------------------------- /nix/modules/home/neovim/snippets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/snippets/package.json -------------------------------------------------------------------------------- /nix/modules/home/neovim/snippets/snippets/sonicpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim/snippets/snippets/sonicpi.json -------------------------------------------------------------------------------- /nix/modules/home/neovim_light.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/neovim_light.nix -------------------------------------------------------------------------------- /nix/modules/home/shell_tools.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/shell_tools.nix -------------------------------------------------------------------------------- /nix/modules/home/starship.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/starship.nix -------------------------------------------------------------------------------- /nix/modules/home/tmux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux.nix -------------------------------------------------------------------------------- /nix/modules/home/tmux/nightfox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/nightfox.conf -------------------------------------------------------------------------------- /nix/modules/home/tmux/solarized/tmuxcolors-256.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/solarized/tmuxcolors-256.conf -------------------------------------------------------------------------------- /nix/modules/home/tmux/solarized/tmuxcolors-dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/solarized/tmuxcolors-dark.conf -------------------------------------------------------------------------------- /nix/modules/home/tmux/solarized/tmuxcolors-light.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/solarized/tmuxcolors-light.conf -------------------------------------------------------------------------------- /nix/modules/home/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/tmux.conf -------------------------------------------------------------------------------- /nix/modules/home/tmux/tmux.live.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/tmux.live.conf -------------------------------------------------------------------------------- /nix/modules/home/tmux/tmuxinator/live.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/tmuxinator/live.yml -------------------------------------------------------------------------------- /nix/modules/home/tmux/tmuxinator/playground.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/tmuxinator/playground.yml -------------------------------------------------------------------------------- /nix/modules/home/tmux/tmuxinator/socrates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/tmuxinator/socrates.yml -------------------------------------------------------------------------------- /nix/modules/home/tmux/tmuxinator/wmfra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/tmux/tmuxinator/wmfra.yml -------------------------------------------------------------------------------- /nix/modules/home/waybar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/waybar.nix -------------------------------------------------------------------------------- /nix/modules/home/zathura.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/zathura.nix -------------------------------------------------------------------------------- /nix/modules/home/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/zathura/zathurarc -------------------------------------------------------------------------------- /nix/modules/home/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/zsh.nix -------------------------------------------------------------------------------- /nix/modules/home/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/zsh/.zshrc -------------------------------------------------------------------------------- /nix/modules/home/zsh/brn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/zsh/brn -------------------------------------------------------------------------------- /nix/modules/home/zsh/ncdu.config: -------------------------------------------------------------------------------- 1 | --one-file-system 2 | --exclude-kernfs 3 | --color dark 4 | -------------------------------------------------------------------------------- /nix/modules/home/zsh/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/zsh/starship.toml -------------------------------------------------------------------------------- /nix/modules/home/zsh/tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/nix/modules/home/zsh/tm -------------------------------------------------------------------------------- /screenlayout/desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/screenlayout/desktop.sh -------------------------------------------------------------------------------- /screenlayout/single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/screenlayout/single.sh -------------------------------------------------------------------------------- /scripts/configs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/scripts/configs -------------------------------------------------------------------------------- /scripts/folders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/scripts/folders -------------------------------------------------------------------------------- /scripts/shortcuts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/scripts/shortcuts.sh -------------------------------------------------------------------------------- /scripts/start_sqlserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/scripts/start_sqlserver -------------------------------------------------------------------------------- /shells/.poshtheme.omp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/shells/.poshtheme.omp.json -------------------------------------------------------------------------------- /shells/defaultapps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/shells/defaultapps -------------------------------------------------------------------------------- /shells/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/shells/profile -------------------------------------------------------------------------------- /system/etc/default/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/system/etc/default/grub -------------------------------------------------------------------------------- /system/etc/issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/system/etc/issue -------------------------------------------------------------------------------- /system/etc/kmscon/kmscon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/system/etc/kmscon/kmscon.conf -------------------------------------------------------------------------------- /system/etc/mkinitcpio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/system/etc/mkinitcpio.conf -------------------------------------------------------------------------------- /system/etc/plymouth/plymouthd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/system/etc/plymouth/plymouthd.conf -------------------------------------------------------------------------------- /system/etc/vconsole.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/system/etc/vconsole.conf -------------------------------------------------------------------------------- /windowmanager/.emoji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/.emoji -------------------------------------------------------------------------------- /windowmanager/Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/Xresources -------------------------------------------------------------------------------- /windowmanager/applications/feh.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=feh image viewer 4 | Exec=/usr/bin/feh %u 5 | -------------------------------------------------------------------------------- /windowmanager/applications/qutebrowser.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/applications/qutebrowser.desktop -------------------------------------------------------------------------------- /windowmanager/applications/rdp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/applications/rdp.desktop -------------------------------------------------------------------------------- /windowmanager/applications/torrent.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Torrent 4 | Exec=/usr/bin/env transadd %U 5 | -------------------------------------------------------------------------------- /windowmanager/applications/vim.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Vim 4 | Exec=kitty -e nvim %u 5 | -------------------------------------------------------------------------------- /windowmanager/applications/zathura.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/applications/zathura.desktop -------------------------------------------------------------------------------- /windowmanager/bindir/camtoggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/camtoggle -------------------------------------------------------------------------------- /windowmanager/bindir/displayctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/displayctl -------------------------------------------------------------------------------- /windowmanager/bindir/displayselect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/displayselect -------------------------------------------------------------------------------- /windowmanager/bindir/dmenuhandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/dmenuhandler -------------------------------------------------------------------------------- /windowmanager/bindir/dmenupass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/dmenupass -------------------------------------------------------------------------------- /windowmanager/bindir/dmenuunicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/dmenuunicode -------------------------------------------------------------------------------- /windowmanager/bindir/dwmexit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/dwmexit -------------------------------------------------------------------------------- /windowmanager/bindir/i3_bluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3_bluetooth -------------------------------------------------------------------------------- /windowmanager/bindir/i3battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3battery -------------------------------------------------------------------------------- /windowmanager/bindir/i3exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3exit -------------------------------------------------------------------------------- /windowmanager/bindir/i3jackd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3jackd -------------------------------------------------------------------------------- /windowmanager/bindir/i3mail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3mail -------------------------------------------------------------------------------- /windowmanager/bindir/i3mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3mpd -------------------------------------------------------------------------------- /windowmanager/bindir/i3music: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3music -------------------------------------------------------------------------------- /windowmanager/bindir/i3pacman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3pacman -------------------------------------------------------------------------------- /windowmanager/bindir/i3pacman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3pacman.py -------------------------------------------------------------------------------- /windowmanager/bindir/i3pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3pi -------------------------------------------------------------------------------- /windowmanager/bindir/i3resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3resize -------------------------------------------------------------------------------- /windowmanager/bindir/i3time: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo " 📆$(date '+ %a, %d.%m.%Y ⏰ %H:%M') " 4 | 5 | -------------------------------------------------------------------------------- /windowmanager/bindir/i3torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3torrent -------------------------------------------------------------------------------- /windowmanager/bindir/i3volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3volume -------------------------------------------------------------------------------- /windowmanager/bindir/i3weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3weather -------------------------------------------------------------------------------- /windowmanager/bindir/i3wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/i3wifi -------------------------------------------------------------------------------- /windowmanager/bindir/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/launcher -------------------------------------------------------------------------------- /windowmanager/bindir/linkhandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/linkhandler -------------------------------------------------------------------------------- /windowmanager/bindir/livejack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/livejack -------------------------------------------------------------------------------- /windowmanager/bindir/lmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/lmc -------------------------------------------------------------------------------- /windowmanager/bindir/mpvsafe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/mpvsafe -------------------------------------------------------------------------------- /windowmanager/bindir/notify_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/notify_me -------------------------------------------------------------------------------- /windowmanager/bindir/opout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/opout -------------------------------------------------------------------------------- /windowmanager/bindir/optimize_pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/optimize_pdf -------------------------------------------------------------------------------- /windowmanager/bindir/pacupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/pacupdate -------------------------------------------------------------------------------- /windowmanager/bindir/pluralsight-dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/pluralsight-dl -------------------------------------------------------------------------------- /windowmanager/bindir/popweather: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cat ~/.weatherreport && read 3 | -------------------------------------------------------------------------------- /windowmanager/bindir/prepare_live_coding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/prepare_live_coding -------------------------------------------------------------------------------- /windowmanager/bindir/pumpv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/pumpv -------------------------------------------------------------------------------- /windowmanager/bindir/ranger-open: -------------------------------------------------------------------------------- 1 | #!/bin/env sh 2 | termite -e "ranger $*" 3 | -------------------------------------------------------------------------------- /windowmanager/bindir/rdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/rdp -------------------------------------------------------------------------------- /windowmanager/bindir/remaps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/remaps -------------------------------------------------------------------------------- /windowmanager/bindir/reset_skyblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/reset_skyblock -------------------------------------------------------------------------------- /windowmanager/bindir/rip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/rip -------------------------------------------------------------------------------- /windowmanager/bindir/setmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/setmon -------------------------------------------------------------------------------- /windowmanager/bindir/showclip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/showclip -------------------------------------------------------------------------------- /windowmanager/bindir/start_screensaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/start_screensaver -------------------------------------------------------------------------------- /windowmanager/bindir/startjack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/startjack -------------------------------------------------------------------------------- /windowmanager/bindir/stop_screensaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/stop_screensaver -------------------------------------------------------------------------------- /windowmanager/bindir/stopjack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/stopjack -------------------------------------------------------------------------------- /windowmanager/bindir/terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/terminal -------------------------------------------------------------------------------- /windowmanager/bindir/toggle_pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/toggle_pi -------------------------------------------------------------------------------- /windowmanager/bindir/toggle_picom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/toggle_picom -------------------------------------------------------------------------------- /windowmanager/bindir/toggle_screensaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/toggle_screensaver -------------------------------------------------------------------------------- /windowmanager/bindir/touchpad_toggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/touchpad_toggle -------------------------------------------------------------------------------- /windowmanager/bindir/umpv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/bindir/umpv -------------------------------------------------------------------------------- /windowmanager/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/dunstrc -------------------------------------------------------------------------------- /windowmanager/dunst/images/battery-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/battery-charged.png -------------------------------------------------------------------------------- /windowmanager/dunst/images/battery-charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/battery-charging.png -------------------------------------------------------------------------------- /windowmanager/dunst/images/battery-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/battery-full.png -------------------------------------------------------------------------------- /windowmanager/dunst/images/battery-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/battery-low.png -------------------------------------------------------------------------------- /windowmanager/dunst/images/ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/ethernet.png -------------------------------------------------------------------------------- /windowmanager/dunst/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/heart.png -------------------------------------------------------------------------------- /windowmanager/dunst/images/no-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/no-connection.png -------------------------------------------------------------------------------- /windowmanager/dunst/images/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/notification.png -------------------------------------------------------------------------------- /windowmanager/dunst/images/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/images/wifi.png -------------------------------------------------------------------------------- /windowmanager/dunst/reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/reload -------------------------------------------------------------------------------- /windowmanager/dunst/sonicpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/dunst/sonicpi -------------------------------------------------------------------------------- /windowmanager/i3-gnome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3-gnome/Makefile -------------------------------------------------------------------------------- /windowmanager/i3-gnome/session/gnome-session-i3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3-gnome/session/gnome-session-i3 -------------------------------------------------------------------------------- /windowmanager/i3-gnome/session/i3-gnome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3-gnome/session/i3-gnome -------------------------------------------------------------------------------- /windowmanager/i3-gnome/session/i3-gnome-xsession.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3-gnome/session/i3-gnome-xsession.desktop -------------------------------------------------------------------------------- /windowmanager/i3-gnome/session/i3-gnome.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3-gnome/session/i3-gnome.desktop -------------------------------------------------------------------------------- /windowmanager/i3-gnome/session/i3-gnome.session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3-gnome/session/i3-gnome.session -------------------------------------------------------------------------------- /windowmanager/i3/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3/autostart.sh -------------------------------------------------------------------------------- /windowmanager/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3/config -------------------------------------------------------------------------------- /windowmanager/i3/i3exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3/i3exit -------------------------------------------------------------------------------- /windowmanager/i3/prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3/prompt -------------------------------------------------------------------------------- /windowmanager/i3/qjackctl.jso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3/qjackctl.jso -------------------------------------------------------------------------------- /windowmanager/i3/sonicpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3/sonicpi.json -------------------------------------------------------------------------------- /windowmanager/i3/start_dmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3/start_dmenu -------------------------------------------------------------------------------- /windowmanager/i3blocks/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/i3blocks/config -------------------------------------------------------------------------------- /windowmanager/leftwm/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/config.toml -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/background_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/background_0.png -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/background_1.png -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/background_2.png -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/change_to_tag: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "SendWorkspaceToTag $1 $2" > $XDG_RUNTIME_DIR/leftwm/commands.pipe 3 | -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/down -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/dunst/dunstrc -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/liquid/layout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/liquid/layout.liquid -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/liquid/name.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/liquid/name.liquid -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/liquid/sizes.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/liquid/sizes.liquid -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/liquid/template.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/liquid/template.liquid -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/misc/configs/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/misc/configs/alacritty/alacritty.yml -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/misc/configs/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/misc/configs/kitty/kitty.conf -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/misc/configs/kitty/nightfox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/misc/configs/kitty/nightfox.conf -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/misc/configs/leftwm/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/misc/configs/leftwm/config.toml -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/picom/picom.conf -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/polybar/polybar-tray.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/polybar/polybar-tray.config -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/polybar/polybar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/polybar/polybar.config -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/polybar/polybar_tray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/polybar/polybar_tray.sh -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/polybar/updates-pacman-aurhelper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/polybar/updates-pacman-aurhelper.sh -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/.gitignore: -------------------------------------------------------------------------------- 1 | history.txt 2 | -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/icons/ddg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/global/icons/ddg.svg -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/global/icons/google.svg -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/icons/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/global/icons/history.svg -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/icons/result.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/global/icons/result.svg -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/icons/suggestion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/global/icons/suggestion.svg -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/rofi-spotlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/global/rofi-spotlight.sh -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/rofi.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/global/rofi.rasi -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/global/web-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/global/web-search.py -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/launcher.rasi: -------------------------------------------------------------------------------- 1 | touch_launcher.rasi -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/list_launcher.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/list_launcher.rasi -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/powermenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/powermenu.rasi -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/powermenu.sh -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/rofi/touch_launcher.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/rofi/touch_launcher.rasi -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/theme.toml -------------------------------------------------------------------------------- /windowmanager/leftwm/themes/nightfox/up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/leftwm/themes/nightfox/up -------------------------------------------------------------------------------- /windowmanager/mailcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/mailcap -------------------------------------------------------------------------------- /windowmanager/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/mimeapps.list -------------------------------------------------------------------------------- /windowmanager/polybar/95-battery.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/polybar/95-battery.rules -------------------------------------------------------------------------------- /windowmanager/polybar/battery-combined-udev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/polybar/battery-combined-udev.sh -------------------------------------------------------------------------------- /windowmanager/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/polybar/config -------------------------------------------------------------------------------- /windowmanager/polybar/launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/polybar/launch -------------------------------------------------------------------------------- /windowmanager/polybar/ws-icon-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/polybar/ws-icon-list -------------------------------------------------------------------------------- /windowmanager/sleep/forceautolock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/sleep/forceautolock -------------------------------------------------------------------------------- /windowmanager/sleep/lidlock@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/sleep/lidlock@.service -------------------------------------------------------------------------------- /windowmanager/sleep/logind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/sleep/logind.conf -------------------------------------------------------------------------------- /windowmanager/sleep/sleep.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/sleep/sleep.conf -------------------------------------------------------------------------------- /windowmanager/udiskie/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/udiskie/config.yml -------------------------------------------------------------------------------- /windowmanager/xmonad/arch.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/arch.dependencies -------------------------------------------------------------------------------- /windowmanager/xmonad/bin/greenclip_launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/bin/greenclip_launcher -------------------------------------------------------------------------------- /windowmanager/xmonad/bin/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/bin/launcher -------------------------------------------------------------------------------- /windowmanager/xmonad/bin/toggle_picom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/bin/toggle_picom -------------------------------------------------------------------------------- /windowmanager/xmonad/bin/xmonadexit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/bin/xmonadexit -------------------------------------------------------------------------------- /windowmanager/xmonad/config/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/config/autostart.sh -------------------------------------------------------------------------------- /windowmanager/xmonad/config/pacman-hooks/recompile-xmonad.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/config/pacman-hooks/recompile-xmonad.hook -------------------------------------------------------------------------------- /windowmanager/xmonad/config/pacman-hooks/recompile-xmonadh.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/config/pacman-hooks/recompile-xmonadh.hook -------------------------------------------------------------------------------- /windowmanager/xmonad/config/set_bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/config/set_bg -------------------------------------------------------------------------------- /windowmanager/xmonad/config/xmonad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/config/xmonad.hs -------------------------------------------------------------------------------- /windowmanager/xmonad/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/picom/picom.conf -------------------------------------------------------------------------------- /windowmanager/xmonad/polybar/polybar-tray.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/polybar/polybar-tray.config -------------------------------------------------------------------------------- /windowmanager/xmonad/polybar/polybar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/polybar/polybar.config -------------------------------------------------------------------------------- /windowmanager/xmonad/polybar/polybar_tray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/polybar/polybar_tray.sh -------------------------------------------------------------------------------- /windowmanager/xmonad/polybar/up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/polybar/up -------------------------------------------------------------------------------- /windowmanager/xmonad/polybar/updates-pacman-aurhelper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/polybar/updates-pacman-aurhelper.sh -------------------------------------------------------------------------------- /windowmanager/xmonad/rofi/launcher.rasi: -------------------------------------------------------------------------------- 1 | touch_launcher.rasi -------------------------------------------------------------------------------- /windowmanager/xmonad/rofi/list_launcher.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/rofi/list_launcher.rasi -------------------------------------------------------------------------------- /windowmanager/xmonad/rofi/nightfox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/rofi/nightfox.rasi -------------------------------------------------------------------------------- /windowmanager/xmonad/rofi/powermenu/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/rofi/powermenu/confirm.rasi -------------------------------------------------------------------------------- /windowmanager/xmonad/rofi/powermenu/nightfox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/rofi/powermenu/nightfox.rasi -------------------------------------------------------------------------------- /windowmanager/xmonad/rofi/powermenu/powermenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/rofi/powermenu/powermenu.rasi -------------------------------------------------------------------------------- /windowmanager/xmonad/rofi/touch_launcher.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/rofi/touch_launcher.rasi -------------------------------------------------------------------------------- /windowmanager/xmonad/wallpapers: -------------------------------------------------------------------------------- 1 | ../../images/wallpapers -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/scripts/backupicon: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | cat /tmp/backupicon 2>/dev/null || echo "" 3 | -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/scripts/battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/scripts/battery -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/scripts/jackd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/scripts/jackd -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/scripts/mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/scripts/mpd -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/scripts/pacupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/scripts/pacupdate -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/scripts/sonic-pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/scripts/sonic-pi -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/scripts/trayer-padding-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/scripts/trayer-padding-icon -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/scripts/wifi -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/xmobarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/xmobarrc -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/xmobarrc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/xmobarrc0 -------------------------------------------------------------------------------- /windowmanager/xmonad/xmobar/xmobarrc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/dotfiles_dotbot/HEAD/windowmanager/xmonad/xmobar/xmobarrc1 --------------------------------------------------------------------------------