add package
This commit is contained in:
parent
c89844eca3
commit
b3e94841e7
7 changed files with 111 additions and 1 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
build
|
26
PKGBUILD
Normal file
26
PKGBUILD
Normal file
|
@ -0,0 +1,26 @@
|
|||
pkgname=parch-gdm-settings
|
||||
pkgver=0.1
|
||||
pkgrel=4
|
||||
pkgdesc="Parch settings and theme for gdm"
|
||||
arch=('any')
|
||||
url="https://github.com/parchlinuxb/parch-gdm-settings"
|
||||
license=("GPL-3.0")
|
||||
depends=("gnome-parch")
|
||||
source=("rootfs.zip")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
|
||||
package() {
|
||||
cp -r * $pkgdir
|
||||
chmod 544 /usr/share/gnome-shell/gnome-shell-theme.gresource
|
||||
chmod 544 /etc/dconf/db/gdm.d/95-parch-gdm-config
|
||||
chmod 544 /etc/gdm/gdm-login-logo
|
||||
}
|
||||
|
||||
post_install(){
|
||||
mv /usr/share/gnome-shell/parch-gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource
|
||||
chmod 544 /usr/share/gnome-shell/gnome-shell-theme.gresource
|
||||
chmod 544 /etc/dconf/db/gdm.d/95-parch-gdm-config
|
||||
chmod 544 /etc/gdm/gdm-login-logo
|
||||
|
||||
}
|
|
@ -1,4 +1,3 @@
|
|||
# Parch gdm settings
|
||||
Theme and setting files of gdm for parch
|
||||
|
||||
made by [meshya](https://github.com/meshya)
|
||||
|
|
7
build.sh
Normal file
7
build.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
rm -rf build
|
||||
mkdir build
|
||||
cd rootfs
|
||||
zip -r ../build/rootfs.zip ./*
|
||||
cd ../build
|
||||
cp ../PKGBUILD .
|
||||
makepkg -sc
|
77
rootfs/etc/dconf/db/gdm.d/95-parch-gdm-config
Normal file
77
rootfs/etc/dconf/db/gdm.d/95-parch-gdm-config
Normal file
|
@ -0,0 +1,77 @@
|
|||
#-------- Interface ---------
|
||||
[org/gnome/desktop/interface]
|
||||
#----------------------------
|
||||
cursor-theme='Adwaita'
|
||||
cursor-size=24
|
||||
icon-theme='Papirus-Dark'
|
||||
show-battery-percentage=true
|
||||
clock-show-seconds=false
|
||||
clock-show-weekday=false
|
||||
clock-format='12h'
|
||||
font-name='Cantarell 11'
|
||||
font-antialiasing='grayscale'
|
||||
font-hinting='slight'
|
||||
text-scaling-factor=1.0
|
||||
|
||||
#---- Accessibility ----
|
||||
[org/gnome/desktop/a11y]
|
||||
#------------------------
|
||||
always-show-universal-access-status=false
|
||||
|
||||
#-------- Sound ---------
|
||||
[org/gnome/desktop/sound]
|
||||
#------------------------
|
||||
theme-name='freedesktop'
|
||||
event-sounds=true
|
||||
input-feedback-sounds=false
|
||||
allow-volume-above-100-percent=false
|
||||
|
||||
#-------------- Mouse ---------------
|
||||
[org/gnome/desktop/peripherals/mouse]
|
||||
#------------------------------------
|
||||
accel-profile='default'
|
||||
natural-scroll=false
|
||||
speed=0.0
|
||||
|
||||
#-------------- Touchpad ---------------
|
||||
[org/gnome/desktop/peripherals/touchpad]
|
||||
#---------------------------------------
|
||||
speed=0.0
|
||||
tap-to-click=true
|
||||
natural-scroll=true
|
||||
two-finger-scrolling-enabled=true
|
||||
disable-while-typing=true
|
||||
|
||||
#---------------- Power -----------------
|
||||
[org/gnome/settings-daemon/plugins/power]
|
||||
#----------------------------------------
|
||||
power-button-action='suspend'
|
||||
power-saver-profile-on-low-battery=true
|
||||
dim-screen=true
|
||||
sleep-inactive-ac-type='suspend'
|
||||
sleep-inactive-ac-timeout=900
|
||||
sleep-inactive-battery-type='suspend'
|
||||
sleep-inactive-battery-timeout=900
|
||||
|
||||
#--------------- Session ----------------
|
||||
[org/gnome/desktop/session]
|
||||
#----------------------------------------
|
||||
idle-delay=300
|
||||
|
||||
#------------- Night Light --------------
|
||||
[org/gnome/settings-daemon/plugins/color]
|
||||
#----------------------------------------
|
||||
night-light-enabled=false
|
||||
night-light-temperature=uint32 2700
|
||||
night-light-schedule-automatic=true
|
||||
night-light-schedule-from=20.0
|
||||
night-light-schedule-to=6.0
|
||||
|
||||
#----- Login Screen ----
|
||||
[org/gnome/login-screen]
|
||||
#-----------------------
|
||||
logo='/etc/gdm/gdm-login-logo'
|
||||
banner-message-enable=false
|
||||
banner-message-text=''
|
||||
disable-restart-buttons=false
|
||||
disable-user-list=false
|
BIN
rootfs/etc/gdm/gdm-login-logo
Normal file
BIN
rootfs/etc/gdm/gdm-login-logo
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.3 KiB |
BIN
rootfs/usr/share/gnome-shell/parch-gnome-shell-theme.gresource
Normal file
BIN
rootfs/usr/share/gnome-shell/parch-gnome-shell-theme.gresource
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue