├── .gitignore ├── Makefile ├── README.md ├── bin ├── batt ├── bkup ├── crypt ├── info ├── lock ├── phone ├── rec ├── shot └── vpn ├── dots ├── bash ├── fish ├── git │ ├── gitconfig │ └── gitignore ├── ignore ├── init ├── kbd │ ├── flash.sh │ ├── qmk │ │ ├── build.sh │ │ ├── common │ │ │ ├── config.h │ │ │ └── rules.mk │ │ └── splitkb │ │ │ └── aurora │ │ │ └── sweep.kbl │ ├── readme.md │ └── zmk │ │ ├── build.sh │ │ ├── config.conf │ │ ├── modules │ │ └── urchin-zmk-module │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── boards │ │ │ └── shields │ │ │ │ └── urchin │ │ │ │ ├── Kconfig.defconfig │ │ │ │ ├── Kconfig.shield │ │ │ │ ├── urchin-layouts.dtsi │ │ │ │ ├── urchin.dtsi │ │ │ │ ├── urchin.keymap │ │ │ │ ├── urchin.zmk.yml │ │ │ │ ├── urchin_left.overlay │ │ │ │ └── urchin_right.overlay │ │ │ └── zephyr │ │ │ └── module.yaml │ │ └── urchin.kbl ├── kitty ├── mako ├── misc │ ├── fonts.conf │ └── gtk.css ├── mpd ├── mpv │ ├── input.conf │ ├── mpv.conf │ ├── script-opts │ │ ├── clip_mp4.conf │ │ └── osc.conf │ ├── scripts │ │ └── clip.lua │ └── shaders │ │ └── transparency.glsl ├── ncmpcpp │ ├── bindings │ └── config ├── niri ├── nvim │ ├── colors │ │ └── futora.vim │ ├── init.vim │ ├── lua │ │ ├── abbrevs.lua │ │ ├── bindings.lua │ │ ├── filetype │ │ │ ├── markdown │ │ │ │ ├── footnote.lua │ │ │ │ ├── init.lua │ │ │ │ └── media.lua │ │ │ └── script.lua │ │ ├── francais.lua │ │ ├── lsp.lua │ │ ├── matchers.lua │ │ └── plugins │ │ │ ├── motion.lua │ │ │ ├── nav.lua │ │ │ ├── search.lua │ │ │ └── util.lua │ └── spell │ │ └── en.utf-8.add ├── phone │ ├── README.md │ ├── colors.properties │ └── termux.properties ├── port ├── qute │ ├── config.yml │ ├── greasemonkey │ │ ├── bypass-paywalls.user.js │ │ ├── popupblocker.user.js │ │ ├── reddit-adblock.user.js │ │ ├── scihub.user.js │ │ └── youtube-adblock.user.js │ └── userscripts │ │ └── fftab ├── sioyek │ ├── keys_user.config │ └── prefs_user.config └── yazi │ ├── keymap.toml │ ├── theme.toml │ └── yazi.toml ├── shots ├── 09_2016.png ├── 11_2016.png └── 12_2015.png └── walls ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/README.md -------------------------------------------------------------------------------- /bin/batt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/bin/batt -------------------------------------------------------------------------------- /bin/bkup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/bin/bkup -------------------------------------------------------------------------------- /bin/crypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/bin/crypt -------------------------------------------------------------------------------- /bin/info: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | notify-send -t 2000 "$(date '+%m/%d %H:%M')" "$(acpi)" 3 | -------------------------------------------------------------------------------- /bin/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/bin/lock -------------------------------------------------------------------------------- /bin/phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/bin/phone -------------------------------------------------------------------------------- /bin/rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/bin/rec -------------------------------------------------------------------------------- /bin/shot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/bin/shot -------------------------------------------------------------------------------- /bin/vpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/bin/vpn -------------------------------------------------------------------------------- /dots/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/bash -------------------------------------------------------------------------------- /dots/fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/fish -------------------------------------------------------------------------------- /dots/git/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/git/gitconfig -------------------------------------------------------------------------------- /dots/git/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/git/gitignore -------------------------------------------------------------------------------- /dots/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/ignore -------------------------------------------------------------------------------- /dots/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/init -------------------------------------------------------------------------------- /dots/kbd/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/flash.sh -------------------------------------------------------------------------------- /dots/kbd/qmk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/qmk/build.sh -------------------------------------------------------------------------------- /dots/kbd/qmk/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/qmk/common/config.h -------------------------------------------------------------------------------- /dots/kbd/qmk/common/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/qmk/common/rules.mk -------------------------------------------------------------------------------- /dots/kbd/qmk/splitkb/aurora/sweep.kbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/qmk/splitkb/aurora/sweep.kbl -------------------------------------------------------------------------------- /dots/kbd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/readme.md -------------------------------------------------------------------------------- /dots/kbd/zmk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/build.sh -------------------------------------------------------------------------------- /dots/kbd/zmk/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/config.conf -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/LICENSE -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/README.md -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/Kconfig.defconfig -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/Kconfig.shield -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin-layouts.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin-layouts.dtsi -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin.dtsi -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin.keymap -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin.zmk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin.zmk.yml -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin_left.overlay -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/boards/shields/urchin/urchin_right.overlay -------------------------------------------------------------------------------- /dots/kbd/zmk/modules/urchin-zmk-module/zephyr/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/modules/urchin-zmk-module/zephyr/module.yaml -------------------------------------------------------------------------------- /dots/kbd/zmk/urchin.kbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kbd/zmk/urchin.kbl -------------------------------------------------------------------------------- /dots/kitty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/kitty -------------------------------------------------------------------------------- /dots/mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/mako -------------------------------------------------------------------------------- /dots/misc/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/misc/fonts.conf -------------------------------------------------------------------------------- /dots/misc/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/misc/gtk.css -------------------------------------------------------------------------------- /dots/mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/mpd -------------------------------------------------------------------------------- /dots/mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/mpv/input.conf -------------------------------------------------------------------------------- /dots/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/mpv/mpv.conf -------------------------------------------------------------------------------- /dots/mpv/script-opts/clip_mp4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/mpv/script-opts/clip_mp4.conf -------------------------------------------------------------------------------- /dots/mpv/script-opts/osc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/mpv/script-opts/osc.conf -------------------------------------------------------------------------------- /dots/mpv/scripts/clip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/mpv/scripts/clip.lua -------------------------------------------------------------------------------- /dots/mpv/shaders/transparency.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/mpv/shaders/transparency.glsl -------------------------------------------------------------------------------- /dots/ncmpcpp/bindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/ncmpcpp/bindings -------------------------------------------------------------------------------- /dots/ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/ncmpcpp/config -------------------------------------------------------------------------------- /dots/niri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/niri -------------------------------------------------------------------------------- /dots/nvim/colors/futora.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/colors/futora.vim -------------------------------------------------------------------------------- /dots/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/init.vim -------------------------------------------------------------------------------- /dots/nvim/lua/abbrevs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/abbrevs.lua -------------------------------------------------------------------------------- /dots/nvim/lua/bindings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/bindings.lua -------------------------------------------------------------------------------- /dots/nvim/lua/filetype/markdown/footnote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/filetype/markdown/footnote.lua -------------------------------------------------------------------------------- /dots/nvim/lua/filetype/markdown/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/filetype/markdown/init.lua -------------------------------------------------------------------------------- /dots/nvim/lua/filetype/markdown/media.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/filetype/markdown/media.lua -------------------------------------------------------------------------------- /dots/nvim/lua/filetype/script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/filetype/script.lua -------------------------------------------------------------------------------- /dots/nvim/lua/francais.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/francais.lua -------------------------------------------------------------------------------- /dots/nvim/lua/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/lsp.lua -------------------------------------------------------------------------------- /dots/nvim/lua/matchers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/matchers.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/motion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/plugins/motion.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/nav.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/plugins/nav.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/search.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/plugins/search.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/lua/plugins/util.lua -------------------------------------------------------------------------------- /dots/nvim/spell/en.utf-8.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/nvim/spell/en.utf-8.add -------------------------------------------------------------------------------- /dots/phone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/phone/README.md -------------------------------------------------------------------------------- /dots/phone/colors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/phone/colors.properties -------------------------------------------------------------------------------- /dots/phone/termux.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/phone/termux.properties -------------------------------------------------------------------------------- /dots/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/port -------------------------------------------------------------------------------- /dots/qute/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/qute/config.yml -------------------------------------------------------------------------------- /dots/qute/greasemonkey/bypass-paywalls.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/qute/greasemonkey/bypass-paywalls.user.js -------------------------------------------------------------------------------- /dots/qute/greasemonkey/popupblocker.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/qute/greasemonkey/popupblocker.user.js -------------------------------------------------------------------------------- /dots/qute/greasemonkey/reddit-adblock.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/qute/greasemonkey/reddit-adblock.user.js -------------------------------------------------------------------------------- /dots/qute/greasemonkey/scihub.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/qute/greasemonkey/scihub.user.js -------------------------------------------------------------------------------- /dots/qute/greasemonkey/youtube-adblock.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/qute/greasemonkey/youtube-adblock.user.js -------------------------------------------------------------------------------- /dots/qute/userscripts/fftab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/qute/userscripts/fftab -------------------------------------------------------------------------------- /dots/sioyek/keys_user.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/sioyek/keys_user.config -------------------------------------------------------------------------------- /dots/sioyek/prefs_user.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/sioyek/prefs_user.config -------------------------------------------------------------------------------- /dots/yazi/keymap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/yazi/keymap.toml -------------------------------------------------------------------------------- /dots/yazi/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/yazi/theme.toml -------------------------------------------------------------------------------- /dots/yazi/yazi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/dots/yazi/yazi.toml -------------------------------------------------------------------------------- /shots/09_2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/shots/09_2016.png -------------------------------------------------------------------------------- /shots/11_2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/shots/11_2016.png -------------------------------------------------------------------------------- /shots/12_2015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/shots/12_2015.png -------------------------------------------------------------------------------- /walls/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/walls/1.jpg -------------------------------------------------------------------------------- /walls/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/walls/2.jpg -------------------------------------------------------------------------------- /walls/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/walls/3.jpg -------------------------------------------------------------------------------- /walls/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frnsys/dippindots/HEAD/walls/4.jpg --------------------------------------------------------------------------------