This commit is contained in:
Clay Gomera 2023-04-04 03:00:35 -04:00
parent b488ac938a
commit 8957bb08b1
7 changed files with 82 additions and 31 deletions

View file

@ -140,12 +140,12 @@ alias \
# function to detect os and assign aliases to package managers
alias \
pac-up="yay -Syyu" \
pac-get="yay -S" \
pac-rmv="yay -Rcns" \
pac-rmv-sec="yay -R" \
pac-qry="yay -Ss" \
pac-cln="yay -Scc"
pac-up="paru -Syu" \
pac-get="paru -S" \
pac-rmv="paru -Rcns" \
pac-rmv-sec="paru -R" \
pac-qry="paru -Ss" \
pac-cln="paru -Scc"
# colorize grep output (good for log files)
alias \

View file

@ -141,16 +141,13 @@ alias ll='exa -l --color=always --group-directories-first' # long format
alias lt='exa -aT --color=always --group-directories-first' # tree listing
alias l.='exa -a | egrep "^\."'
# pacman and yay
alias pac-up='yay -Syu && yay -Sua' # update the system
alias pac-get='yay -S' # install a program
alias pac-rmv='yay -Rcns' # remove a program
alias pac-rmv-sec='yay -R' # remove a program (secure way)
alias pac-qry='yay -Ss' # search for a program
alias pac-cln='yay -Scc && yay -Rns (pacman -Qtdq)' # clean cache & remove orphaned packages
# neofetch is f***** slow
alias neofetch="pfetch"
# package management
alias pac-up='paru -Syu'
alias pac-get='paru -S'
alias pac-rmv='paru -Rcns'
alias pac-rmv-sec='paru -R'
alias pac-qry='paru -Ss'
alias pac-cln='paru -Scc && paru -Rns (pacman -Qtdq)'
# Colorize grep output (good for log files)
alias grep='grep --color=auto'

View file

@ -141,7 +141,6 @@ windowrule = workspace 1, ^(firefox)$
windowrule = workspace 1, ^(Librewolf)$
windowrule = workspace 1, ^(Chromium)$
windowrule = workspace 1, ^(Brave-browser)$
windowrule = workspace 1, ^(tut)$
## Workspace 2 - File management
windowrule = workspace 2, ^(file_manager)$
windowrule = workspace 2, ^(Pcmanfm)$
@ -149,12 +148,8 @@ windowrule = workspace 2, ^(Pcmanfm)$
windowrule = workspace 3, ^(text_editor)$
windowrule = workspace 3, ^(goneovim)$
windowrule = workspace 3, ^(Code)$
## Workspace 4 - Chat
windowrule = workspace 4, ^(chat_client)$
windowrule = workspace 4, ^(whatsapp-for-linux)$
windowrule = workspace 4, ^(Element)$
windowrule = workspace 4, ^(Signal)$
windowrule = workspace 4, ^(revolt-desktop)$
## Workspace 4 - Todo management
windowrule = workspace 4, ^(todo_app)$
## Workspace 5 - Audio
windowrule = workspace 5, ^(music_player)$
windowrule = workspace 5, ^(ytfzf_music)$
@ -207,7 +202,6 @@ windowrule = workspace 10, ^(btop)$
windowrule = workspace 10, ^(htop)$
windowrule = workspace 10, ^(pulsemixer)$
windowrule = workspace 10, ^(alsamixer)$
windowrule = workspace 10, ^(geek-life)$
windowrule = workspace 10, ^(wdisplays)$
windowrule = workspace 10, ^(font-manager)$
windowrule = workspace 10, ^(org.qbittorrent.qBittorrent)$
@ -341,7 +335,6 @@ binde = $supMod_$conMod, c, exec, hyprpicker -n -a
# QUICK TERMINAL SCRIPTS/COMMANDS
## Workspace 1 - Web
binde = $supMod_$altMod, t, exec, wezterm start --class tut -- tut # Mastodon client
binde = $supMod_$altMod, r, exec, wezterm start --class newsboat -- newsboat # RSS feed reader
## Workspace 5 - Audio
binde = $supMod_$altMod, m, exec, wezterm start --class ytfzf_music -- ytfzf -mlstT chafa # Listen to YouTube Music on the terminal
@ -350,7 +343,6 @@ binde = $supMod_$altMod, f, exec, wezterm start --class flix_cli -- flix-cli
binde = $supMod_$altMod, a, exec, wezterm start --class ani_cli -- ani-cli # Watch anime on the terminal
binde = $supMod_$altMod, y, exec, wezterm start --class ytfzf -- ytfzf -flstT chafa # Watch YouTube on the terminal
## Workspace 10 - Extras
binde = $supMod_$altMod, g, exec, wezterm start --class geek-life -- geek-life # Todo manager
binde = $supMod_$altMod, p, exec, wezterm start --class pulsemixer -- pulsemixer # Open the volume mixer (pulsemixer)
binde = $supMod_$altMod, o, exec, wezterm start --class alsamixer -- alsamixer # Open the volume mixer (alsamixer)
binde = $supMod_$altMod, b, exec, wezterm start --class btop -- btop # Open the system monitor (btop)
@ -363,8 +355,8 @@ binde = $supMod, w, exec, brave
binde = $supMod, f, exec, wezterm start --class file_manager -- vifm
## Workspace 3 - Editors
binde = $supMod, e, exec, goneovim --nvim=$HOME/.local/bin/lvim --geometry=1920x1080
## Workspace 4 - Chat
binde = $supMod, c, exec, wezterm start --class chat_client -- gomuks
## Workspace 4 - Task management
binde = $supMod, t, exec, wezterm start --class todo_app -- geek-life
## Workspace 5 - Audio
binde = $supMod, m, exec, wezterm start --class music_player -- cmus
## Workspace 9 - Games

View file

@ -175,7 +175,33 @@ lvim.builtin.treesitter.highlight.enable = true
-- Additional Plugins
lvim.plugins = {
{"lunarvim/colorschemes"},
{"ellisonleao/gruvbox.nvim"},
{
"ellisonleao/gruvbox.nvim",
-- setup must be called before loading the colorscheme
-- Default options:
require("gruvbox").setup({
undercurl = true,
underline = true,
bold = true,
italic = {
strings = true,
comments = true,
operators = false,
folds = true,
},
strikethrough = true,
invert_selection = false,
invert_signs = false,
invert_tabline = false,
invert_intend_guides = false,
inverse = true, -- invert background for search, diffs, statuslines and errors
contrast = "hard", -- can be "hard", "soft" or empty string
palette_overrides = {},
overrides = {},
dim_inactive = false,
transparent_mode = false,
})
},
{"puremourning/vimspector"},
{
"iamcco/markdown-preview.nvim",

View file

@ -0,0 +1,37 @@
#!/usr/bin/env bash
# List of available drives
devices=$(lsblk -lpo "name,size,type,mountpoint" --noheadings | grep -v -e "disk" -e "lvm" -e "nvme" | awk '{if ($4=="") {print $1, "(" $2 ")", "[unmounted]"} else {print $1, "(" $2 ")", "[" $4 "]"}}')
# Rofi menu
selected_device=$(echo -e "${devices}" | rofi -dmenu -i -p "Drive manager" | awk '{print $1}')
# Verify if the drive is mounted
if [ "$(lsblk -lp | grep "${selected_device}" | awk '{print $7}')" ]; then
# Check if the drive is encrypted
if [ "$(lsblk -n -o TYPE "${selected_device}")" == "crypt" ]; then
mmg_device=$(echo "${selected_device}" | sed -s 's/\/dev\/mapper\///')
udisksctl unmount -b "${selected_device}"
pkexec cryptsetup close "${mmg_device}"
exit 1
else
# If it's mounted, unmount it
udisksctl unmount -b "$selected_device"
notify-send "The drive was unmounted successfully"
exit 1
fi
else
# If it's not mounted, check if it's an encrypted drive
if [ "$(lsblk -n -o FSTYPE "${selected_device}")" == "crypto_LUKS" ]; then
# If it's an encrypted drive, prompt for the passphrase and mount it
passphrase=$(rofi -dmenu -p "Enter passphrase for ${selected_device}" -password)
if [ -n "$passphrase" ]; then
echo "$passphrase" | pkexec cryptsetup open "${selected_device}" encrypted_"${selected_device##*/}"
udisksctl mount -b /dev/mapper/encrypted_"${selected_device##*/}"
notify-send "The encrypted drive was mounted successfully"
exit 1
fi
fi
udisksctl mount -b "$selected_device"
notify-send "The drive was mounted successfully"
exit 1
fi

View file

@ -66,4 +66,3 @@ case "$action" in
$option7*)
exit 0
esac

View file

@ -18,7 +18,7 @@
"1": "\uf484",
"2": "\ue613",
"3": "\ue795",
"4": "\uf075",
"4": "\uf14a",
"5": "\uf001",
"6": "\uf03d",
"7": "\ue22b",