pacman -Syu (<pkg>)
- update && upgrade /pkg optionalpacman -S <pkg>
- installpacman -Rsc <pkg>
- uninstallpacman -Ss <keywords>
- searchpacman -Qe
- list installed pkgs by you
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const electron = require("electron"); | |
const { join } = require("path"); | |
class BrowserWindow extends electron.BrowserWindow { | |
constructor(options) { | |
if (options?.webPreferences?.preload && options.title) { | |
// Replace Discords preload script with our own | |
process.env.DISCORD_PRELOAD = options.webPreferences.preload; | |
options.webPreferences.preload = join(__dirname, "preload.js"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
kitty +kitten icat --transfer-mode file --clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export $(dbus-launch) | |
# could be in /etc/profile.d/dbus.sh | |
# this with lxdm and i3wm in artix linux. | |
# if there another way i will see |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
################################################################################################################## | |
# Author : Erik Dubois | |
# Website : https://www.erikdubois.be | |
# Website : https://www.arcolinux.info | |
# Website : https://www.arcolinux.com | |
# Website : https://www.arcolinuxd.com | |
# Website : https://www.arcolinuxb.com | |
# Website : https://www.arcolinuxiso.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rofi.kb-row-up: Up,Control+k,Shift+Tab,Shift+ISO_Left_Tab | |
rofi.kb-row-down: Down,Control+j | |
rofi.kb-accept-entry: Control+m,Return,KP_Enter | |
rofi.terminal: mate-terminal | |
rofi.kb-remove-to-eol: Control+Shift+e | |
rofi.kb-mode-next: Shift+Right,Control+Tab,Control+l | |
rofi.kb-mode-previous: Shift+Left,Control+Shift+Tab,Control+h | |
rofi.kb-remove-char-back: BackSpace |