From 7f2f8c41f8b50f4caf0645000bce7084892e0807 Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Mon, 24 Jun 2024 19:57:52 +0200 Subject: [PATCH] Removing xdg-config. --- lib/JapaChar/DB.pm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/JapaChar/DB.pm b/lib/JapaChar/DB.pm index c4707ee..491c9cd 100644 --- a/lib/JapaChar/DB.pm +++ b/lib/JapaChar/DB.pm @@ -38,15 +38,8 @@ sub connect { sub _db_path($class) { my $home = $ENV{HOME}; - my $flatpak_config_dir = $ENV{XDG_CONFIG_HOME}; my $db_path = ''; - { - if ($flatpak_config_dir) { - $db_path = $flatpak_config_dir . '/'; - next; - } - $db_path = $home . '/' if $home; - } + $db_path = $home . '/' if $home; $db_path .= '.japachar/db.sqlite'; path($db_path)->parent->mkpath; return $db_path;