diff options
Diffstat (limited to '.local')
-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'`; |