buggy syncthing tray

This commit is contained in:
Daniel Langbein 2024-01-01 17:06:31 +01:00
parent f94e43f34a
commit e1351f8ef7
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -19,7 +19,7 @@
#gnomeExtensions.syncthing-icon
# Actively maintained, already adjusted for GNOME 45.
# Did not work properly, see below.
#gnomeExtensions.syncthing-indicator
gnomeExtensions.syncthing-indicator
];
#
@ -30,19 +30,20 @@
# I had to edit
# /home/yoda/.config/systemd/user/syncthing.service
# and adjust the path to the syncthing executable.
# Then I could start Syncthing throug the extension.
# But it does still not work properly :/
# It does not detect my folders and the sync status.
# Then I could start (but not stop) Syncthing throug the extension :D
# However, it does still not work properly: It does not detect my folders and the sync status.
# But this is still better than nothing ^^
# programs.dconf.enable = true;
# home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
# dconf.settings = {
# "org/gnome/shell" = {
# disable-user-extensions = false;
# enabled-extensions = [
# pkgs.gnomeExtensions.syncthing-indicator.extensionUuid
# ];
# };
# };
# };
programs.dconf.enable = true;
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
dconf.settings = {
"org/gnome/shell" = {
disable-user-extensions = false;
enabled-extensions = [
pkgs.gnomeExtensions.syncthing-indicator.extensionUuid
];
};
};
};
}