├── .Xdefaults ├── .Xmodmap ├── .config ├── alacritty.toml ├── alacritty │ └── color.toml ├── chromium-flags.conf ├── cower │ └── config ├── htop │ └── htoprc ├── i3 │ └── config ├── i3status │ └── config ├── mpv │ └── mpv.conf ├── ncspot │ └── config.toml ├── newsboat │ ├── config │ └── urls ├── nvim │ ├── ftplugin │ │ ├── PKGBUILD.vim │ │ ├── javascript.vim │ │ ├── python.vim │ │ ├── rust.vim │ │ ├── typescript.vim │ │ └── vimwiki.vim │ ├── init.lua │ ├── lua │ │ └── jelle │ │ │ ├── cmp.lua │ │ │ ├── cov.lua │ │ │ ├── dap.lua │ │ │ ├── git.lua │ │ │ ├── lsp.lua │ │ │ ├── opts.lua │ │ │ ├── plug.lua │ │ │ ├── search.lua │ │ │ ├── statusline.lua │ │ │ ├── test.lua │ │ │ ├── tree.lua │ │ │ ├── treesitter.lua │ │ │ └── vimwiki.lua │ ├── plugins.vim │ └── snippets │ │ └── PKGBUILD │ │ ├── PKGBUILD.json │ │ └── package.json ├── pycodestyle ├── retroarch │ └── retroarch.cfg ├── rofi │ └── config.rasi ├── systemd │ └── user │ │ ├── mopidy.service │ │ └── weechat-rotate.service └── termite │ └── config ├── .dircolors ├── .globalgitignore ├── .gnupg └── gpg-agent.conf ├── .ipython └── profile_default │ ├── ipython_config.py │ └── startup │ └── 10-zarafa.py ├── .local └── share │ └── logrotate.d │ └── irc ├── .mplayer └── config ├── .mutt ├── colors ├── crypto ├── mailcap ├── muttrc ├── open_ml_url.py └── security_tracker.py ├── .ncmpcpp ├── bindings └── config ├── .pam_environment ├── .pentadactylrc ├── .taskrc ├── .tmux.conf ├── .urlwatch ├── hooks.py └── urls.yaml ├── .vim ├── coc-settings.json ├── colors │ ├── candycode.vim │ ├── jellybeans.vim │ └── wombat256mod.vim └── ftplugin │ ├── PKGBUILD.vim │ ├── javascript.vim │ ├── python.vim │ ├── rust.vim │ └── vimwiki.vim ├── .vimperator └── colors │ └── zenburn.vimp ├── .vimperatorrc ├── .vimrc ├── .xinitrc ├── .xmobarrc ├── .xmonad ├── autostart.sh └── xmonad.hs ├── .ycm_extra_conf.py ├── .zcompletions └── _check_application ├── .zprofile ├── .zshcompletions └── _check_application ├── .zshrc ├── README.markdown └── bin ├── add-outdated-packages ├── arch-git-repo-search ├── arch-spdx-statistics ├── cleanup-cockpit-test-failures ├── cockpit-list-images ├── dnsmasq-blocklist ├── fix-aoe2-mp ├── gen-python-weekly-feed ├── generate-release-note-links ├── generate-vimwiki-diary-template ├── gwt-add ├── gwt-pr ├── list-outdated-packages ├── newsboat-bookmark ├── newsboat-open-link ├── package-depends ├── start-work ├── switch-cockpit-symlink ├── tiktok2rss ├── updategitfork ├── verify-file-ownership ├── version-diff-link ├── wifiindetrein.sh ├── xandikos2json ├── youtube-rss-feed └── ytsearch /.Xdefaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.Xdefaults -------------------------------------------------------------------------------- /.Xmodmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.Xmodmap -------------------------------------------------------------------------------- /.config/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/alacritty.toml -------------------------------------------------------------------------------- /.config/alacritty/color.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/alacritty/color.toml -------------------------------------------------------------------------------- /.config/chromium-flags.conf: -------------------------------------------------------------------------------- 1 | --ignore-gpu-blocklist 2 | -------------------------------------------------------------------------------- /.config/cower/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/cower/config -------------------------------------------------------------------------------- /.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/htop/htoprc -------------------------------------------------------------------------------- /.config/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/i3/config -------------------------------------------------------------------------------- /.config/i3status/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/i3status/config -------------------------------------------------------------------------------- /.config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/mpv/mpv.conf -------------------------------------------------------------------------------- /.config/ncspot/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/ncspot/config.toml -------------------------------------------------------------------------------- /.config/newsboat/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/newsboat/config -------------------------------------------------------------------------------- /.config/newsboat/urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/newsboat/urls -------------------------------------------------------------------------------- /.config/nvim/ftplugin/PKGBUILD.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/ftplugin/PKGBUILD.vim -------------------------------------------------------------------------------- /.config/nvim/ftplugin/javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/ftplugin/javascript.vim -------------------------------------------------------------------------------- /.config/nvim/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/ftplugin/python.vim -------------------------------------------------------------------------------- /.config/nvim/ftplugin/rust.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/ftplugin/rust.vim -------------------------------------------------------------------------------- /.config/nvim/ftplugin/typescript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/ftplugin/typescript.vim -------------------------------------------------------------------------------- /.config/nvim/ftplugin/vimwiki.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/ftplugin/vimwiki.vim -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/cmp.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/cov.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/cov.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/dap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/dap.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/git.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/git.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/lsp.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/opts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/opts.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/plug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/plug.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/search.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/search.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/statusline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/statusline.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/test.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/tree.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/treesitter.lua -------------------------------------------------------------------------------- /.config/nvim/lua/jelle/vimwiki.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/lua/jelle/vimwiki.lua -------------------------------------------------------------------------------- /.config/nvim/plugins.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/plugins.vim -------------------------------------------------------------------------------- /.config/nvim/snippets/PKGBUILD/PKGBUILD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/snippets/PKGBUILD/PKGBUILD.json -------------------------------------------------------------------------------- /.config/nvim/snippets/PKGBUILD/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/nvim/snippets/PKGBUILD/package.json -------------------------------------------------------------------------------- /.config/pycodestyle: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | max-line-length = 200 3 | -------------------------------------------------------------------------------- /.config/retroarch/retroarch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/retroarch/retroarch.cfg -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- 1 | configuration { 2 | modi: "window,run,ssh,calc"; 3 | } 4 | 5 | @theme "Arc-Dark" 6 | -------------------------------------------------------------------------------- /.config/systemd/user/mopidy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/systemd/user/mopidy.service -------------------------------------------------------------------------------- /.config/systemd/user/weechat-rotate.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/systemd/user/weechat-rotate.service -------------------------------------------------------------------------------- /.config/termite/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.config/termite/config -------------------------------------------------------------------------------- /.dircolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.dircolors -------------------------------------------------------------------------------- /.globalgitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.globalgitignore -------------------------------------------------------------------------------- /.gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /.ipython/profile_default/ipython_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.ipython/profile_default/ipython_config.py -------------------------------------------------------------------------------- /.ipython/profile_default/startup/10-zarafa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.ipython/profile_default/startup/10-zarafa.py -------------------------------------------------------------------------------- /.local/share/logrotate.d/irc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.local/share/logrotate.d/irc -------------------------------------------------------------------------------- /.mplayer/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.mplayer/config -------------------------------------------------------------------------------- /.mutt/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.mutt/colors -------------------------------------------------------------------------------- /.mutt/crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.mutt/crypto -------------------------------------------------------------------------------- /.mutt/mailcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.mutt/mailcap -------------------------------------------------------------------------------- /.mutt/muttrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.mutt/muttrc -------------------------------------------------------------------------------- /.mutt/open_ml_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.mutt/open_ml_url.py -------------------------------------------------------------------------------- /.mutt/security_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.mutt/security_tracker.py -------------------------------------------------------------------------------- /.ncmpcpp/bindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.ncmpcpp/bindings -------------------------------------------------------------------------------- /.ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.ncmpcpp/config -------------------------------------------------------------------------------- /.pam_environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.pam_environment -------------------------------------------------------------------------------- /.pentadactylrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.pentadactylrc -------------------------------------------------------------------------------- /.taskrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.taskrc -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.urlwatch/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.urlwatch/hooks.py -------------------------------------------------------------------------------- /.urlwatch/urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.urlwatch/urls.yaml -------------------------------------------------------------------------------- /.vim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/coc-settings.json -------------------------------------------------------------------------------- /.vim/colors/candycode.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/colors/candycode.vim -------------------------------------------------------------------------------- /.vim/colors/jellybeans.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/colors/jellybeans.vim -------------------------------------------------------------------------------- /.vim/colors/wombat256mod.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/colors/wombat256mod.vim -------------------------------------------------------------------------------- /.vim/ftplugin/PKGBUILD.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/ftplugin/PKGBUILD.vim -------------------------------------------------------------------------------- /.vim/ftplugin/javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/ftplugin/javascript.vim -------------------------------------------------------------------------------- /.vim/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/ftplugin/python.vim -------------------------------------------------------------------------------- /.vim/ftplugin/rust.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/ftplugin/rust.vim -------------------------------------------------------------------------------- /.vim/ftplugin/vimwiki.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vim/ftplugin/vimwiki.vim -------------------------------------------------------------------------------- /.vimperator/colors/zenburn.vimp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vimperator/colors/zenburn.vimp -------------------------------------------------------------------------------- /.vimperatorrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vimperatorrc -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.xinitrc -------------------------------------------------------------------------------- /.xmobarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.xmobarrc -------------------------------------------------------------------------------- /.xmonad/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.xmonad/autostart.sh -------------------------------------------------------------------------------- /.xmonad/xmonad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.xmonad/xmonad.hs -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /.zcompletions/_check_application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.zcompletions/_check_application -------------------------------------------------------------------------------- /.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.zprofile -------------------------------------------------------------------------------- /.zshcompletions/_check_application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.zshcompletions/_check_application -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/README.markdown -------------------------------------------------------------------------------- /bin/add-outdated-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/add-outdated-packages -------------------------------------------------------------------------------- /bin/arch-git-repo-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/arch-git-repo-search -------------------------------------------------------------------------------- /bin/arch-spdx-statistics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/arch-spdx-statistics -------------------------------------------------------------------------------- /bin/cleanup-cockpit-test-failures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/cleanup-cockpit-test-failures -------------------------------------------------------------------------------- /bin/cockpit-list-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/cockpit-list-images -------------------------------------------------------------------------------- /bin/dnsmasq-blocklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/dnsmasq-blocklist -------------------------------------------------------------------------------- /bin/fix-aoe2-mp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/fix-aoe2-mp -------------------------------------------------------------------------------- /bin/gen-python-weekly-feed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/gen-python-weekly-feed -------------------------------------------------------------------------------- /bin/generate-release-note-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/generate-release-note-links -------------------------------------------------------------------------------- /bin/generate-vimwiki-diary-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/generate-vimwiki-diary-template -------------------------------------------------------------------------------- /bin/gwt-add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/gwt-add -------------------------------------------------------------------------------- /bin/gwt-pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/gwt-pr -------------------------------------------------------------------------------- /bin/list-outdated-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/list-outdated-packages -------------------------------------------------------------------------------- /bin/newsboat-bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/newsboat-bookmark -------------------------------------------------------------------------------- /bin/newsboat-open-link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/newsboat-open-link -------------------------------------------------------------------------------- /bin/package-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/package-depends -------------------------------------------------------------------------------- /bin/start-work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/start-work -------------------------------------------------------------------------------- /bin/switch-cockpit-symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/switch-cockpit-symlink -------------------------------------------------------------------------------- /bin/tiktok2rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/tiktok2rss -------------------------------------------------------------------------------- /bin/updategitfork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/updategitfork -------------------------------------------------------------------------------- /bin/verify-file-ownership: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/verify-file-ownership -------------------------------------------------------------------------------- /bin/version-diff-link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/version-diff-link -------------------------------------------------------------------------------- /bin/wifiindetrein.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/wifiindetrein.sh -------------------------------------------------------------------------------- /bin/xandikos2json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/xandikos2json -------------------------------------------------------------------------------- /bin/youtube-rss-feed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly/Dotfiles/HEAD/bin/youtube-rss-feed -------------------------------------------------------------------------------- /bin/ytsearch: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mpv --no-video ytdl://ytsearch:"$*" 4 | --------------------------------------------------------------------------------