mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
feat: update ags
This commit is contained in:
66
home/desktops/hyprland/ags/js/themes.js
Normal file
66
home/desktops/hyprland/ags/js/themes.js
Normal file
@@ -0,0 +1,66 @@
|
||||
/**
|
||||
* A Theme is a set of options that will be applied
|
||||
* ontop of the default values. see options.js for possible options
|
||||
*/
|
||||
import { Theme, WP, lightColors } from "./settings/theme.js";
|
||||
|
||||
export default [
|
||||
Theme({
|
||||
name: "Kitty Dark",
|
||||
icon: "",
|
||||
"desktop.wallpaper.img": WP + "kittybl.jpeg",
|
||||
}),
|
||||
Theme({
|
||||
name: "Kitty Light",
|
||||
icon: "",
|
||||
"desktop.wallpaper.img": WP + "kitty.jpeg",
|
||||
...lightColors,
|
||||
"theme.widget.bg": "$accent",
|
||||
"theme.widget.opacity": 64,
|
||||
}),
|
||||
Theme({
|
||||
name: "Leaves",
|
||||
icon: "",
|
||||
"desktop.wallpaper.img": WP + "leaves.jpg",
|
||||
"theme.accent.accent": "$green",
|
||||
"theme.accent.gradient": "to right, $accent, darken($accent, 14%)",
|
||||
"theme.widget.opacity": 92,
|
||||
"border.opacity": 86,
|
||||
"theme.bg": "transparentize(#171717, 0.3)",
|
||||
"bar.style": "floating",
|
||||
radii: 0,
|
||||
}),
|
||||
Theme({
|
||||
name: "Ivory",
|
||||
icon: "",
|
||||
...lightColors,
|
||||
"desktop.wallpaper.img": WP + "ivory.png",
|
||||
"desktop.wallpaper.fg": "$bg_color",
|
||||
"desktop.screen_corners": false,
|
||||
"bar.style": "separated",
|
||||
"theme.widget.bg": "$accent",
|
||||
"theme.widget.opacity": 64,
|
||||
"desktop.drop_shadow": false,
|
||||
"border.width": 2,
|
||||
"border.opacity": 0,
|
||||
"theme.accent.gradient": "to right, $accent, darken($accent, 6%)",
|
||||
"hypr.inactive_border": "rgba(111111FF)",
|
||||
"bar.separators": false,
|
||||
}),
|
||||
Theme({
|
||||
name: "Space",
|
||||
icon: "",
|
||||
"desktop.wallpaper.img": WP + "space.jpg",
|
||||
spacing: 11,
|
||||
padding: 10,
|
||||
radii: 12,
|
||||
"theme.accent.accent": "$magenta",
|
||||
"desktop.screen_corners": false,
|
||||
"desktop.clock.enable": false,
|
||||
"bar.separators": false,
|
||||
"bar.icon": "",
|
||||
"theme.bg": "transparentize(#171717, 0.3)",
|
||||
"theme.widget.opacity": 95,
|
||||
"bar.flat_buttons": false,
|
||||
}),
|
||||
];
|
||||
Reference in New Issue
Block a user