Skip to content

Commit

Permalink
auto-dark-light@gihaume: Fix compilation bug (linuxmint#6797)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-mueller authored Jan 23, 2025
1 parent 13939df commit fb651d7
Show file tree
Hide file tree
Showing 5 changed files with 672 additions and 6 deletions.
4 changes: 4 additions & 0 deletions auto-dark-light@gihaume/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.2.2 - 23.01.2025

- Added missing import in `time_change_listener/main.cpp` for GCC 14.2

## 1.2.1 - 22.10.2024

- Custom commands launching feature:
Expand Down
2 changes: 1 addition & 1 deletion auto-dark-light@gihaume/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This Cinnamon applet brings the ability to automatically switch between dark and

## Features

- Dump system themes and desktop background settings in one click to take advantage of the Cinnamon settings menu.
- Dump system themes and desktop background settings as light/dark presets in one click in order to keep using the Cinnamon settings menu.
- Sync location from the system `Region` and `City` settings using a local database to automatically determine the geographical coordinates.
- Enter manually any geographical coordinates if needed.
- Always sync instantaneously with external changes of color scheme, region/city and time (useful in e.g. after a sleep wake up).
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const {Gio, GLib} = imports.gi;

class Dbus {
class Dbus { // namespace-like
/** An interface to read the system screensaver lock state. */
static Screen_lock = class {
#signal_id;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "time_change_listener.hpp"

#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
Expand Down

0 comments on commit fb651d7

Please sign in to comment.