Skip to content

Commit aa688b1

Browse files
README.md updates
1 parent 9b504f4 commit aa688b1

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ LIMITATION: multi-monitor is not well supported and may result in windows becomi
6464
if everything is horribly broken, clear your Saved Windows:
6565

6666
```
67-
$ gnome-extensions disable SmartAutoMove
68-
@khimaros.com
67+
$ gnome-extensions disable SmartAutoMoveNG
68+
@lauinger-clan.de
6969
70-
$ dconf write /org/gnome/shell/extensions/SmartAutoMove
70+
$ dconf write /org/gnome/shell/extensions/SmartAutoMoveNG
7171
/saved-windows '{}'
7272
73-
$ gnome-extensions enable SmartAutoMove
74-
@khimaros.com
73+
$ gnome-extensions enable SmartAutoMoveNG
74+
@lauinger-clan.de
7575
```
7676

7777
## behavior
@@ -88,69 +88,69 @@ most settings can be modified from the preferences GUI. this section documents a
8888
enable debug logging:
8989

9090
```
91-
$ dconf write /org/gnome/shell/extensions/SmartAutoMove
91+
$ dconf write /org/gnome/shell/extensions/SmartAutoMoveNG
9292
/debug-logging true
9393
```
9494

9595
set the minimum window/title match threshold to 50%:
9696

9797
```
98-
$ dconf write /org/gnome/shell/extensions/SmartAutoMove
98+
$ dconf write /org/gnome/shell/extensions/SmartAutoMoveNG
9999
/match-threshold 0.5
100100
```
101101

102102
set the window synchronization (update/restore) frequency to 50ms:
103103

104104
```
105-
$ dconf write /org/gnome/shell/extensions/SmartAutoMove
105+
$ dconf write /org/gnome/shell/extensions/SmartAutoMoveNG
106106
/sync-frequency 50
107107
```
108108

109109
default to ignoring windows unless explicitly defined. restore all windows of the gnome-calculator app, all firefox windows except for the profile chooser, and Nautilus only if the window title is "Downloads":
110110
/
111111

112112
```
113-
$ dconf write /org/gnome/shell/extensions/SmartAutoMove
113+
$ dconf write /org/gnome/shell/extensions/SmartAutoMoveNG
114114
/sync-mode "'IGNORE'"
115-
$ dconf write /org/gnome/shell/extensions/SmartAutoMove
115+
$ dconf write /org/gnome/shell/extensions/SmartAutoMoveNG
116116
/overrides '{"gnome-calculator": [{"action":1}], "firefox": [{"query": {"title": "Firefox - Choose User Profile"}, "action": 0}, {"action": 1}],"org.gnome.Nautilus":[{"query":{"title":"Downloads"},"action":1}]}'
117117
```
118118

119119
default to restoring all windows, but ignore the firefox profile chooser and any nautilus windows:
120120

121121
```
122-
$ dconf write /org/gnome/shell/extensions/SmartAutoMove
122+
$ dconf write /org/gnome/shell/extensions/SmartAutoMoveNG
123123
/sync-mode "'RESTORE'"
124-
$ dconf write /org/gnome/shell/extensions/SmartAutoMove
124+
$ dconf write /org/gnome/shell/extensions/SmartAutoMoveNG
125125
/overrides '{"firefox": [{"query": {"title": "Firefox - Choose User Profile"}, "action": 0}], "org.gnome.Nautilus": [{"action":0}]}'
126126
```
127127

128128
show all saved firefox windows (N.B. `jq` will fail if window title contains `\`):
129129

130130
```
131-
$ dconf read /org/gnome/shell/extensions/SmartAutoMove
131+
$ dconf read /org/gnome/shell/extensions/SmartAutoMoveNG
132132
/saved-windows | sed "s/^'//; s/'$//" | jq -C .Firefox | less -SR
133133
```
134134

135135
there are example configs in the `examples/` dir which can be loaded (N.B. while extension is disabled) with:
136136

137137
```
138-
$ dconf load /org/gnome/shell/extensions/SmartAutoMove
138+
$ dconf load /org/gnome/shell/extensions/SmartAutoMoveNG
139139
/ < ./examples/default-restore.dconf
140140
```
141141

142142
you can backup your config (restore is the same as above):
143143

144144
```
145-
$ dconf dump /org/gnome/shell/extensions/SmartAutoMove
146-
/ > SmartAutoMove
145+
$ dconf dump /org/gnome/shell/extensions/SmartAutoMoveNG
146+
/ > SmartAutoMoveNG
147147
.dconf
148148
```
149149

150150
the gsettings tool can also be used to manipulate these values:
151151

152152
```
153-
$ gsettings --schemadir ./SmartAutoMove
154-
@khimaros.com/schemas/ set org.gnome.shell.extensions.SmartAutoMove
153+
$ gsettings --schemadir ./SmartAutoMoveNG
154+
@lauinger-clan.de/schemas/ set org.gnome.shell.extensions.SmartAutoMoveNG
155155
sync-mode 'RESTORE'
156156
```

0 commit comments

Comments
 (0)