tools: Drop gnome-shell-overrides-migration.sh
The tool was added in 2018 to migrate to per-desktop overrides from the old overrides system. 5 years later, everyone who’s going to migrate probably has migrated, so we can delete the script and remove a process running on every login. Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2611>
This commit is contained in:
parent
be8b23efb7
commit
a9e6e44ef8
@ -1,5 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=GNOME settings overrides migration
|
|
||||||
NoDisplay=true
|
|
||||||
Exec=@libexecdir@/gnome-shell-overrides-migration.sh
|
|
@ -99,15 +99,6 @@ schema = configure_file(
|
|||||||
)
|
)
|
||||||
install_data('00_org.gnome.shell.gschema.override', install_dir: schemadir)
|
install_data('00_org.gnome.shell.gschema.override', install_dir: schemadir)
|
||||||
|
|
||||||
overrides_migration_conf = configuration_data()
|
|
||||||
overrides_migration_conf.set('libexecdir', libexecdir)
|
|
||||||
overrides_migration = configure_file(
|
|
||||||
input: 'gnome-shell-overrides-migration.desktop.in',
|
|
||||||
output: 'gnome-shell-overrides-migration.desktop',
|
|
||||||
configuration: overrides_migration_conf,
|
|
||||||
install_dir: autostartdir
|
|
||||||
)
|
|
||||||
|
|
||||||
if have_systemd
|
if have_systemd
|
||||||
unitconf = configuration_data()
|
unitconf = configuration_data()
|
||||||
unitconf.set('bindir', bindir)
|
unitconf.set('bindir', bindir)
|
||||||
|
@ -283,7 +283,6 @@ subdir('js')
|
|||||||
subdir('src')
|
subdir('src')
|
||||||
subdir('po')
|
subdir('po')
|
||||||
subdir('data')
|
subdir('data')
|
||||||
subdir('tools')
|
|
||||||
|
|
||||||
if get_option('tests')
|
if get_option('tests')
|
||||||
subdir('tests')
|
subdir('tests')
|
||||||
|
@ -1,38 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
PKG_DATA_DIR=${XDG_DATA_HOME:-$HOME/.local/share}/gnome-shell
|
|
||||||
|
|
||||||
MIGRATION_GUARD=$PKG_DATA_DIR/gnome-overrides-migrated
|
|
||||||
OVERRIDE_SCHEMA=
|
|
||||||
|
|
||||||
if [ -f $MIGRATION_GUARD ]; then
|
|
||||||
exit # already migrated
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Find the right session
|
|
||||||
if echo $XDG_CURRENT_DESKTOP | grep -q -v GNOME; then
|
|
||||||
exit # not a GNOME session
|
|
||||||
fi
|
|
||||||
|
|
||||||
if echo $XDG_CURRENT_DESKTOP | grep -q Classic; then
|
|
||||||
OVERRIDE_SCHEMA=org.gnome.shell.extensions.classic-overrides
|
|
||||||
else
|
|
||||||
OVERRIDE_SCHEMA=org.gnome.shell.overrides
|
|
||||||
fi
|
|
||||||
|
|
||||||
mkdir -p $PKG_DATA_DIR
|
|
||||||
|
|
||||||
for k in `gsettings list-keys $OVERRIDE_SCHEMA`
|
|
||||||
do
|
|
||||||
if [ $k = button-layout ]; then
|
|
||||||
orig_schema=org.gnome.desktop.wm.preferences
|
|
||||||
else
|
|
||||||
orig_schema=org.gnome.mutter
|
|
||||||
fi
|
|
||||||
|
|
||||||
oldValue=`gsettings get $OVERRIDE_SCHEMA $k`
|
|
||||||
curValue=`gsettings get $orig_schema $k`
|
|
||||||
if [ $oldValue != $curValue ]; then
|
|
||||||
gsettings set $orig_schema $k $oldValue
|
|
||||||
fi
|
|
||||||
done && touch $MIGRATION_GUARD
|
|
@ -1,4 +0,0 @@
|
|||||||
install_data('gnome-shell-overrides-migration.sh',
|
|
||||||
install_dir: libexecdir,
|
|
||||||
install_mode: 'rwxr-xr-x'
|
|
||||||
)
|
|
Loading…
x
Reference in New Issue
Block a user