Compare commits
No commits in common. "0075d58b25053b5e5c6db18eda666e4695856af8" and "2ad9d8bfdb2cbad7f22df3bb60f4e68ab71562fd" have entirely different histories.
0075d58b25
...
2ad9d8bfdb
7 changed files with 11 additions and 216 deletions
|
@ -1,6 +1,6 @@
|
||||||
const { execAsync, lookUpIcon } = ags.Utils;
|
const { CACHE_DIR, execAsync, ensureDirectory, lookUpIcon } = ags.Utils;
|
||||||
const { Button, Icon, Label, Stack, Slider, CenterBox } = ags.Widget;
|
const { Button, Icon, Label, Box, Stack, Slider, CenterBox } = ags.Widget;
|
||||||
const { Gdk } = imports.gi;
|
const { GLib, Gtk, Gdk } = imports.gi;
|
||||||
const display = Gdk.Display.get_default();
|
const display = Gdk.Display.get_default();
|
||||||
|
|
||||||
import { EventBox } from '../misc/cursorbox.js';
|
import { EventBox } from '../misc/cursorbox.js';
|
||||||
|
@ -33,7 +33,6 @@ export const CoverArt = (player, params) => CenterBox({
|
||||||
[player, box => {
|
[player, box => {
|
||||||
execAsync(['bash', '-c', `[[ -f "${player.coverPath}" ]] && coloryou "${player.coverPath}"`])
|
execAsync(['bash', '-c', `[[ -f "${player.coverPath}" ]] && coloryou "${player.coverPath}"`])
|
||||||
.then(out => {
|
.then(out => {
|
||||||
if (box) {
|
|
||||||
player.colors.value = JSON.parse(out);
|
player.colors.value = JSON.parse(out);
|
||||||
|
|
||||||
box.setStyle(`background: radial-gradient(circle,
|
box.setStyle(`background: radial-gradient(circle,
|
||||||
|
@ -42,7 +41,6 @@ export const CoverArt = (player, params) => CenterBox({
|
||||||
url("${player.coverPath}");
|
url("${player.coverPath}");
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center;`);
|
background-position: center;`);
|
||||||
}
|
|
||||||
}).catch(err => { if (err !== "") print(err) });
|
}).catch(err => { if (err !== "") print(err) });
|
||||||
}],
|
}],
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,134 +0,0 @@
|
||||||
const { Window, Box, CenterBox, Icon } = ags.Widget;
|
|
||||||
const { Hyprland, Applications } = ags.Service;
|
|
||||||
const { Gtk } = imports.gi;
|
|
||||||
|
|
||||||
import { EventBox } from '../misc/cursorbox.js';
|
|
||||||
|
|
||||||
const SCALE = 0.11;
|
|
||||||
const MARGIN = 8;
|
|
||||||
|
|
||||||
export const Overview = Window({
|
|
||||||
name: 'overview',
|
|
||||||
layer: 'overlay',
|
|
||||||
//popup: true,
|
|
||||||
anchor: 'top',
|
|
||||||
margin: [ 0, 0, 0, 0 ],
|
|
||||||
child: Box({
|
|
||||||
className: 'overview',
|
|
||||||
vertical: true,
|
|
||||||
children: [
|
|
||||||
CenterBox({
|
|
||||||
children: [
|
|
||||||
null,
|
|
||||||
Box({
|
|
||||||
className: 'normal',
|
|
||||||
}),
|
|
||||||
null,
|
|
||||||
],
|
|
||||||
}),
|
|
||||||
CenterBox({
|
|
||||||
children: [
|
|
||||||
null,
|
|
||||||
Box({
|
|
||||||
className: 'special',
|
|
||||||
}),
|
|
||||||
null,
|
|
||||||
],
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
connections: [
|
|
||||||
[Hyprland, box => {
|
|
||||||
box._workspaces = box.children[0].centerWidget.children.concat(
|
|
||||||
box.children[1].centerWidget.children)
|
|
||||||
let newWorkspaces = Hyprland.workspaces;
|
|
||||||
|
|
||||||
if (newWorkspaces.length > box._workspaces.length) {
|
|
||||||
box._updateWs(box);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (box._canUpdate)
|
|
||||||
box._updateApps(box);
|
|
||||||
|
|
||||||
}],
|
|
||||||
],
|
|
||||||
properties: [
|
|
||||||
['canUpdate', true],
|
|
||||||
['workspaces'],
|
|
||||||
['clients'],
|
|
||||||
|
|
||||||
['updateApps', box => {
|
|
||||||
ags.Utils.execAsync('hyprctl clients -j')
|
|
||||||
.then(result => {
|
|
||||||
box._clients = JSON.parse(result).filter(client => client.class)
|
|
||||||
|
|
||||||
box._workspaces.forEach(workspace => {
|
|
||||||
let fixed = workspace.children[0].child;
|
|
||||||
fixed.get_children().forEach(ch => ch.destroy());
|
|
||||||
|
|
||||||
box._clients.filter(app => app.workspace.id == workspace._id).forEach(app => {
|
|
||||||
let active = '';
|
|
||||||
if (app.address == Hyprland.active.client.address) {
|
|
||||||
active = 'active';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (app.size[0] === 0) {
|
|
||||||
app.size[0] = 1524;
|
|
||||||
app.size[1] = 908;
|
|
||||||
}
|
|
||||||
|
|
||||||
fixed.put(
|
|
||||||
Icon({
|
|
||||||
className: `window ${active}`,
|
|
||||||
style: `min-width: ${app.size[0] * SCALE - MARGIN}px;
|
|
||||||
min-height: ${app.size[1] * SCALE - MARGIN}px;`,
|
|
||||||
icon: app.class,
|
|
||||||
size: 40,
|
|
||||||
}),
|
|
||||||
app.at[0] * SCALE,
|
|
||||||
app.at[1] * SCALE
|
|
||||||
);
|
|
||||||
});
|
|
||||||
fixed.show_all();
|
|
||||||
});
|
|
||||||
}).catch(print);
|
|
||||||
}],
|
|
||||||
|
|
||||||
['updateWs', box => {
|
|
||||||
if (!box._canUpdate)
|
|
||||||
return;
|
|
||||||
|
|
||||||
box._canUpdate = false;
|
|
||||||
const id = Hyprland.instance.connect('changed', () => {
|
|
||||||
Hyprland.workspaces.forEach(ws => {
|
|
||||||
if (box._workspaces.some(ch => ch._id == ws.id))
|
|
||||||
return;
|
|
||||||
|
|
||||||
var childI = 0;
|
|
||||||
if (ws.id < 0) {
|
|
||||||
childI = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
box.children[childI].centerWidget.add(
|
|
||||||
Box({
|
|
||||||
properties: [['id', ws.id]],
|
|
||||||
className: 'workspace',
|
|
||||||
child: EventBox({
|
|
||||||
tooltipText: `Workspace: ${ws.id}`,
|
|
||||||
child: ags.Widget({
|
|
||||||
type: Gtk.Fixed,
|
|
||||||
}),
|
|
||||||
}),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
});
|
|
||||||
box.show_all();
|
|
||||||
if (box.children[0].centerWidget.children.length > 0) {
|
|
||||||
Hyprland.instance.disconnect(id);
|
|
||||||
box._canUpdate = true;
|
|
||||||
box._updateApps(box);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}],
|
|
||||||
],
|
|
||||||
}),
|
|
||||||
});
|
|
|
@ -12,4 +12,3 @@
|
||||||
@import "./widgets/date.scss";
|
@import "./widgets/date.scss";
|
||||||
@import "./widgets/quick-settings.scss";
|
@import "./widgets/quick-settings.scss";
|
||||||
@import "./widgets/player.scss";
|
@import "./widgets/player.scss";
|
||||||
@import "./widgets/overview.scss";
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
.overview {
|
|
||||||
min-height: 1px;
|
|
||||||
min-width: 1px;
|
|
||||||
|
|
||||||
.workspace .window {
|
|
||||||
border-radius: 10px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.normal {
|
|
||||||
margin-bottom: 5px;
|
|
||||||
|
|
||||||
.workspace {
|
|
||||||
margin: 0 10px;
|
|
||||||
|
|
||||||
.window {
|
|
||||||
border: 2px solid #411C6C;
|
|
||||||
|
|
||||||
&.active {
|
|
||||||
border: 2px solid purple;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.special {
|
|
||||||
|
|
||||||
.workspace {
|
|
||||||
margin: 0 5px;
|
|
||||||
|
|
||||||
.window {
|
|
||||||
border: 2px solid lighten($color: black, $amount: 20);
|
|
||||||
|
|
||||||
&.active {
|
|
||||||
border: 2px solid purple;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -664,23 +664,3 @@ calendar:indeterminate {
|
||||||
|
|
||||||
.position-slider slider:hover {
|
.position-slider slider:hover {
|
||||||
transition: background-color 0.5s ease-in-out; }
|
transition: background-color 0.5s ease-in-out; }
|
||||||
|
|
||||||
.overview {
|
|
||||||
min-height: 1px;
|
|
||||||
min-width: 1px; }
|
|
||||||
.overview .workspace .window {
|
|
||||||
border-radius: 10px; }
|
|
||||||
.overview .normal {
|
|
||||||
margin-bottom: 5px; }
|
|
||||||
.overview .normal .workspace {
|
|
||||||
margin: 0 10px; }
|
|
||||||
.overview .normal .workspace .window {
|
|
||||||
border: 2px solid #411C6C; }
|
|
||||||
.overview .normal .workspace .window.active {
|
|
||||||
border: 2px solid purple; }
|
|
||||||
.overview .special .workspace {
|
|
||||||
margin: 0 5px; }
|
|
||||||
.overview .special .workspace .window {
|
|
||||||
border: 2px solid #333333; }
|
|
||||||
.overview .special .workspace .window.active {
|
|
||||||
border: 2px solid purple; }
|
|
||||||
|
|
|
@ -16,11 +16,6 @@ let
|
||||||
# always installs latest version
|
# always installs latest version
|
||||||
plugin = pluginGit "HEAD";
|
plugin = pluginGit "HEAD";
|
||||||
in {
|
in {
|
||||||
xdg.configFile = {
|
|
||||||
"../.gradle/gradle.properties".source = pkgs.writeText "gradle.properties" ''
|
|
||||||
org.gradle.java.home = ${pkgs.temurin-bin-17}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.neovim-nightly;
|
package = pkgs.neovim-nightly;
|
||||||
|
@ -42,7 +37,6 @@ in {
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
tree-sitter
|
tree-sitter
|
||||||
nodejs_latest
|
nodejs_latest
|
||||||
gradle
|
|
||||||
bat
|
bat
|
||||||
|
|
||||||
python311Packages.pylint
|
python311Packages.pylint
|
||||||
|
@ -61,7 +55,7 @@ in {
|
||||||
"~/.cache/sumneko_lua/log"
|
"~/.cache/sumneko_lua/log"
|
||||||
];
|
];
|
||||||
"sumneko-lua.serverDir" = "${pkgs.lua-language-server}/share/lua-language-server";
|
"sumneko-lua.serverDir" = "${pkgs.lua-language-server}/share/lua-language-server";
|
||||||
"java.jdt.ls.java.home" = "${pkgs.temurin-bin-17}";
|
"java.jdt.ls.java.home" = "${pkgs.temurin-bin-18}";
|
||||||
"bashIde.shellcheckPath" = "${pkgs.shellcheck}/bin/shellcheck";
|
"bashIde.shellcheckPath" = "${pkgs.shellcheck}/bin/shellcheck";
|
||||||
languageserver = {
|
languageserver = {
|
||||||
nix = {
|
nix = {
|
||||||
|
|
|
@ -71,8 +71,6 @@
|
||||||
|
|
||||||
# School
|
# School
|
||||||
virtmanager
|
virtmanager
|
||||||
gradle
|
|
||||||
gradle-completion
|
|
||||||
#camunda-modeler
|
#camunda-modeler
|
||||||
#
|
#
|
||||||
protonmail-bridge
|
protonmail-bridge
|
||||||
|
|
Loading…
Reference in a new issue