-
Notifications
You must be signed in to change notification settings - Fork 257
CLI usage without Gnome environment
JingMatrix edited this page Jun 16, 2023
·
13 revisions
We can use gsconnect
without Gnome installed, this page explains how to do it for general wayland
environment.
- Build
libgnome-volume-control
, which is a subproject ofgnome-shell
but can be built independently; - Install ydotool, and start its service:
systemctl start --user ydotool.service
; - Install
wl-type
andwl-clipboard
.
- Clone this repo;
- Build and install it:
meson build
,ninja -C build install-zip
; - Creat symbolic link
gsconnect
, for example:ln -s $HOME/.local/share/gnome-shell/extensions/[email protected]/service/daemon.js gsconnect
; - Put
gsconnect
into your PATH.
For example, with waybar
and hack nerd
font, one can do the following steps.
Save the following script as to ~/.config/waybar/gsconnect-status.py
.
#! python3
from pydbus import SessionBus
import json
session_bus = SessionBus()
proxy_gsconnect = session_bus.get(
'org.gnome.Shell.Extensions.GSConnect',
'/org/gnome/Shell/Extensions/GSConnect')
gsconnect = proxy_gsconnect[
'org.freedesktop.DBus.ObjectManager']
waybar = {'text': "", 'tooltip': "", "class": "GSdevices", "types": ""}
icons = {'smartphone-symbolic': "", "tablet-symbolic": "",
'tv-symbolic': "", 'computer-symbolic': ""}
types = []
devices = gsconnect.GetManagedObjects()
for dev in devices:
devinfo = devices[dev]['org.gnome.Shell.Extensions.GSConnect.Device']
if devinfo['Connected']:
if devinfo['Paired']:
types.append(devinfo['Type'])
waybar['text'] += icons[devinfo['IconName']] + ' '
waybar['tooltip'] += devinfo['Name'] + '\n'
if not devinfo['Paired']:
types.append(devinfo['Type'])
waybar['text'] += ' ' + ' '
waybar['tooltip'] += devinfo['Name'] + '\n'
waybar['types'] = '+'.join(types)
for key in waybar:
waybar[key] = waybar[key].strip()
print(json.dumps(waybar))
Install pydbus and test the above script (run gsconnect
first) to ensure there is no problem.
In this step, we assume that you know how to config waybar
custom module. If not, see the waybar
manual page for instructions`
- Create symbolic link:
ln -s $HOME/.local/share/gnome-shell/extensions/[email protected]/gsconnect-preferences gsconnect-preferences
; - Put
gsconnect-preferences
into your PATH; - Add
waybar
custom module:
"custom/gsconnect" : {
"format": "{}",
"escape": true,
"exec": "python3 $HOME/.config/waybar/gsconnect-status.py",
"return-type": "json",
"tooltip": "{tooltip}",
"interval": 30,
"on-click": "gsconnect-preferences",
}