3
1

More than 5 years have passed since last update.

(win)Batを用いて音量調節のショートカットを作成、Logicoolマウス G502に割り当てる(個人メモ)

Last updated at Posted at 2019-08-26

キーボード操作もマウス移動も行わず、音量バーを表示してホイール操作で音量調節するためのもの。

音量.bat
@echo off
cd /d %~dp0
::コマンドプロンプトを最小化状態で実行する
if not "%X_MIMIMIZED%"=="1" (
    set X_MIMIMIZED=1
    start /min cmd /c,"%~0" %*
    exit
)
::数値を0にすると左上表示
call %windir%\System32\SndVol.exe -f 49825268

Logicoolソフトウェア設定.png
Logicoolソフトウェア.png
デスクトップ.png

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1