2 Star 3 Fork 0

优麒麟/kylin-display-switch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
switchers_service.py 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Copyright (C) 2017, Tianjin KYLIN Information Technology Co., Ltd.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import subprocess
class SwitchersService:
def get_capslock_status(self):
handle = subprocess.Popen("xset q", shell=True, stdout=subprocess.PIPE)
handle.wait()
res = handle.communicate()[0]
res = res.decode()
capslock = res[res.find("Caps Lock:") + 9:]
capslock = capslock[capslock.find("o"):capslock.find("o") + 2]
if capslock == "on":
return True
else:
return False
def get_numlock_status(self):
handle = subprocess.Popen("xset q", shell=True, stdout=subprocess.PIPE)
handle.wait()
res = handle.communicate()[0]
res = res.decode()
numlock = res[res.find("Num Lock:") + 9:]
numlock = numlock[numlock.find("o"):numlock.find("o") + 2]
if numlock == "on":
return True
else:
return False
def main():
w = SwitchersService()
print(w.get_capslock_status())
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ubuntukylin/kylin-display-switch.git
git@gitee.com:ubuntukylin/kylin-display-switch.git
ubuntukylin
kylin-display-switch
kylin-display-switch
master

搜索帮助