Score:2

Writing udev rules - wildcards?

bq flag

Is it possible to use wildcard characters when writing udev rules? I have multiseat and i want to assign every device (keyboard, mouse etc) that gets connected to a certain USB hub - or even better, a specific port on the front of the PC - to seat1. It's kind of cumbersome to have to redo new rules each time i swap stuff around or don't remember in which USB slot each device was connected.

Using just simple udev rules, as generated by 'loginctl attach' command:

TAG=="seat", ENV{ID_FOR_SEAT}=="usb-pci-0000_00_14_0-usb-0_5_3", ENV{ID_SEAT}="seat1"
Marco avatar
br flag
Maybe its a good idea, to add the code you have already to the question.
dolt avatar
bq flag
@Marco thanks, done. No idea how i didn't think of that =)
Raffa avatar
jp flag
UDEV rules accept some [simple shell style pattern matching](https://linux.die.net/man/8/udev) ... So, something like `usb-pci-*` should work.
Raffa avatar
jp flag
Also please see how pattern matching is used here: https://askubuntu.com/a/1478053/968501
dolt avatar
bq flag
@Raffa Thanks, i searched all manpages i could think of, including that one, except not for the phrase "pattern character" ...this is a clear case of poor documentation of udev.
Score:2
jp flag

Is it possible to use wildcard characters when writing udev rules?

Yes, it's possible according to man udev:

Most of the fields support shell glob pattern matching and alternate patterns. The following special characters are supported:

   "*"
       Matches zero or more characters.

   "?"
       Matches any single character.

   "[]"
       Matches any single character specified within the brackets. For example, the pattern
       string "tty[SR]" would match either "ttyS" or "ttyR". Ranges are also supported via
       the "-" character. For example, to match on the range of all digits, the pattern
       "[0-9]" could be used. If the first character following the "[" is a "!", any
       characters not enclosed are matched.

   "|"
       Separates alternative patterns. For example, the pattern string "abc|x*" would match
       either "abc" or "x*".
I sit in a Tesla and translated this thread with Ai:

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.