sh change_gdm_background

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh change_gdm_background相关的知识,希望对你有一定的参考价值。

sudo cp -R gnome-shell-theme.gresource /usr/share/gnome-shell
glib-compile-resources gnome-shell-theme.gresource.xml
#lockDialogGroup {
  background: #2c001e url(background.jpg);         
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
}
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
 <gresource prefix="/org/gnome/shell/theme">
 <file>calendar-arrow-left.svg</file>
 <file>calendar-arrow-right.svg</file>
 <file>calendar-today.svg</file>
 <file>checkbox-focused.svg</file>
 <file>checkbox-off-focused.svg</file>
 <file>checkbox-off.svg</file>
 <file>checkbox.svg</file>
 <file>close-window.svg</file>
 <file>close.svg</file>
 <file>corner-ripple-ltr.png</file>
 <file>corner-ripple-rtl.png</file>
 <file>dash-placeholder.svg</file>
 <file>filter-selected-ltr.svg</file>
 <file>filter-selected-rtl.svg</file>
 <file>gnome-shell.css</file>
 <file>gnome-shell-high-contrast.css</file>
 <file>logged-in-indicator.svg</file>
 <file>filename</file>
 <file>more-results.svg</file>
 <file>no-events.svg</file>
 <file>no-notifications.svg</file>
 <file>noise-texture.png</file>
 <file>page-indicator-active.svg</file>
 <file>page-indicator-inactive.svg</file>
 <file>page-indicator-checked.svg</file>
 <file>page-indicator-hover.svg</file>
 <file>process-working.svg</file>
 <file>running-indicator.svg</file>
 <file>source-button-border.svg</file>
 <file>summary-counter.svg</file>
 <file>toggle-off-us.svg</file>
 <file>toggle-off-intl.svg</file>
 <file>toggle-on-us.svg</file>
 <file>toggle-on-intl.svg</file>
 <file>ws-switch-arrow-up.png</file>
 <file>ws-switch-arrow-down.png</file>
 </gresource>
</gresources>
#!/bin/sh
workdir=${HOME}/tmp/shell-theme
if [ ! -d ${workdir}/theme ]; then
 mkdir -p ${workdir}/theme
fi
gst=/usr/share/gnome-shell/gnome-shell-theme.gresource
for r in `gresource list $gst`; do
 gresource extract $gst $r >$workdir${r/#\/org\/gnome\/shell/}
done

以上是关于sh change_gdm_background的主要内容,如果未能解决你的问题,请参考以下文章

如何使我的命令行在具有扩展名(.sh)和名称如“weird.sh.sh.sh”的文件上工作

sh sh_template.sh

sh sh.sh

Linux下面如何运行 SH文件

配置告警系统主脚本main.sh mon.sh load.sh 502.sh disk.sh

shell 脚本各种执行方式(source ./*.sh, . ./*.sh, ./*.sh)的区别