mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Added app icons, cleaned apps, nwggrid and nwg-dock fixes
This commit is contained in:
parent
94f65ad0fd
commit
415bf194d4
7 changed files with 57 additions and 27 deletions
|
@ -20,8 +20,6 @@
|
|||
alacritty
|
||||
librewolf
|
||||
brave
|
||||
dmenu
|
||||
rofi
|
||||
git
|
||||
syncthing
|
||||
|
||||
|
|
|
@ -35,8 +35,6 @@
|
|||
librewolf
|
||||
brave
|
||||
qutebrowser
|
||||
dmenu
|
||||
rofi
|
||||
git
|
||||
syncthing
|
||||
|
||||
|
@ -83,8 +81,28 @@
|
|||
exec = "flstudio %U";
|
||||
terminal = false;
|
||||
type = "Application";
|
||||
icon = "flstudio";
|
||||
mimeTypes = ["application/octet-stream"];
|
||||
})
|
||||
(stdenv.mkDerivation {
|
||||
name = "flstudio-icon";
|
||||
# icon from https://www.reddit.com/r/MacOS/comments/jtmp7z/i_made_icons_for_discord_spotify_and_fl_studio_in/
|
||||
src = [ ../../user/pkgs/flstudio.png ];
|
||||
|
||||
unpackPhase = ''
|
||||
for srcFile in $src; do
|
||||
# Copy file into build dir
|
||||
cp $srcFile ./
|
||||
done
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out $out/share $out/share/pixmaps
|
||||
ls $src
|
||||
ls
|
||||
cp $src $out/share/pixmaps/flstudio.png
|
||||
'';
|
||||
})
|
||||
|
||||
# Media
|
||||
gimp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue