Merge branch 'main' of git.snaile.de:luca/bootstrapper
This commit is contained in:
commit
79dc872e42
4
TODO.md
4
TODO.md
|
@ -1,9 +1,5 @@
|
||||||
# TODO
|
# TODO
|
||||||
|
|
||||||
## Luarocks
|
|
||||||
|
|
||||||
- [ ] tiktoken_core
|
|
||||||
|
|
||||||
## Alternatives
|
## Alternatives
|
||||||
|
|
||||||
- [ ] `xbps-alternatives pinentry -s pinentry-gnome`
|
- [ ] `xbps-alternatives pinentry -s pinentry-gnome`
|
||||||
|
|
|
@ -41,7 +41,6 @@ packages:
|
||||||
- apache-htpasswd
|
- apache-htpasswd
|
||||||
- arandr
|
- arandr
|
||||||
- atool
|
- atool
|
||||||
- bandwhich
|
|
||||||
- base-devel
|
- base-devel
|
||||||
- base-system
|
- base-system
|
||||||
- bat
|
- bat
|
||||||
|
@ -83,7 +82,6 @@ packages:
|
||||||
- git-lfs
|
- git-lfs
|
||||||
- github-cli
|
- github-cli
|
||||||
- glib
|
- glib
|
||||||
- glow
|
|
||||||
- gnome-keyring
|
- gnome-keyring
|
||||||
- gnumeric
|
- gnumeric
|
||||||
- gnupg2-scdaemon
|
- gnupg2-scdaemon
|
||||||
|
@ -140,6 +138,7 @@ packages:
|
||||||
- python3-neovim
|
- python3-neovim
|
||||||
- python3-passlib
|
- python3-passlib
|
||||||
- python3-pip
|
- python3-pip
|
||||||
|
- python3-pipx
|
||||||
- python3-pydbus
|
- python3-pydbus
|
||||||
- ranger
|
- ranger
|
||||||
- rbw
|
- rbw
|
||||||
|
@ -181,6 +180,7 @@ packages:
|
||||||
- void-repo-nonfree
|
- void-repo-nonfree
|
||||||
- vpsm
|
- vpsm
|
||||||
- vsv
|
- vsv
|
||||||
|
- wcalc
|
||||||
- wget
|
- wget
|
||||||
- wireplumber
|
- wireplumber
|
||||||
- xcape
|
- xcape
|
||||||
|
@ -210,6 +210,10 @@ packages:
|
||||||
- zsh-autosuggestions
|
- zsh-autosuggestions
|
||||||
- zsh-completions
|
- zsh-completions
|
||||||
- zsh-syntax-highlighting
|
- zsh-syntax-highlighting
|
||||||
|
# - command: ["go", "install"]
|
||||||
|
# local: True
|
||||||
|
# list:
|
||||||
|
# - "github.com/pehlicd/amtui@latest"
|
||||||
# - command: ["pnpm", "add", "-g"]
|
# - command: ["pnpm", "add", "-g"]
|
||||||
# pre: ["pnpm setup"]
|
# pre: ["pnpm setup"]
|
||||||
# local: True
|
# local: True
|
||||||
|
@ -231,6 +235,7 @@ packages:
|
||||||
# - asciidoctor-diagram
|
# - asciidoctor-diagram
|
||||||
# - pygments.rb
|
# - pygments.rb
|
||||||
# - neovim
|
# - neovim
|
||||||
|
# - mdless
|
||||||
# - command: ["cpanm", "-vn"]
|
# - command: ["cpanm", "-vn"]
|
||||||
# local: True
|
# local: True
|
||||||
# list:
|
# list:
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
# Rules for Oryx web flashing and live training
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="16c0", MODE="0664", GROUP="plugdev"
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="3297", MODE="0664", GROUP="plugdev"
|
||||||
|
|
||||||
|
# Legacy rules for live training over webusb (Not needed for firmware v21+)
|
||||||
|
# Rule for all ZSA keyboards
|
||||||
|
SUBSYSTEM=="usb", ATTR{idVendor}=="3297", GROUP="plugdev"
|
||||||
|
# Rule for the Moonlander
|
||||||
|
SUBSYSTEM=="usb", ATTR{idVendor}=="3297", ATTR{idProduct}=="1969", GROUP="plugdev"
|
||||||
|
# Rule for the Ergodox EZ
|
||||||
|
SUBSYSTEM=="usb", ATTR{idVendor}=="feed", ATTR{idProduct}=="1307", GROUP="plugdev"
|
||||||
|
# Rule for the Planck EZ
|
||||||
|
SUBSYSTEM=="usb", ATTR{idVendor}=="feed", ATTR{idProduct}=="6060", GROUP="plugdev"
|
||||||
|
|
||||||
|
# Wally Flashing rules for the Ergodox EZ
|
||||||
|
ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789B]?", ENV{ID_MM_DEVICE_IGNORE}="1"
|
||||||
|
ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789A]?", ENV{MTP_NO_PROBE}="1"
|
||||||
|
SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789ABCD]?", MODE:="0666"
|
||||||
|
KERNEL=="ttyACM*", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789B]?", MODE:="0666"
|
||||||
|
|
||||||
|
# Keymapp / Wally Flashing rules for the Moonlander and Planck EZ
|
||||||
|
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", MODE:="0666", SYMLINK+="stm32_dfu"
|
||||||
|
# Keymapp Flashing rules for the Voyager
|
||||||
|
SUBSYSTEMS=="usb", ATTRS{idVendor}=="3297", MODE:="0666", SYMLINK+="ignition_dfu"
|
Loading…
Reference in New Issue