12 lines
172 B
Plaintext
12 lines
172 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
#Used directory
|
||
|
|
||
|
gnomedir=/usr/share/gnome-shell
|
||
|
theme=gnome-shell-theme.gresource
|
||
|
|
||
|
#Backup Gnome GDM theme in .old file
|
||
|
|
||
|
cd $gnomedir
|
||
|
cp -f $theme $theme.old
|