Compare commits
No commits in common. "main" and "v0.5" have entirely different histories.
6 changed files with 19 additions and 6 deletions
|
@ -1,2 +0,0 @@
|
||||||
# Global rule, if anything matches after this then that rule takes precedent
|
|
||||||
* @JoshStrobl
|
|
|
@ -1,2 +1,2 @@
|
||||||
[com.solus-project.icon-tasklist]
|
[com.solus-project.icon-tasklist]
|
||||||
pinned-launchers=['nemo.desktop', 'org.mozilla.firefox.desktop', 'org.gnome.Rhythmbox3.desktop', 'org.gnome.Software.desktop', 'org.xfce.Parole.desktop']
|
pinned-launchers=['nemo.desktop', 'firefox.desktop', 'org.gnome.Rhythmbox3.desktop', 'org.gnome.Software.desktop', 'org.xfce.Parole.desktop']
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
[org.gnome.desktop.interface:Budgie]
|
[org.gnome.desktop.interface:Budgie]
|
||||||
color-scheme='prefer-dark'
|
color-scheme='prefer-dark'
|
||||||
gtk-theme='Pocillo-dark'
|
gtk-theme='Materia-dark'
|
||||||
icon-theme='Papirus'
|
icon-theme='Papirus'
|
||||||
|
|
12
lightdm/meson.build
Normal file
12
lightdm/meson.build
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
schemas = [
|
||||||
|
'x.dm.slick-greeter.gschema.override',
|
||||||
|
]
|
||||||
|
|
||||||
|
custom_target('10_budgie_org_lightdm.gschema.override',
|
||||||
|
capture: true,
|
||||||
|
command: ['cat', '@INPUT@'],
|
||||||
|
input: schemas,
|
||||||
|
install_dir: path_schema,
|
||||||
|
install: true,
|
||||||
|
output: '10_budgie_org_lightdm.gschema.override',
|
||||||
|
)
|
2
lightdm/x.dm.slick-greeter.gschema.override
Normal file
2
lightdm/x.dm.slick-greeter.gschema.override
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[x.dm.slick-greeter]
|
||||||
|
background='file:///usr/share/backgrounds/budgie/valley-midnight.jpg'
|
|
@ -1,7 +1,7 @@
|
||||||
project(
|
project(
|
||||||
'budgie-desktop-defaults',
|
'budgie-desktop-defaults',
|
||||||
'c',
|
'c',
|
||||||
version: '0.5.2',
|
version: '0.5',
|
||||||
license: [
|
license: [
|
||||||
'CC-BY-SA-4.0'
|
'CC-BY-SA-4.0'
|
||||||
],
|
],
|
||||||
|
@ -16,6 +16,7 @@ path_schema = join_paths(path_data, 'glib-2.0', 'schemas')
|
||||||
|
|
||||||
subdir('budgie')
|
subdir('budgie')
|
||||||
subdir('gnome')
|
subdir('gnome')
|
||||||
|
subdir('lightdm')
|
||||||
|
|
||||||
report = [
|
report = [
|
||||||
' Build configuration:',
|
' Build configuration:',
|
||||||
|
@ -26,4 +27,4 @@ report = [
|
||||||
' schema dir: @0@'.format(path_schema),
|
' schema dir: @0@'.format(path_schema),
|
||||||
]
|
]
|
||||||
|
|
||||||
message('\n\n\n' + '\n'.join(report) + '\n\n')
|
message('\n\n\n' + '\n'.join(report) + '\n\n')
|
Loading…
Add table
Add a link
Reference in a new issue