Alex funman300
  • Joined on 2026-01-25
funman300 pushed to main at funman300/dotfiles 2026-04-22 23:14:32 +00:00
c6f96bcac8 Add clipboard, idle timeouts, night light, bluetooth, and waybar improvements
funman300 pushed to main at funman300/dotfiles 2026-04-22 23:11:03 +00:00
50a189f08e Improve portability and add lid close setup
funman300 pushed to main at funman300/dotfiles 2026-04-22 19:50:56 +00:00
44e1dc2eee Add powermenu script and apply Tomorrow Night color theme
funman300 pushed to main at funman300/dotfiles 2026-04-22 19:36:33 +00:00
42c52bd2a6 niri: fix config syntax for niri 25.11
funman300 pushed to main at funman300/dotfiles 2026-04-22 18:44:36 +00:00
59a340f69c modified: README.md
funman300 created branch main in funman300/dotfiles 2026-04-22 18:42:13 +00:00
funman300 pushed to main at funman300/dotfiles 2026-04-22 18:42:13 +00:00
2c9d9c7c32 Initial Niri + Wayland dotfiles
funman300 created repository funman300/dotfiles 2026-04-22 18:41:21 +00:00
funman300 commented on issue funman300/umutray#8 2026-04-19 22:31:42 +00:00
Outdated Dependencies

Fixed in commit 4845ebe. Updated all dependencies: iced 0.13->0.14, ksni 0.2->0.3, dirs 5->6, toml 0.8->1, reqwest 0.12->0.13, rfd 0.15->0.17, iced_fonts 0.1->0.3. Migrated all API breaking changes.

funman300 closed issue funman300/umutray#9 2026-04-19 22:31:32 +00:00
Near-Duplicate Dependencies
funman300 commented on issue funman300/umutray#9 2026-04-19 22:31:29 +00:00
Near-Duplicate Dependencies

Fixed in commit 4845ebe. Removed the directories crate and consolidated with dirs. All config path resolution now uses dirs::config_dir().

funman300 closed issue funman300/umutray#10 2026-04-19 22:31:24 +00:00
Don't Parse PE Files
funman300 commented on issue funman300/umutray#10 2026-04-19 22:31:19 +00:00
Don't Parse PE Files

Fixed in commit 4845ebe. Removed pelite dependency entirely.

funman300 commented on issue funman300/umutray#10 2026-04-19 22:31:16 +00:00
Don't Parse PE Files

Fixed in commit 4845ebe. Removed pelite dependency entirely. PE file parsing was unreliable and unnecessary. The name resolution pipeline now relies on explicit names, store titles, manifests,…

funman300 closed issue funman300/umutray#8 2026-04-19 22:30:50 +00:00
Outdated Dependencies
funman300 pushed to main at funman300/umutray 2026-04-19 22:30:50 +00:00
4845ebe4f8 fix: update all dependencies, remove pelite and directories crates
funman300 pushed to main at funman300/umutray 2026-04-19 20:02:36 +00:00
c1893f9f64 refactor: rename service to autostart, fix fork bomb, add rfd file picker, use dirs crate, auto-start launcher, propagate overlays, ensure icon
funman300 commented on issue funman300/umutray#7 2026-04-19 19:17:55 +00:00
Fork Bomb

Fixed. Replaced all std::process::Command::new(exe) self-spawning patterns with direct std::thread::spawn calls that invoke the actual functions:

tray.rs:

  • spawn_setup() now calls…
funman300 commented on issue funman300/umutray#6 2026-04-19 19:17:47 +00:00
Use XDG Portal for File Picker

Fixed. Replaced the manual zenity/kdialog subprocess calls in util.rs with the rfd crate (rfd = "0.15" in Cargo.toml). Both pick_folder() and…

funman300 commented on issue funman300/umutray#5 2026-04-19 19:17:39 +00:00
Use a crate to find home directory

This is now fully fixed in the working tree. All std::env::var("HOME") usages (including the one introduced in commit a0ee01cd5d in detect.rs build_store_titles()) have been replaced with…