We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5b9dfb commit c75eb3dCopy full SHA for c75eb3d
3 files changed
.gitignore
@@ -1 +1 @@
1
-./target
+/target
CHANGELOG.md
@@ -1,4 +1,4 @@
-# [0.2.5]
+# [0.2.6]
2
3
### What's Changed?
4
-- Added getTerm
+- Added little wayland support for getTerm
src/ffetch.rs
@@ -327,7 +327,7 @@ pub mod ffetch {
327
}
328
329
330
- return "".to_string();
+ return env::var("TERM").unwrap_or_else(|_| "Unknown".to_string());
331
332
333
pub fn get_disks(disk_point: &str) -> String {
0 commit comments