diff options
author | Shipwreckt <Shipwreckt@mailfence.com> | 2024-05-26 18:08:21 +0100 |
---|---|---|
committer | Shipwreckt <Shipwreckt@mailfence.com> | 2024-05-26 18:08:21 +0100 |
commit | c9df72b87c8715ac1d7bbf5a88ccdc0ab75d4e88 (patch) | |
tree | 0afdf83f37b19df19d7b4767b3a2728ffe87690c /public/about/software | |
parent | 24d5d6eb3c5debb7f4ea22d7c64cb10480e7b8d8 (diff) |
updated about me
Diffstat (limited to 'public/about/software')
-rw-r--r-- | public/about/software | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/public/about/software b/public/about/software new file mode 100644 index 0000000..9c77655 --- /dev/null +++ b/public/about/software @@ -0,0 +1,95 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title>Shipwreckt</title> + <link rel="icon" href="../logo.jpg" type="image/x-icon"> + + <!-- styles --> + <link href="../style.css" rel="stylesheet" type="text/css" /> + + <!-- jQuery --> + <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> + + </head> + + <body> + + <header id="header"> + <img src="../logo.jpg"> + <h1>Shipwreckt</h1> + + <!-- Menu selection --> + <ul class="main-menu"> + <li><a href="../index.html#home">Home</a></li> + <li><a href="../index.html#about">About</a></li> + <li><a href="../index.html#projects">Projects</a></li> + <li><a href="../index.html#contact">Contact</a></li> + </ul> + +</header> + <div id="container"> + <div class="inner"> + <div id="content"> + + <h2>Software</h2> + <p><b>Linux distro</b><br> + I use arch, mainly because I am making my own work environment and I can pick what + applications I want to install instead of some linux distro that does it for me, the + beauty of Arch Linux is that you're held responsible nothing happens unless you let it + happen. There is a learning curve but when you break it, it is more than worth it for + the amount of freedom you get from Arch. + + <p><b>Web browser</b><br> + For my web browser is <a href "https://librewolf.net/">librewolf</a> the only browser that + really cares about your privacy, whilst yes it is annoying being logged out of everything + each time I close it, small sacrifices need to be made for privacy and this is why password managers + exist I just log on in a matter of seconds. I don't use many extensions but the ones I do use are + <a href "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/">ublock</a> , + <a href "https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/">KeePassXC</a> , + <a href "https://addons.mozilla.org/en-US/firefox/addon/darkreader/">Dark reader</a>.</p> + + <p><b>IDE</b><br>My IDE is Vim, it is a good all around program to use, it is fast to work with and is very + customizable which I love personally, I would recommend vim for anybody who wants a + terminal based text editor and to anybody who wants to get into programming or anybody + who is programming currently.</p> + + <p><b>Password manager</b><br> + I use <a href="https://keepassxc.org/">KeePassXC</a> for managing my passwords, I + used to use bitwarden but after a while I just thought I did not want my passwords in + somebody else's server so I switched to KeePassXC because it is offline, I use syncthing + to sync all my passwords from my laptop to my phone.</p> + + <p><b>File manager</b><br> + For my file manager, I use <a href ="https://github.com/ranger/ranger">Ranger</a>. + The main reason I use Ranger is because it uses Vim keybinds, + which I love. I first tested it out to see if it was any good, and after using it for about a + day, I decided to fully switch over to it, and it is a good file manager. I would suggest it to + anybody who likes the vim keybinds. </p> + <p><b>Status bar</b><br> + <a href "https://github.com/polybar">Polybar</a> + is the software that I use for my status bar because it is very customizable and it has all + the features I look for in a status bar, it it also has a clean and modern look by + deafult. Sometimes I just mess around with my polybar and see what looks the best.</p> + + <p><b>App launcher</b><br> + I use <a href "https://github.com/davatorium/rofi">rofi</a> for my app launcher because + it is customizable and easy to use, it also comes with a bunch of default options which + I sometimes use as a template for my rofi configs.</p> + + <p><b>Xorg or Wayland?</b><br> + I like Wayland; it is smooth and modern. But I do not think it is fully there yet, so for + now I am staaying with Xorg, because it just works and I have no issues with it. In the future, + in about a year, I will switch to Wayland because it is more modern, but for now, Xorg is my go-to.</p> + + </div> + + </div> + </div> + </div> + + <!-- Load additional JS scripts here --> + <script type="text/javascript" src="script.js"></script> + + </body> +</html> |