Adjust GNOME-Shell so that it uses a Guix theme by default. Patch by Ludovic Courtès . diff -ur a/data/gnome-shell-theme.gresource.xml b/data/gnome-shell-theme.gresource.xml --- a/data/gnome-shell-theme.gresource.xml 2019-12-11 15:06:31.000000000 -0500 +++ b/data/gnome-shell-theme.gresource.xml 2019-12-21 00:31:55.895866241 -0500 @@ -19,6 +19,8 @@ no-events.svg no-notifications.svg noise-texture.png + guix-background.png + guix-logo.png pad-osd.css pointer-double-click-symbolic.svg pointer-drag-symbolic.svg diff -ur a/data/theme/gnome-shell-sass/_common.scss b/data/theme/gnome-shell-sass/_common.scss --- a/data/theme/gnome-shell-sass/_common.scss 2019-12-11 15:06:31.000000000 -0500 +++ b/data/theme/gnome-shell-sass/_common.scss 2019-12-21 00:33:49.495832135 -0500 @@ -1994,7 +1994,16 @@ } } - .login-dialog-logo-bin { padding: 24px 0px; } + .login-dialog-logo-bin { + /* Make it a bit narrower than .login-dialog-user-list. */ + width: 12em; + height: 8em; + background: url(resource:///org/gnome/shell/theme/guix-logo.png); + background-color: transparent; + background-repeat: no-repeat; + background-size: contain; + background-position: center; } + .login-dialog-banner { color: darken($osd_fg_color,10%); } .login-dialog-button-box { spacing: 5px; } .login-dialog-message-warning { color: $warning_color; } @@ -2143,9 +2152,10 @@ } #lockDialogGroup { - background: lighten(#2e3436, 8%) url(resource:///org/gnome/shell/theme/noise-texture.png); - background-repeat: repeat; -} + background: lighten(#2e3436, 8%) url(resource:///org/gnome/shell/theme/guix-background.png); + background-repeat: no-repeat; + background-size: cover; + background-position: center; } #screenShieldNotifications { StButton#vhandle, StButton#hhandle { f77e5d5fa0c4669efa1012fc526868229821912'>root/gnu/packages/sync.scm
AgeCommit message (Expand)Author
2018-01-19gnu: Consistently Write ‘file system(s)’....It is the GNU way. * doc/guix.texi (Build Systems, DNS Services): Write ‘file system(s)’. * gnu/build/vm.scm (create-ext-file-system, create-fat-file-system): Likewise. * gnu/packages/backup.scm (dirvish, rsnapshot)[description]: Likewise. * gnu/packages/check.scm (python-testpath)[description]: Likewise. * gnu/packages/disk.scm (pydf)[description]: Likewise. * gnu/packages/file-systems.scm (disorderfs)[synopsis, description]: Likewise. (glusterfs)[description]: Likewise. * gnu/packages/haskell.scm (ghc-directory, ghc-system-fileio-bootstrap) (ghc-system-fileio)[synopsis]: Likewise. (ghc-fsnotify)[description]: Likewise. * gnu/packages/linux.scm (proot)[description]: Likewise. (jmtpfs)[synopsis, description]: Likewise. * gnu/packages/mate.scm (caja, caja-extensions)[description]: Likewise. * gnu/packages/storage.scm (ceph)[description]: Likewise. * gnu/packages/sync.scm (lsyncd)[description]: Likewise. * gnu/packages/syncthing.scm (syncthing)[synopsis]: Likewise. (go-github-com-zillode-notify)[description]: Likewise. * gnu/services/nfs.scm (pipefs-service-type): Likewise. * guix/scripts/system.scm (perform-action): Likewise. Tobias Geerinckx-Rice
2018-01-10gnu: lsyncd: Update to 2.2.2....* gnu/packages/sync.scm (lsyncd): Update to 2.2.2. Tobias Geerinckx-Rice
2017-11-18gnu: owncloud-client: Update to 2.3.4....* gnu/packages/sync.scm (owncloud-client): Update to 2.3.4. Efraim Flashner
2017-11-18gnu: owncloud-client: Don't check for updates....* gnu/packages/sync.scm (owncloud-client)[source]: Add patch. * gnu/packages/patches/owncloud-disable-updatecheck.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. Efraim Flashner
2017-09-17gnu: owncloud-client: Update to 2.3.3....* gnu/packages/sync.scm (owncloud-client): Update to 2.3.3. Efraim Flashner
2017-07-20gnu: qsyncthingtray: Update to 0.5.8....* gnu/packages/sync.scm (qsyncthingtray): Update to 0.5.8. Tobias Geerinckx-Rice
2017-04-26gnu: owncloud-client: Update to 2.3.1....* gnu/packages/sync.scm (owncloud-client): Update to 2.3.1. [arguments]: Enable more tests. Efraim Flashner
2017-01-24gnu: Add lsyncd....* gnu/packages/sync.scm (lsyncd): New variable. Ricardo Wurmus