Initial commit

The only thing working is showing the users calendars in the sidebar.
This commit is contained in:
Jeena 2024-01-26 16:49:29 +09:00
commit b07ce820cd
30 changed files with 2314 additions and 0 deletions

13
data/icons/meson.build Normal file
View file

@ -0,0 +1,13 @@
application_id = 'net.jeena.jnotes'
scalable_dir = 'hicolor' / 'scalable' / 'apps'
install_data(
scalable_dir / ('@0@.svg').format(application_id),
install_dir: get_option('datadir') / 'icons' / scalable_dir
)
symbolic_dir = 'hicolor' / 'symbolic' / 'apps'
install_data(
symbolic_dir / ('@0@-symbolic.svg').format(application_id),
install_dir: get_option('datadir') / 'icons' / symbolic_dir
)