Translate
Appearance
Text
This page always uses small font size
Width
AllKDE Connect/Tutorials/Useful commands
Translate to ئۇيغۇرچە / Uyghurche
Translation of the wiki page KDE Connect/Tutorials/Useful commands from English (en).
This tool does not work without JavaScript. JavaScript is disabled, failed to work, or this browser is unsupported.
Translations:KDE Connect/Tutorials/Useful commands/Page display title/ug
KDE Connect/Tutorials/Useful commands
You need translation rights to translate messages.Get permission
Loading...
Latest updatesAll changes
Suggestions
In other languages
Need more help?Ask for more information
Translations:KDE Connect/Tutorials/Useful commands/1/ug
==List of example commands for KDE Connect==
You need translation rights to translate messages.Get permission
Loading...
Latest updatesAll changes
Suggestions
In other languages
Need more help?Ask for more information
In [[Special:myLanguage/KDEConnect|KDE Connect]], you can add your own commands and execute them from your phone. Here are some useful commands. Feel free to add your own!
* Shutdown: {{Output|1=<nowiki>systemctl poweroff</nowiki>}}
* Reboot: {{Output|1=<nowiki>systemctl reboot</nowiki>}}
* Suspend: {{Output|1=<nowiki>systemctl suspend</nowiki>}}
* Hibernate: {{Output|1=<nowiki>systemctl hibernate</nowiki>}}
* Lock screen: {{Output|1=<nowiki>loginctl lock-session</nowiki>}}
* Unlock screen: {{Output|1=<nowiki>loginctl unlock-session</nowiki>}}
* Turn off screen: {{Output|1=<nowiki>sleep 0.1 && qdbus org.kde.kglobalaccel /component/org_kde_powerdevil invokeShortcut "Turn Off Screen"</nowiki>}}
* Lock keyboard and mouse (not the screen): {{Output|1=<nowiki>pyxtrlock</nowiki>}}
* Unlock keyboard and mouse: {{Output|1=<nowiki>pkill pyxtrlock</nowiki>}}
* Volume down: {{Output|1=<nowiki>qdbus org.kde.kglobalaccel /component/kmix invokeShortcut "decrease_volume"</nowiki>}}
* Volume up: {{Output|1=<nowiki>qdbus org.kde.kglobalaccel /component/kmix invokeShortcut "increase_volume"</nowiki>}}
* Mute: {{Output|1=<nowiki>qdbus org.kde.kglobalaccel /component/kmix invokeShortcut "mute"</nowiki>}}
* Mute microphone: {{Output|1=<nowiki>qdbus org.kde.kglobalaccel /component/kmix invokeShortcut "mic_mute"</nowiki>}}
* Volume down: {{Output|1=<nowiki>
pactl set-sink-volume @DEFAULT_SINK@ -10%
## OR
pactl set-sink-volume $(pactl list short sinks | grep RUNNING | cut -f1) -10%
</nowiki>}}
* Volume up: {{Output|1=<nowiki>
pactl set-sink-volume @DEFAULT_SINK@ +10%
## OR
pactl set-sink-volume $(pactl list short sinks | grep RUNNING | cut -f1) +10%
</nowiki>}}
* Mute/Unmute: {{Output|1=<nowiki>
pactl set-sink-mute @DEFAULT_SINK@ toggle
## OR
pactl set-sink-mute $(pactl list short sinks | grep RUNNING | cut -f1) toggle
</nowiki>}}
* Volume down: {{Output|1=<nowiki>amixer -q sset Master 10%-</nowiki>}}
* Volume up: {{Output|1=<nowiki>amixer -q sset Master 10%+</nowiki>}}
Other commands can be built using [https://linux.die.net/man/1/amixer amixer]
* Breeze (Light) theme: {{Output|1=<nowiki>lookandfeeltool -a 'org.kde.breeze.desktop'</nowiki>}}
* Breeze (Dark) theme: {{Output|1=<nowiki>lookandfeeltool -a 'org.kde.breezedark.desktop'</nowiki>}}
* Brightness Up: {{Output|1=<nowiki>qdbus org.kde.Solid.PowerManagement /org/kde/Solid/PowerManagement/Actions/BrightnessControl org.kde.Solid.PowerManagement.Actions.BrightnessControl.setBrightness $(expr $(qdbus org.kde.Solid.PowerManagement /org/kde/Solid/PowerManagement/Actions/BrightnessControl org.kde.Solid.PowerManagement.Actions.BrightnessControl.brightness) + 375)</nowiki>}}
* Brightness Down: {{Output|1=<nowiki>qdbus org.kde.Solid.PowerManagement /org/kde/Solid/PowerManagement/Actions/BrightnessControl org.kde.Solid.PowerManagement.Actions.BrightnessControl.setBrightness $(expr $(qdbus org.kde.Solid.PowerManagement /org/kde/Solid/PowerManagement/Actions/BrightnessControl org.kde.Solid.PowerManagement.Actions.BrightnessControl.brightness) - 375)</nowiki>}}
* Save locally: {{Output|1=<nowiki>spectacle -b</nowiki>}}
* Send to phone: {{Output|1=<nowiki>file=/tmp/$(hostname)_$(date "+%Y%m%d_%H%M%S").png; spectacle -bo "${file}" && while ! [ -f "${file}" ]; do sleep 0.5; done && kdeconnect-cli -d $(kdeconnect-cli -a --id-only) --share "${file}"</nowiki>}}
* Save webcam photo in the Images folder and send to phone: {{Output|1=<nowiki>file="$HOME/Images/WebcamImage_$(date "+%Y%m%d_%H%M%S").jpg"; ffmpeg -f video4linux2 -s 1280x720 -i /dev/video0 -ss 0:0:2 -frames 1 "${file}" && kdeconnect-cli -d $(kdeconnect-cli -a --id-only) --share "${file}"</nowiki>}}
* Check the status of baloo indexing: {{Output|1=<nowiki>kdeconnect-cli -d $(kdeconnect-cli -a --id-only) --ping-msg "$(balooctl status)"</nowiki>}}
* Check lines 5, 7 and 9 of speedtest-cli: {{Output|1=<nowiki>kdeconnect-cli -d $(kdeconnect-cli -a --id-only) --ping-msg "$(speedtest-cli|awk 'NR==5;NR==7;NR==9 {print;exit}')"</nowiki>}}
* Check whether service sshd is running: {{Output|1=<nowiki>kdeconnect-cli -d $(kdeconnect-cli -a --id-only) --ping-msg "$(systemctl status sshd|grep Active)"</nowiki>}}
* Check the top 5 applications using most RAM: {{Output|1=<nowiki>kdeconnect-cli -d $(kdeconnect-cli -a --id-only) --ping-msg "$(ps -eo pid,%mem,cmd --sort=-%mem | head -n 6)"</nowiki>}}
The location for runcommands created in the application, if you decide to copy them can be found in:
then find KDE folder and navigate down to kdenconnect folder {{Path|..\KDEe.V.KDEConnect_[HASH]\LocalCache\Local\kdeconnect}}
if yours has a config file, '''this config file is what you copy between other device ids to use the same commmands elsewhere'''.
Then that paired device has the commands you created within the KDE windows app from a remote device.
If it doesn't have a config file, you didn't set up custom commands in the kde windows application.
1.) Anything specific to rundll32 commands or user32 dll commands e.g. "Rundll32.exe user32.dll,LockWorkStation"
2.) Commands that you would run via the shell/powershell/or command prompt "start powershell -NoExit -command <command>" (start and powershell are optional -NoExit flag to keep window from closing) and so are similar to launching it from the start menu.
3.)Finally, the third option here is using software called [https://www.nirsoft.net/utils/nircmd.html Nircmd]
----
("Start Powershell" is optional, as nircmd can run without having to show a shell prompt) So more than one format is provided.
*Mute System Volume
{{Output|1=<nowiki>start powershell -command nircmd mutesysvolume 1</nowiki>}}
*UnMute System Volume
{{Output|1=<nowiki>start powershell -command nircmd mutesysvolume 0</nowiki>}}
*System Volume 25%
{{Output|1=<nowiki>start powershell -command nircmd nircmd.exe setsysvolume 16383.75</nowiki>}}
*System Volume 50%
{{Output|1=<nowiki>start powershell -command nircmd nircmd.exe setsysvolume 32767.5</nowiki>}}
*System Volume 75%
{{Output|1=<nowiki>start powershell -command nircmd nircmd.exe setsysvolume 49151.25</nowiki>}}
*System Volume 100%
{{Output|1=<nowiki>start powershell -command nircmd nircmd.exe setsysvolume 65535</nowiki>}}
*System Volume Up 2000 units (out of 65535) - Number Value Can be to whatever way you prefer, but the volume shifts by that %
{{Output|1=<nowiki>nircmd changesysvolume 2000</nowiki>}}
*System Volume Down 5000 units (out of 65535)
{{Output|1=<nowiki>nircmd.exe changesysvolume -5000</nowiki>}}
*Immediate Shutdown (or timed shutdown if you place your time in seconds instead of 0)
{{Output|1=<nowiki>PowerShell -Command "shutdown /s /t 0"</nowiki>}}
*Restart Computer (you can time it by adding /t and time in seconds)
{{Output|1=<nowiki>PowerShell -Command "shutdown /r"</nowiki>}}
WIP
Youtube control and media control can also be done via simulated keypresses through nircmd. You can either set them to your preference.
**To extend further, commands run via and android phone open a URL, opening that URL launches the command -> and so use of that command via tasker, or KWGT is possible.
For Rundll32
[https://www.tenforums.com/tutorials/77458-rundll32-commands-list-windows-10-a.html here]
and
[https://www.elevenforum.com/t/complete-list-of-rundll32-commands-in-windows-11.17062/ here]
For Powershell
[https://ss64.com/ps/ here] and
[https://devblogs.microsoft.com/scripting/table-of-basic-powershell-commands/ here]
Loading messages...
0% translated, 0% reviewed
Retrieved from "https://userbase.kde.org/Special:Translate"