This commit is contained in:
tavo 2025-09-07 00:45:56 -06:00
parent 7f8f62dbad
commit 503b304dea
4 changed files with 22 additions and 4 deletions

View file

@ -47,7 +47,7 @@ set $col_bg #121212
set $col_ac #606060 set $col_ac #606060
# Keybinds # Keybinds
#floating_modifier $mod normal floating_modifier $mod
# - # -
bindsym $mod+space exec setxkbmap-next bindsym $mod+space exec setxkbmap-next
bindsym $mod+Return exec $term bindsym $mod+Return exec $term

View file

@ -39,6 +39,7 @@ zathura-pdf-poppler
zathura-ps zathura-ps
# Tools # Tools
neovim
curl curl
fzf fzf
eza eza
@ -59,15 +60,16 @@ groff
grap grap
zoxide zoxide
tokei tokei
git
lazygit
shellcheck
jq
# Appearance # Appearance
gnome-themes-extra gnome-themes-extra
# Dev # Dev
build-essential build-essential
git
lazygit
shellcheck
# Extra # Extra
flatpak flatpak

View file

@ -0,0 +1,14 @@
#!/bin/sh
SUDOERS_D_CONFIGS="$XDG_CONFIG_HOME"/sudoers/sudoers.d
SUDOERS_D_SYSTEM="/etc/sudoers.d"
if [ -d "$SUDOERS_D_CONFIGS" ]; then
for f in "$SUDOERS_D_CONFIGS"/*; do
if [ -f "$f" ]; then
sudo cp "$f" "$SUDOERS_D_SYSTEM"/
fi
done
unset f
fi

View file

@ -0,0 +1,2 @@
# Disable ~/.sudo_as_admin_successful file
Defaults !admin_flag