Skip to content

Commit

Permalink
Move cinnamon style accents (#80)
Browse files Browse the repository at this point in the history
- Move cinnamon accent styles file to cinnamon
  theme sources
- Modify meson build script to include cinnamon
  accent styles
  • Loading branch information
hsbasu authored Apr 12, 2024
1 parent 56c1f28 commit 8403c17
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
File renamed without changes.
15 changes: 15 additions & 0 deletions cinnamon-shell/src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,18 @@ foreach variant: variants
# install_dir: theme_dir
# )
endforeach

# install accent to share/cinnamon/styles.d
cinnamon_accents_dir = join_paths(get_option('datadir'), 'cinnamon/styles.d')

accent_style_asset_dir = meson.current_source_dir()
accent_style_assets = files(
run_command(
'find', accent_style_asset_dir, '-name', '*.styles', check: true
).stdout().strip().split('\n')
)

# install accent style assets
foreach accent_style_asset: accent_style_assets
install_data(accent_style_asset, install_dir: cinnamon_accents_dir)
endforeach
14 changes: 0 additions & 14 deletions files/meson.build

This file was deleted.

1 change: 0 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ python = find_program('python3')
sassc = find_program('sassc')

subdir('common')
subdir('files')

components = [
'metacity',
Expand Down

0 comments on commit 8403c17

Please sign in to comment.