diff options
author | Joe <rbo@gmx.us> | 2025-01-13 13:47:23 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2025-01-13 13:47:23 +0100 |
commit | 81504231db4f2fe2e7aeb48b21d92244f32496e3 (patch) | |
tree | f0f73a2790e347580258afdb18cfbb7dadb21362 /.local/bin | |
parent | up (diff) | |
download | dotfiles-bsd-81504231db4f2fe2e7aeb48b21d92244f32496e3.tar.gz dotfiles-bsd-81504231db4f2fe2e7aeb48b21d92244f32496e3.tar.bz2 dotfiles-bsd-81504231db4f2fe2e7aeb48b21d92244f32496e3.tar.xz dotfiles-bsd-81504231db4f2fe2e7aeb48b21d92244f32496e3.tar.zst dotfiles-bsd-81504231db4f2fe2e7aeb48b21d92244f32496e3.zip |
up
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/dmbookm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.local/bin/dmbookm b/.local/bin/dmbookm index 2bfeb21..68c93f2 100755 --- a/.local/bin/dmbookm +++ b/.local/bin/dmbookm @@ -31,6 +31,8 @@ use constant LIST => { nua_zammad => 'https://support.nuabee.fr/', nua_atlas => 'https://atlas.nuabee.fr/', nua_share => 'https://share.nuabee.fr/', + nua_aether => 'https://aether.int.ysosecure.com/ui', + nua_gaia => 'https://gaia.int.ysosecure.com/', }; sub main @@ -50,7 +52,7 @@ sub main if (HOSTNAME eq "mars") { $prefix += '/local'; } - for (keys %{LIST()}) { + for (sort keys %{LIST()}) { $list .= $_ . "\n"; } $choice = `printf "$list" | dmenu -i -l 100 -sb '$color' -shb '$color'`; |