Currently, the App Icons are smaller than necessary due to the white dot being shown for open apps below them. I don't think that's a good design decision given the small height you have there. It would make much more sense to make the icons as big as possible (using the full height) and indicate open apps in a different way. This way could be:
I think it would make sense to add options to the preferences for each of this style, so users can opt for whichever they prefer. For me, I would opt for either the second or third option. I'd need to try them out first to make a final decision.
I agree. That would be great.
I'll definitely take this in consideration for future releases 👍
BTW, I think the spacing between icons should be configurable, because I have lots of apps running and they can't fit into one row. Simple patch:
diff --git a/Pock/Widgets/Dock/DockWidget.swift b/Pock/Widgets/Dock/DockWidget.swift
index 0290348..a303aaa 100644
--- a/Pock/Widgets/Dock/DockWidget.swift
+++ b/Pock/Widgets/Dock/DockWidget.swift
@@ -149,12 +149,12 @@ extension DockWidget {
self.dockContentView.addSubview(itemView)
/// Change x position
- itemView.frame.origin.x = 50 * CGFloat(index)
+ itemView.frame.origin.x = 40 * CGFloat(index)
})
/// Update dockContentView content size
- self.dockContentView.frame.size.width = 50 * CGFloat(self.items.count)
+ self.dockContentView.frame.size.width = 40 * CGFloat(self.items.count)
self.dockContentView.frame.size.height = self.dockScrollView.frame.height
/// Set dockContentView as scrollView's documentView
Most helpful comment
I'll definitely take this in consideration for future releases 👍