This commit is contained in:
2025-05-23 00:19:28 +08:00
parent 0a369efe1b
commit 5623d08d85
2 changed files with 29 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
# Autogenerated at 21.05.2025 20:24 using ./gen-makefile
# Autogenerated at 23.05.2025 00:19 using ./gen-makefile
.DEFAULT_GOAL := help
#===============================================
@@ -93,7 +93,7 @@ kde-portal:
libreoffice:
@./install/libreoffice
##lite-xl: Install lite-xl
##lite-xl: Install lite-xl v2.1.7
lite-xl:
@./install/lite-xl
@@ -137,7 +137,7 @@ papirus:
pgsql:
@./install/pgsql
##php: Install php v8.3 + ppa
##php: Install php v8.4
php:
@./install/php
@@ -189,6 +189,10 @@ sublimemerge:
sublimetext:
@./install/sublimetext
##suld: Samsung Unified Linux Driver repo
suld:
@./install/suld
##syncthing: Install syncthing (latest) + ppa
syncthing:
@./install/syncthing
@@ -249,8 +253,8 @@ omz: zsh omz-clean omz-fancy
chsh -s /usr/bin/zsh
@exec zsh
##phptools: [PACK] Install only php tooling (composer, phpunit, psalm, phpcs, php-cs-fixer, php-spx, phpmd)
phptools: composer php-psalm php-spx phpcs phpmd phpstan phpunit
##phptools: [PACK] Install only php tooling (composer, phpunit, psalm, phpcs, php-cs-fixer, phpmd)
phptools: composer php-psalm phpcs phpmd phpstan phpunit
##phpstack: [PACK] Install full php stack with tooling
phpstack: php phptools

20
install/suld Executable file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
##makedesc: Samsung Unified Linux Driver repo
source "$( dirname $(readlink -e -- "${BASH_SOURCE}"))/../helpers.sh" || exit 255
# https://www.bchemnet.com/suldr/
# https://www.bchemnet.com/suldr/supported.html
title
mkdir -vp "$HOME/install"
sudo bash -c 'echo "deb https://www.bchemnet.com/suldr/ debian extra" >> /etc/apt/sources.list.d/samsung.list'
download \
https://www.bchemnet.com/suldr/pool/debian/extra/su/suldr-keyring_3_all.deb \
"$HOME/install/suldr-keyring_3_all.deb"
sudo dpkg -i "$HOME/install/suldr-keyring_3_all.deb"
apt_install suld-driver2-1.00.39
success "Samsung Unified Linux Driver installed!"
info "Don't forget to connect your Samsung printer"
info "See more info here: https://www.bchemnet.com/suldr/"