開啟聲音/藍芽

聲音 (Sound) - 使用 alamixer

安裝

pacman -S alsa-utils

用法

一、操作介面

2022-07-17_18-39

可以使用鍵盤操作

alasmixer
  • j - 降低音量
  • k - 調高音量
  • m - 靜音
  • Esc - 退出
  • h - 幫助
  • 也可以按數字去調節音量大小,比如按 6 就是 60% 音量大小

當然也可以使用滑鼠直接點或者滑鼠滾輪操作

二、指令

調高/降低音量

amixer set Master 10%+
amixer set Master 10%-

靜音/非靜音

amixer set Master mute
amixer set Master unmute
amixer set Master toggle

三、快捷鍵

得益於能用指令操作,所以我們可以把指令寫入 sxhkdrc 當中,實現用鍵盤按鍵調較音量大小

編輯 vim .config/sxhkd/sxhkdrc

XF86AudioRaiseVolume
        amixer set Master 5%+
XF86AudioLowerVolume
        amixer set Master 5%-
XF86AudioMute
        amixer set Master toggle      

藍芽 (Bluetooth) - 使用 blueman

安裝

pacman -S blueman (可能無用)
pacman -S bluez (這個軟件包提供藍牙的協議)
pacman -S bluez-utils (提供 bluetoothctl 工具)

開機自動啟動 bluetooth

systemctl enable bluetooth

開啟

systemctl start bluetooth
bluetoothctl power on

用法

bluetoothctl
agent on
default-agent
power on
scan on
pair xx:xx:xx:xx:xx (device ID)
trust xx:xx:xx:xx:xx
connect xx:xx:xx:xx:xx

編輯 /etc/bluetooth/main.conf 文件

[Policy]
AutoEnable=true