Linkbar

Submit portable freeware that you find here. It helps if you include information like description, extraction instruction, Unicode support, whether it writes to the registry, and so on.
Post Reply
Message
Author
Llewelyn
Posts: 65
Joined: Sat Oct 22, 2022 11:41 am

Linkbar

#1 Post by Llewelyn »

Linkbar - Windows desktop toolbar

Linkbar will come in handy for users that need more than one taskbar on their desktop.
The application is totally customizable, from Icon size, padding or position on the screen.
Moreover, Linkbar provides users with an Autohide option and the ability to open multiple instances.

Note:
1) Linkbar support Windows Vista and above
2) Linkbar work with .lnk, .url and .website files

Image

Homepage: https://github.com/ATGH15102AFMLD/Linkbar
Download: https://github.com/ATGH15102AFMLD/Linkbar/releases

Run the program and on the first screen leave the default option for all users. It does not require admin rights and it is portable as it is, you don't have to do anythin else. If you chose current user needs some extra work. Stealth

User avatar
Midas
Posts: 6726
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: Linkbar

#2 Post by Midas »

Great. 8)

Alas, not entirely stealth -- without the "-f" command line parameter, bars are saved to '%APPDATA%\Linkbar\'. It also doesn't seem to pick up folders to display their content. Its memory footprint is about 10MB for one Linkbar.

I make do with Windows 10 default taskbar toolbars; Linkbar would improve that functionality somewhat.

Now, if only it could be shrunk to a floating toolbar, I wouldn't even mind the eventual lack of stealth...

Here's how my test Linkbar looked with 48px icons:

Image

Drop this in a BATch file to make Linkbar portable and stealth (note the relative path to the LBR file):

Code: Select all

@start "" Linkbar64.exe -f.\Data\user_bar.lbr

Llewelyn
Posts: 65
Joined: Sat Oct 22, 2022 11:41 am

Re: Linkbar

#3 Post by Llewelyn »

If you create linkbar only for you (current user), you have to move the lbr file from %Appdata% to application folder and then run linkbar with the command Linkbar64.exe -f.\^.lbr with the actual name of the lbr file in place of wildcard *
Last edited by Llewelyn on Thu Mar 21, 2024 11:50 am, edited 1 time in total.

User avatar
Midas
Posts: 6726
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: Linkbar

#4 Post by Midas »

@Llewelyn: yep, I eventually got there, too (see the code box above)... Thanks. 8)

Apparently, you don't even need to mention the SBR file in the given path. Yes, you do -- I just hadn't deleted my '%APPDATA%' folder yet, and Linkbar silently retrieved its settings from there... :oops:

Llewelyn
Posts: 65
Joined: Sat Oct 22, 2022 11:41 am

Re: Linkbar

#5 Post by Llewelyn »

Added to the database: https://www.portablefreeware.com/?id=3105
Please vote

User avatar
Andrew Lee
Posts: 3063
Joined: Sat Feb 04, 2006 9:19 am
Contact:

Re: Linkbar

#6 Post by Andrew Lee »

When starting Linkbar, the following dialog appears:
dialog.png
dialog.png (6.3 KiB) Viewed 927 times
What value should I choose for the folder?

Llewelyn
Posts: 65
Joined: Sat Oct 22, 2022 11:41 am

Re: Linkbar

#7 Post by Llewelyn »

Create a subfolder inside application folder (where it will store the shortcuts of the linkbar you' ll create) and browse for that

User avatar
Andrew Lee
Posts: 3063
Joined: Sat Feb 04, 2006 9:19 am
Contact:

Re: Linkbar

#8 Post by Andrew Lee »

Llewelyn wrote: Mon Apr 01, 2024 12:33 am Create a subfolder inside application folder (where it will store the shortcuts of the linkbar you' ll create) and browse for that
I see.. that threw me off a bit.

So here's my take on portability. For the "All users" case, any linkbar that you create will result in a corresponding {GUID}.lbr file in Shared bars folder. Each .lbr file will contain the settings for that linkbar, as well as a pointer to the data folder:

Code: Select all

[Main]
dirlinks=x:\Linkbar-1.6.9\lbdata1
The above example assumes I have the app extracted to x:\Linkbar-1.6.9 (where x is my memory stick containing my portable apps), and I have created a subfolder called lbdata1 to store my first linkbar (and presumably lbdata2 if I wish to create another linkbar etc.)

So by default, relative path is not used, which means if I try to run it on a different PC and the drive letter of my memory stick is not longer x, the program will fail to load the linkbar.

Thankfully, I found that by manually editing the dirlinks param to be a relative path:

Code: Select all

[Main]
dirlinks=.\lbdata1
the program still works and now I have better portability.

Did I miss anything?

Llewelyn
Posts: 65
Joined: Sat Oct 22, 2022 11:41 am

Re: Linkbar

#9 Post by Llewelyn »

So, in the Path portability field i choose manual relative path?
Last edited by Llewelyn on Thu Apr 04, 2024 8:22 am, edited 5 times in total.

User avatar
Midas
Posts: 6726
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: Linkbar

#10 Post by Midas »

Andrew Lee wrote: When starting Linkbar, the following dialog appears...
Yes, that dialog can be downright confusing when you're striving for portability. :|

Andrew Lee wrote: So by default, relative path is not used, which means if I try to run it on a different PC and the drive letter of my memory stick is not longer x, the program will fail to load the linkbar.

Thankfully, I found that by manually editing the dirlinks param to be a relative path:

Code: Select all

[Main]
dirlinks=x:\Linkbar-1.6.9\lbdata1
Looks like you edited the INI file but I'm failing to grasp how entering an absolute path there solves the issue...

Isn't the BATch file method I posted above easier? :?

Llewelyn
Posts: 65
Joined: Sat Oct 22, 2022 11:41 am

Re: Linkbar

#11 Post by Llewelyn »

DEL
Last edited by Llewelyn on Thu Apr 04, 2024 8:12 am, edited 1 time in total.

Llewelyn
Posts: 65
Joined: Sat Oct 22, 2022 11:41 am

Re: Linkbar

#12 Post by Llewelyn »

There's also a beta version at sourceforge
https://sourceforge.net/projects/linkba ... .0%20beta/
Last edited by Llewelyn on Thu Apr 04, 2024 8:13 am, edited 1 time in total.

User avatar
Andrew Lee
Posts: 3063
Joined: Sat Feb 04, 2006 9:19 am
Contact:

Re: Linkbar

#13 Post by Andrew Lee »

Midas wrote: Mon Apr 01, 2024 4:13 am
Andrew Lee wrote: When starting Linkbar, the following dialog appears...
Yes, that dialog can be downright confusing when you're striving for portability. :|

Andrew Lee wrote: So by default, relative path is not used, which means if I try to run it on a different PC and the drive letter of my memory stick is not longer x, the program will fail to load the linkbar.

Thankfully, I found that by manually editing the dirlinks param to be a relative path:

Code: Select all

[Main]
dirlinks=x:\Linkbar-1.6.9\lbdata1
Looks like you edited the INI file but I'm failing to grasp how entering an absolute path there solves the issue...

Isn't the BATch file method I posted above easier? :?
My apologies, that's me being my muddle-headed self again :oops:

It should be:

Code: Select all

[Main]
dirlinks=.\lbdata1
I have updated my original post to correct this mistake.

User avatar
Midas
Posts: 6726
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: Linkbar

#14 Post by Midas »

NP. 8)

Post Reply