mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-02-18 12:11:54 +00:00
- 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.
106 lines
2.4 KiB
TypeScript
106 lines
2.4 KiB
TypeScript
export type i18nStruct = {
|
|
language: string,
|
|
|
|
cancel: string,
|
|
accept: string,
|
|
|
|
connected: string,
|
|
disconnected: string,
|
|
connecting: string,
|
|
unknown: string,
|
|
none: string,
|
|
limited: string,
|
|
|
|
devices: string,
|
|
others: string,
|
|
|
|
disconnect: string,
|
|
connect: string,
|
|
|
|
apps: string,
|
|
clear: string,
|
|
copy_to_clipboard: string,
|
|
|
|
media: {
|
|
loop: string,
|
|
song_loop: string,
|
|
no_loop: string,
|
|
shuffle_order: string,
|
|
follow_order: string,
|
|
pause: string,
|
|
play: string,
|
|
next: string,
|
|
previous: string,
|
|
no_artist: string,
|
|
no_title: string
|
|
},
|
|
control_center: {
|
|
tiles: {
|
|
enabled: string,
|
|
disabled: string,
|
|
more: string,
|
|
|
|
network: {
|
|
network: string,
|
|
wireless: string,
|
|
wired: string
|
|
},
|
|
recording: {
|
|
title: string,
|
|
disabled_desc: string,
|
|
enabled_desc: string
|
|
},
|
|
dnd: {
|
|
title: string
|
|
},
|
|
night_light: {
|
|
title: string,
|
|
default_desc: string
|
|
}
|
|
},
|
|
pages: {
|
|
more_settings: string,
|
|
|
|
sound: {
|
|
title: string,
|
|
description: string
|
|
},
|
|
microphone: {
|
|
title: string,
|
|
description: string
|
|
},
|
|
network: {
|
|
title: string,
|
|
interface: string
|
|
},
|
|
backlight: {
|
|
title: string,
|
|
description: string,
|
|
refresh: string
|
|
},
|
|
bluetooth: {
|
|
title: string,
|
|
description: string,
|
|
adapters: string,
|
|
new_devices: string,
|
|
paired_devices: string,
|
|
start_discovering: string,
|
|
stop_discovering: string,
|
|
trust_device: string,
|
|
untrust_device: string,
|
|
pair_device: string,
|
|
unpair_device: string
|
|
},
|
|
night_light: {
|
|
title: string,
|
|
description: string,
|
|
temperature: string,
|
|
gamma: string
|
|
}
|
|
}
|
|
},
|
|
ask_popup: {
|
|
title: string
|
|
}
|
|
};
|