mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
8 lines
287 B
Bash
Executable File
8 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Adapted from https://github.com/basecamp/omarchy/tree/master?tab=readme-ov-file
|
|
#
|
|
browser="chromium.desktop"
|
|
|
|
exec setsid uwsm app -- $(sed -n 's/^Exec=\([^ ]*\).*/\1/p' {~/.local,~/.nix-profile,/usr}/share/applications/$browser 2>/dev/null | head -1) --app="$1" "${@:2}"
|