Skip to content

Commit

Permalink
Merge pull request #6 from invertime/main
Browse files Browse the repository at this point in the history
Addition to content on README and fixed some errors in worldlocationfinder
  • Loading branch information
nothingneko authored Jan 8, 2024
2 parents 6179b24 + 25fa414 commit 3d16555
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.
48 changes: 47 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,47 @@
# Kairos
<img align="left" style="vertical-align: middle" width="120" height="120" src="data/icons/128/com.fyralabs.Kairos.svg">

# Kairos

Check the weather outside

![Screenshot](data/shot.png)

###

[![Please do not theme this app](https://stopthemingmy.app/badge.svg)](https://stopthemingmy.app)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)

## 🛠️ Dependencies

You'll need the following dependencies:

> _Note_: This dependency list is the names searched for by `pkg-config`. Depending on your distribution, you may need to install other packages (for example, `gtk4-devel` on Fedora)
- `valac`
- `gtk4`
- `libhelium-1`

## 🏗️ Building

Simply clone this repo, then run `meson build` to configure the build environment. Change to the build directory and run `ninja test` to build and run automated tests.

```bash
$ meson build --prefix=/usr
$ cd build
$ ninja test
```

For debug messages on the GUI application, set the `G_MESSAGES_DEBUG` environment variable, e.g. to `all`:

```bash
G_MESSAGES_DEBUG=all ./src/com.fyralabs.Kairos
```

## 📦 Installing

To install, use `ninja install`, then execute with `com.fyralabs.Kairos`.

```bash
$ sudo ninja install
$ com.fyralabs.Kairos
```
1 change: 1 addition & 0 deletions data/ui/weatherpage.ui
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<template class="KairosWeatherPage" parent="HeBin">
Expand Down
4 changes: 3 additions & 1 deletion data/ui/worldlocationfinder.ui
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<template class="KairosWorldLocationFinder" parent="HeWindow">
Expand All @@ -9,7 +10,8 @@
<property name="spacing">12</property>
<child>
<object class="HeAppBar">
<property name="show-buttons">1</property>
<property name="show-left-title-buttons">0</property>
<property name="show-right-title-buttons">1</property>
<property name="show-back">0</property>
</object>
</child>
Expand Down

0 comments on commit 3d16555

Please sign in to comment.