Ubuntu 筆記本設定合蓋不息屏

Undefined443發表於2024-08-03
  1. 編輯 logind.conf 檔案

    你可以透過編輯 /etc/systemd/logind.conf 檔案來控制蓋子關閉時的行為:

    找到以下幾行(如果不存在,可以手動新增):

    #HandleLidSwitch=suspend
    #HandleLidSwitchExternalPower=suspend
    #HandleLidSwitchDocked=ignore
    

    將它們修改為如下:

    HandleLidSwitch=ignore
    HandleLidSwitchExternalPower=ignore
    HandleLidSwitchDocked=ignore
    

    這將告訴系統在蓋子關閉時忽略這個事件,而不是進入睡眠或其他模式。

  2. 重啟 systemd-logind 服務以應用更改:

    sudo systemctl restart systemd-logind
    

相關文章