summaryrefslogtreecommitdiff
path: root/taro/attic
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2024-10-08 13:29:19 -0400
committerAndrew Opalach <andrew@akon.city> 2024-10-08 13:35:00 -0400
commit4d81d3b52952edb7a0cc329b4d0b302599b6c4c7 (patch)
treeba2e6b103e9c1a2c4b9679565b91322eabf8126e /taro/attic
parent0bf9b26b87075448d49482fe4411739af765d872 (diff)
downloadmauri-4d81d3b52952edb7a0cc329b4d0b302599b6c4c7.tar.gz
mauri-4d81d3b52952edb7a0cc329b4d0b302599b6c4c7.tar.bz2
mauri-4d81d3b52952edb7a0cc329b4d0b302599b6c4c7.zip
Axe wine stuff, add config.json, cleanup
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'taro/attic')
-rw-r--r--taro/attic/sway_background_covered.diff9
1 files changed, 4 insertions, 5 deletions
diff --git a/taro/attic/sway_background_covered.diff b/taro/attic/sway_background_covered.diff
index fe375e2..0dc9401 100644
--- a/taro/attic/sway_background_covered.diff
+++ b/taro/attic/sway_background_covered.diff
@@ -209,7 +209,7 @@ index 44b941ca..9004c3cb 100644
return output;
}
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
-index f8709a4c..3727116d 100644
+index f8709a4c..36ea5fc0 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -88,8 +88,12 @@ struct sway_workspace *workspace_create(struct sway_output *output,
@@ -233,7 +233,7 @@ index f8709a4c..3727116d 100644
list_free(workspace->current.floating);
list_free(workspace->current.tiling);
free(workspace);
-@@ -616,6 +621,78 @@ bool workspace_is_empty(struct sway_workspace *ws) {
+@@ -616,6 +621,77 @@ bool workspace_is_empty(struct sway_workspace *ws) {
return true;
}
@@ -265,7 +265,6 @@ index f8709a4c..3727116d 100644
+static void add_con_and_or_children_to_list(list_t *result, list_t *list)
+{
+ struct sway_container *con;
-+ const char *app_id;
+ for (int i = 0; i < list->length; ++i) {
+ con = list->items[i];
+ if (con->current.children) {
@@ -273,7 +272,8 @@ index f8709a4c..3727116d 100644
+ if (con->current.layout != L_NONE) return;
+ }
+ if (!con->view || !con->view->wlr_xdg_toplevel) continue; // Hack.
-+ if ((app_id = view_get_app_id(con->view)) && strcmp(app_id, TERMINAL_APP_ID) != 0) {
++ const char *app_id = view_get_app_id(con->view);
++ if (app_id == NULL || strcmp(app_id, TERMINAL_APP_ID) != 0) {
+ list_add(result, con);
+ }
+ }
@@ -308,7 +308,6 @@ index f8709a4c..3727116d 100644
+ }
+}
+
-+
static int find_output(const void *id1, const void *id2) {
return strcmp(id1, id2);
}