add moonlander config and sddm customization

This commit is contained in:
Sho Ishida 2024-08-13 09:08:17 +09:00
parent afb5aaa09a
commit 78b17b93a3

43
post.sh
View File

@ -11,13 +11,36 @@ prmpt() {
done done
} }
ZSA="# 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""
# Change default shell to zsh # Change default shell to zsh
prmpt "change default shell to zsh" "chsh -s $(which zsh)" prmpt "change default shell to zsh" "chsh -s $(which zsh)"
# Set up Git # Set up Git
prmpt "set up git?" 'git config --global user.email "isshi0417@gmail.com"' prmpt "set up git?" 'git config --global user.email "isshi0417@gmail.com"'
echo "Git configuration complete!"
prmpt "authorize GitHub HTTP" "gh auth login" prmpt "authorize GitHub HTTP" "gh auth login"
# Symlink dotfiles # Symlink dotfiles
@ -31,5 +54,21 @@ prmpt "set up OneDrive autostart" "brew services start onedrive"
prmpt "log into OneDrive" "onedrive" prmpt "log into OneDrive" "onedrive"
prmpt "synchronize OneDrive now" "onedrive --synchronize" prmpt "synchronize OneDrive now" "onedrive --synchronize"
# Enable SDDM customization
prmpt "enable SDDM customization" "sudo cp -r /usr/share/sddm /var"
read -r -p "This will make changes to fstab. Are you sure? " response
case "$response" in
[Yy]* ) echo "/var/sddm /usr/share/sddm none rbind 0 0" | sudo tee -a /etc/fstab;;
* ) echo "Skipping...";;
esac
# Set up ZSA Keyboard
prmpt "set up Moonlander connectivity" "sudo touch /etc/udev/rules.d/50-zsa.rules"
read -r -p "This will make changes to /etc/udev/rules.d/50-zsa.rules. Are you sure? " response
case "$response" in
[Yy]* ) echo "$ZSA" | sudo tee -a /etc/udev/rules.d/50-zsa.rules; sudo groupadd plugdev; sudo usermod -aG plugdev $USER;;
* ) echo "Skipping...";;
esac
# Restart # Restart
prmpt "restart now" "systemctl restart" prmpt "restart now" "systemctl restart"