Merge branch 'master' of origin/master
Alan Pearce alan@alanpearce.eu
Tue, 26 Nov 2019 23:24:52 +0100
3 files changed, 25 insertions(+), 5 deletions(-)
M system/settings/services/xserver.nix → system/settings/services/xserver.nix
@@ -9,6 +9,8 @@ }; i18n.consoleUseXkbConfig = true; + xdg.sounds.enable = false; + environment.systemPackages = with pkgs; [ xorg.xmodmap xorg.xinit
M user/packages/ripcord/default.nix → user/packages/ripcord/default.nix
@@ -1,13 +1,28 @@-{ pkgs, lib, fetchurl, ... }: +{ pkgs, lib, fetchurl, makeDesktopItem, ... }: let - version = "0.4.20"; + pname = "ripcord"; + version = "0.4.21"; + + desktopItem = makeDesktopItem { + name = "Ripcord"; + exec = "ripcord"; + comment = "Desktop chat client for Slack (and Discord)"; + desktopName = "Ripcord"; + categories = "Network;InstantMessaging;Chat"; + genericName = "Team messenger"; + }; in -pkgs.appimageTools.wrapType2 { - name = "ripcord"; +pkgs.appimageTools.wrapType2 rec { + name = "${pname}-${version}"; src = fetchurl { url = "https://cancel.fm/dl/Ripcord-${version}-x86_64.AppImage"; - sha256 = "3a300d994164be4c6ab6de58267a97f419155d5e4995ee375baaf2f0b0a9db1d"; + sha256 = "63a16a1369bc9c6d7b24c12044e3d2e341264f65ac38bd16bf01576f6cceb3df"; }; + + extraInstallCommands = '' + mv $out/bin/{${name},${pname}} + ${desktopItem.buildCommand} + ''; }
M user/satoshipad.nix → user/satoshipad.nix
@@ -24,15 +24,18 @@ ./settings/zsh.nix ]; home.sessionVariables.EMAIL = "alan@satoshipay.io"; + home.sessionVariables.BROWSER = "firefox-devedition"; xsession.windowManager.i3 = { config = { assigns = { "1" = [{ class = "^Firefox Developer Edition$"; }]; + "2" = [{ class = "^Ripcord$"; }]; "6" = [{ class = "^Emacs$"; }]; }; startup = [ { command = "firefox-devedition"; } + { command = "ripcord"; } { command = "emacs"; } ]; };