jmjl / Makefile targets

0 likes
0 forks
1 files
Last active 1707331072
Makefile that shows targets names automatically, (I don't remember the source, if you know the source or are the source please contact me)
1 help:
2 @echo "targets:"
3 @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
4 | sed -n 's/^\(.*\): \(.*\)##\(.*\)/ \1|\3/p' \
5 | column -t -s '|'
6
7 .PHONY: clean
8 clean: ## clean the uneeded files
9 code_to_clean_the_files

jmjl / Usbguard Rofi Script

0 likes
0 forks
1 files
Last active 1699795081
Usbguard rofi script so that I can manage usbguard from a UI instead of manually typing the usbguard commands into the keyboard
1 #!/bin/sh
2 # Copyright Julián Marcos — EPLv2
3 # Texts
4
5 RELIST_ACT="*AA: Listar de nuevo. (Re-chequea los estados)"
6 EXIT_ACT="*AB: Salir"
7 FILTER_ACT="*AC: Filtrar"
8
9 BLOCK_ACT="Bloquear"
10 REJECT_ACT="Quitar"
Newer Older