forked from brl/citadel
David McKinney
c08e51c9ae
- Added citadel-setpassword.service and shell script to set a default password of 'citadel' in install mode, does not run in any other mode or if a password is already set - Re-implement disable logging out of Gnome: * Lock preventing log outs in gsettings override * Patched gnome-session so that locking log outs does not lock shutting down * Patched gnome-shell to remove 'Log Out' from status label - Added keyboard shortcut for Citadel Realms UI (gtk) to gnome-shell: * Added gsetting for the shortcut * Separated inital realm dconf database and Citadel dconf databases to use different settings for each * Added Ctrl+Alt+c as the keyboard shortcut for launching Citadel Realms UI to the citadel dconf database - Added neovim init.vim to realms skel since neovim is now default vim in realms
38 lines
1.3 KiB
BlitzBasic
38 lines
1.3 KiB
BlitzBasic
DESCRIPTION = ""
|
|
HOMEPAGE = ""
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
DEPENDS = "dconf-native"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
SRC_URI = "\
|
|
file://gsettings/90_citadel.gschema.override \
|
|
file://dconf/build.d/realms.d/initial-realm-dconf.conf \
|
|
file://dconf/build.d/citadel.d/citadel-dconf.conf \
|
|
"
|
|
|
|
inherit allarch gsettings
|
|
|
|
do_compile() {
|
|
mkdir -p ${WORKDIR}/dconf-output
|
|
# Build the binary dconf database which is installed by default into each new realm
|
|
dconf compile ${WORKDIR}/dconf-output/user ${S}/dconf/build.d/realms.d/
|
|
# Build the binary dconf database which is installed by default into /home/citadel
|
|
dconf compile ${WORKDIR}/dconf-output/citadel ${S}/dconf/build.d/citadel.d/
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${datadir}/glib-2.0/schemas
|
|
install -d ${D}${sysconfdir}/skel/.config/dconf
|
|
install -m 0755 -d ${D}${datadir}/factory/skel
|
|
install -m 0755 -d ${D}${datadir}/factory/skel/.config/dconf
|
|
|
|
install -m 644 ${S}/gsettings/90_citadel.gschema.override ${D}${datadir}/glib-2.0/schemas
|
|
install -m 644 ${WORKDIR}/dconf-output/user ${D}${sysconfdir}/skel/.config/dconf
|
|
install -m 644 ${WORKDIR}/dconf-output/citadel ${D}${datadir}/factory/skel/.config/dconf/user
|
|
}
|
|
|
|
FILES_${PN} = "/"
|