Let me preface this by saying I am very new to Linux, so I apologize if this post seems banal.
I wanted to do it the "clean" way by going into Setup>Defaults in the menu, thus opening bindings.conf. I understand I'm supposed to change $browser to something other than chromium, but I cannot for the life of me find the "proper" name of Zen Browser, so whenever I save the file, the browser shortcut just doesn't open anything. If anyone knows how to find the proper/terminal name of Zen (or maybe even generally, any installed app), I would greatly appreciate the info.
#Trying to set Zen Browser as the default browser.
14 messages · Page 1 of 1 (latest)
same issue
go into zen browser settings then set it as defualt
same as you would do on firefox
i think
find the .desktop file for it. I'm not at my linux system and this is also my first linux adventures but they should live in an /applications dir and you'll see what its named. Also, if you search "default" under Omarchy-help you'll find a couple threads of people changing the default browser. There should be an xdg-settings command like xdg-settings set default...
This command might help but it is AI generated just fyi
find /usr/share /home/$USER/.local/share -type f -name "*.desktop"
a suggestion before running would be to do man find which will open the manual for find
The find utility recursively descends the directory tree for each path listed, evaluating an expression (composed of the “primaries” and “operands” listed below) in terms of each file in the tree.
-type t
True if the file is of the specified type. Possible file types are as follows:
b block special
c character special
d directory
f regular file
l symbolic link
p FIFO
s socket
name is self explanatory
So that find command is searching in those two directories for a regular file that contains any characters but ends in .desktop 🙂
here are some potentially helpful threads as well
https://discord.com/channels/1390012484194275541/1424978199372107837
https://discord.com/channels/1390012484194275541/1422939257294684231
https://discord.com/channels/1390012484194275541/1421391190707798056
hope this helps
Depends, did you downliad it through flatpak, AUR, or pacman repos? Each one has it's own approach. You need to figure that out, after that it's as easy as asking an AI assistant to get the app id for you (I ran into the same issue before, AI assistants are pretty reliable for this kind of stuff)
First thing I tried. Doesn't work
I got it!
just had to grep it using this command:
ls /var/lib/flatpak/exports/share/applications | grep zen
Thanks guys
omg i was just checking stuff as u sent this saved me a lot of time tysm
Yeah that's exactly what I meant. Most people download it through Flatpak but some do through other repos (idk if it exists on AUR or pacman)