Fuck Nationalists, White Supremacists, Nazis, Fascists, The Patriarchy, Maga, Racists, Transphobes, Terfs, Homophobes, the Police.

  • 1 Post
  • 135 Comments
Joined 3 years ago
cake
Cake day: February 22nd, 2022

help-circle



  • Yeah, it’s licensed under the GNU Affero License and therefore you can review the source code and modify it as you see fit. Classic FOSS.

    https://gitlab.com/ironfox-oss/IronFox

    Giving their code a brief once over, their scripts and patches are relatively straight forward with good commenting and their documentation is acceptable imho.

    Additionally investigating their defaults in about:config reflect similar defaults in the Librewolf/ Mullvad/Arkenfox defaults that were present in the Mull browser.

    Overall Ironfox is about as good a Firefox fork for Android as you’re going to find.



  • z3rOR0ne@lemmy.mltoLinux@lemmy.mlShare your Bash prompts!
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    4 months ago

    I use zsh, but my old Bash prompt looks almost the same as my Zsh prompt. Sorry, no screenshot, but here’s the code:

    export PS1='\[\033[01;34m\][\[\033[01;37m\] \W\[\033[01;34m\]]\$\033[01;34m\] $(git branch 2>/dev/null | grep '^*' | colrm 1 2)\n\033[01;34m└─>\033[37m '
    











  • Anything you have trouble remembering, or just find yourself doing often, create an alias (or bash script if it constitutes a multi line command). Name the alias something you can easily remember that also lets you know what that command does.

    Then, and here’s he trick, don’t rely on the alias. Use it when you can’t remember, say “aww, damn it I had to use the alias again”, and then use which followed by the alias name to see what the command was again. Do this over and over and eventually some commands will stick.

    Ones that you don’t care about or are just super long, just keep using the alias and don’t worry about remembering them. Use aliases as both commands and notes.




  • I have a script that makes a list of every package and binary into an output file of packages as a list. I can just cat the output of the file in a subshell and pass that off to pacman -S. Pacman might complain here and there, but I can just edit the list. Then its just cp -r my config files that I’ve backed up and run my backups for movies, music, pics, games, etc.

    And yeah, it’s not perfect, but it’s good enough for me. I still have to do other stuff like switch out bash for zsh, etc. Gotta love bash scripts and backup configs though. That plus actual backups makes restoration from catastrophic failure at least bearable, albeit still time consuming.