mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-02-18 20:21:53 +00:00
feat: make AGS colorshell configuration fully declarative
- Add complete colorshell v2.0.3 configuration to home/ags-config/ - Disable runner plugin and NightLight tile (incompatible with NixOS) - Customize SCSS with full opacity (no transparency) - Add dark pale blue color scheme in home/pywal-colors/ - Configure Papirus-Dark icon theme via home-manager - Make ~/.config/ags/ immutable and managed by Nix store - Auto-deploy pywal colors to ~/.cache/wal/colors.json All AGS configuration is now reproducible and version controlled.
This commit is contained in:
112
home/ags-config/@girs/dbusglib-1.0.d.ts
vendored
Normal file
112
home/ags-config/@girs/dbusglib-1.0.d.ts
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
/// <reference path="./gobject-2.0.d.ts" />
|
||||
/// <reference path="./glib-2.0.d.ts" />
|
||||
|
||||
/**
|
||||
* Type Definitions for Gjs (https://gjs.guide/)
|
||||
*
|
||||
* These type definitions are automatically generated, do not edit them by hand.
|
||||
* If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gir
|
||||
*
|
||||
* The based EJS template file is used for the generated .d.ts file of each GIR module like Gtk-4.0, GObject-2.0, ...
|
||||
*/
|
||||
|
||||
declare module 'gi://DBusGLib?version=1.0' {
|
||||
// Module dependencies
|
||||
import type GObject from 'gi://GObject?version=2.0';
|
||||
import type GLib from 'gi://GLib?version=2.0';
|
||||
|
||||
export namespace DBusGLib {
|
||||
/**
|
||||
* DBusGLib-1.0
|
||||
*/
|
||||
|
||||
namespace Proxy {
|
||||
// Signal signatures
|
||||
interface SignalSignatures extends GObject.Object.SignalSignatures {}
|
||||
|
||||
// Constructor properties interface
|
||||
|
||||
interface ConstructorProps extends GObject.Object.ConstructorProps {}
|
||||
}
|
||||
|
||||
class Proxy extends GObject.Object {
|
||||
static $gtype: GObject.GType<Proxy>;
|
||||
|
||||
/**
|
||||
* Compile-time signal type information.
|
||||
*
|
||||
* This instance property is generated only for TypeScript type checking.
|
||||
* It is not defined at runtime and should not be accessed in JS code.
|
||||
* @internal
|
||||
*/
|
||||
$signals: Proxy.SignalSignatures;
|
||||
|
||||
// Constructors
|
||||
|
||||
constructor(properties?: Partial<Proxy.ConstructorProps>, ...args: any[]);
|
||||
|
||||
_init(...args: any[]): void;
|
||||
|
||||
// Signals
|
||||
|
||||
connect<K extends keyof Proxy.SignalSignatures>(
|
||||
signal: K,
|
||||
callback: GObject.SignalCallback<this, Proxy.SignalSignatures[K]>,
|
||||
): number;
|
||||
connect(signal: string, callback: (...args: any[]) => any): number;
|
||||
connect_after<K extends keyof Proxy.SignalSignatures>(
|
||||
signal: K,
|
||||
callback: GObject.SignalCallback<this, Proxy.SignalSignatures[K]>,
|
||||
): number;
|
||||
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
||||
emit<K extends keyof Proxy.SignalSignatures>(
|
||||
signal: K,
|
||||
...args: GObject.GjsParameters<Proxy.SignalSignatures[K]> extends [any, ...infer Q] ? Q : never
|
||||
): void;
|
||||
emit(signal: string, ...args: any[]): void;
|
||||
}
|
||||
|
||||
class Connection {
|
||||
static $gtype: GObject.GType<Connection>;
|
||||
|
||||
// Constructors
|
||||
|
||||
_init(...args: any[]): void;
|
||||
}
|
||||
|
||||
class MethodInvocation {
|
||||
static $gtype: GObject.GType<MethodInvocation>;
|
||||
|
||||
// Constructors
|
||||
|
||||
_init(...args: any[]): void;
|
||||
}
|
||||
|
||||
class ProxyClass {
|
||||
static $gtype: GObject.GType<ProxyClass>;
|
||||
|
||||
// Constructors
|
||||
|
||||
_init(...args: any[]): void;
|
||||
}
|
||||
|
||||
/**
|
||||
* Name of the imported GIR library
|
||||
* `see` https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
|
||||
*/
|
||||
const __name__: string;
|
||||
/**
|
||||
* Version of the imported GIR library
|
||||
* `see` https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
|
||||
*/
|
||||
const __version__: string;
|
||||
}
|
||||
|
||||
export default DBusGLib;
|
||||
}
|
||||
|
||||
declare module 'gi://DBusGLib' {
|
||||
import DBusGLib10 from 'gi://DBusGLib?version=1.0';
|
||||
export default DBusGLib10;
|
||||
}
|
||||
// END
|
||||
Reference in New Issue
Block a user