Spyke

Replies

world

Comment on

HELLO WORLD!

Reply in thread

Dangerous choice of words there, what's your stance on the CCP? The previous posted heavily insinuated CCP = bad and you didn't bring all that diversity talk into the table this time.

world

Comment on

HELLO WORLD!

Reply in thread

This one

That would fall under racism and dealt with accordingly. People do not choose where they are born and far too often do not have control over what their government does.

world

Comment on

HELLO WORLD!

Reply in thread

This does not just apply To the CCP but all world governments.

Ok, then I'll fell strongly encouraged to bring up the genocide of indians and indigenous populations committed by the Americans at every chance I see.

linux

Comment on

How do you keep track of all apps you install and their configurations?

function pkglist -d "Gets list of installed packages"
  # Prevent descriptions in other languages
  set -l LANG C
  # Define pkglists location
  set -l dot $HOME/.config/dotfiles

  echo "(1/5) RPM-OSTREE status"
  rpm-ostree status > $dot/pkglist.rpm-ostree --booted

  echo "(2/5) Identify flatpaks"
  flatpak list --app --columns=application > $dot/pkglist.flatpak

  echo "(3/5) Identify pinned flatpak runtimes"
  flatpak pin > $dot/pkglist.flatpak.pinned

  echo "(4/5) Identify flatpak overrides"
  for i in (cat $dot/pkglist.flatpak)
      if test -s (flatpak override --show --user $i|psub)
	  echo $i
	  flatpak override --show --user $i
	  echo
      end
  end > $dot/pkglist.flatpak.overrides

  echo "(5/5) Save KDE configuration"
  fedora konsave -s kde_configuration --force

  # to apply configuration
  # fedora konsave -a kde_configuration

  git -C $dot st
end