Here's a detailed article on the topic "Dolphin File Manager in EndeavourOS KDE Plasma 6.2.5 showing relative dates instead of absolute dates":
Title: Dolphin File Manager in EndeavourOS KDE Plasma 6.2.5 Shows Relative Dates Instead of Absolute Dates
Introduction
EndeavourOS is a popular Arch Linux-based distribution that offers a user-friendly experience with a variety of desktop environments. In this article, we will focus on the Dolphin file manager in the KDE Plasma 6.2.5 desktop environment, specifically version 24.12.1, and discuss why it shows relative dates instead of absolute dates for modified files.
Understanding Dolphin File Manager
Dolphin is a powerful file manager for the KDE Plasma desktop environment. It offers a variety of features, including a two-pane interface, support for multiple file systems, and a built-in terminal.
The Issue: Relative Dates Instead of Absolute Dates
Some users have reported that the Dolphin file manager in EndeavourOS KDE Plasma 6.2.5 shows relative dates instead of absolute dates for modified files. This can be confusing, especially for users who are accustomed to seeing the exact date and time a file was last modified.
Reason Behind the Behavior
The reason behind this behavior is related to the configuration of the Dolphin file manager. By default, Dolphin shows relative dates to make it easier to understand the age of a file. For example, instead of seeing a date like "25th January 2023", you might see "Today", "Yesterday", "2 days ago", etc.
How to Change the Behavior
If you prefer to see absolute dates, you can change this behavior in the Dolphin settings. Here's how:
- Open Dolphin file manager.
- Go to Settings > Configure Dolphin.
- Navigate to the View tab.
- Under the List View section, uncheck the box that says "Show time relative to current time".
- Click Apply and OK to save the changes.
Now, Dolphin should show absolute dates for modified files.
Conclusion
In this article, we discussed the issue of Dolphin file manager in EndeavourOS KDE Plasma 6.2.5 showing relative dates instead of absolute dates for modified files. We explained the reason behind this behavior and provided a solution to change it if desired.
References
- Dolphin File Manager: https://userbase.kde.org/Dolphin
- EndeavourOS: https://endeavouros.com/
- KDE Plasma: https://kde.org/plasma-desktop/
Code Block Example
# Change Dolphin to show absolute dates
dolphin_settings() {
dolphin &
dolphin_config
}
dolphin_config() {
kwriteconfig --file=~/.config/dolphinrc --group=ListView --key=ShowTimeRelativeToCurrentTime false
}
In this example, a bash script dolphin_settings is defined to open Dolphin and configure it to show absolute dates. The dolphin_config function writes the configuration to the ~/.config/dolphinrc file.