diff options
author | Joey Hess <joey@kitenet.net> | 2013-07-09 20:16:07 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-07-09 20:16:07 -0400 |
commit | d8ac02c206d8a94f222031ef13e1337dcb9c542e (patch) | |
tree | b01a723336af0c7a21203a76cf1ec16588ccbf75 /Build/DesktopFile.hs | |
parent | ffb8a2d9d6140fb50d9d3553be923b0b8f5cffed (diff) |
install to ~/.local/icons, not ~/icons
Apparently the Icon Theme Specification no longer matches reality,
as implemented by XFCE and xdg-icon-resource.
Diffstat (limited to 'Build/DesktopFile.hs')
-rw-r--r-- | Build/DesktopFile.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/DesktopFile.hs b/Build/DesktopFile.hs index 55a22352a..f3293d128 100644 --- a/Build/DesktopFile.hs +++ b/Build/DesktopFile.hs @@ -55,10 +55,10 @@ writeFDODesktop command = do installMenu command =<< inDestDir (desktopMenuFilePath "git-annex" datadir) - installIcon "doc/logo.svg" =<< inDestDir - =<< iconFilePath "git-annex.svg" "scalable" systemwide - installIcon "doc/favicon.png" =<< inDestDir - =<< iconFilePath "git-annex.png" "16x16" systemwide + installIcon "doc/logo.svg" + =<< inDestDir (iconFilePath "git-annex.svg" "scalable" datadir) + installIcon "doc/favicon.png" + =<< inDestDir (iconFilePath "git-annex.png" "16x16" datadir) configdir <- if systemwide then return systemConfigDir else userConfigDir installAutoStart command |