this post was submitted on 04 Aug 2026
34 points (100.0% liked)

Linux

66820 readers
362 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS
34
submitted 1 day ago* (last edited 13 hours ago) by goofsqueak@lemdro.id to c/linux@lemmy.ml
 

SOLVED: i used the simulate input action on opendeck and set it to f7. yes i have a streamdeck

so i use a program where you need to press f7 and you cant change it, but i only have a 67% keyboard and the layout i have selected in my keyboard setting doesnt seem to have fn on any of my keys so pls help

EDIT: just so you guys know i have a streamdeck that i can use but idrk how to configure a button to be f7

de:kde distro:endeavouros keyboard: custom kbd67 lite

you are viewing a single comment's thread
view the rest of the comments
[–] HelloRoot@lemy.lol 12 points 1 day ago* (last edited 1 day ago)

You can make a keyboard shortcut in the settings that runs a script that simulates f7. From the top of my head

Installydotool:

yay -S ydotool
sudo systemctl enable --now ydotool

Create script~/f7.sh:

#!/bin/sh
ydotool key f7
chmod +x ~/f7.sh

Bind it via System Settings → Shortcuts → Custom Shortcuts → New → Script/Application.

Set trigger to e.g.Ctrl+Shift+F, Action to/home/youruser/f7.sh.