aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-16 11:41:51 -0400
committerKen Moore <moorekou@gmail.com>2016-06-16 11:41:51 -0400
commit3507d048bef5a1c3565b0f60e329a999a691a4c3 (patch)
tree78f5a0a5d95f19bbf399291bf90bcaa196f6b284 /src-qt5/desktop-utils
parentAdjust the default keyboard shortcuts a bit to try and avoid conflicts betwee... (diff)
downloadlumina-3507d048bef5a1c3565b0f60e329a999a691a4c3.tar.gz
lumina-3507d048bef5a1c3565b0f60e329a999a691a4c3.tar.bz2
lumina-3507d048bef5a1c3565b0f60e329a999a691a4c3.zip
Another round of small bug fixes/tweaks:
1) Fix up the desktopbar plugin to work with the new file locations for configs. 2) Fix up the replacement of the "~/" prefix on a file path with the users home dir. 3) Add default favorites for the ~/[Documents, Downloads, Pictures, Videos] directories. 4) Add the ability to specify quicklaunch apps within luminaDesktop.conf (almost the same as the favorites options). 5) Another couple tweaks for the Glass theme. 6) Have the non-applauncher desktop plugins fill in from the bottom-right of the screen. This provides automatic separation between the auto-generated launchers and other plugins. 7) Add a second, auto-hidden panel at the top of the primary screen by default with the desktopbar plugin there (for instance access to favorites & ~/Desktop files/dirs)
Diffstat (limited to 'src-qt5/desktop-utils')
-rw-r--r--src-qt5/desktop-utils/lumina-terminal/lumina-terminal.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-terminal/lumina-terminal.pro b/src-qt5/desktop-utils/lumina-terminal/lumina-terminal.pro
index c71bafe7..24c8f68b 100644
--- a/src-qt5/desktop-utils/lumina-terminal/lumina-terminal.pro
+++ b/src-qt5/desktop-utils/lumina-terminal/lumina-terminal.pro
@@ -17,7 +17,7 @@ SOURCES += main.cpp \
TtyProcess.cpp
-LIBS += -lLuminaUtils
+LIBS += -lLuminaUtils -lncurses
DEPENDPATH += ../../libLumina
bgstack15