Compare commits
4 Commits
dcf6c34fec
...
cf44e54eba
Author | SHA1 | Date | |
---|---|---|---|
cf44e54eba | |||
9396aad9ca | |||
f3be4bb62f | |||
878d301a1e |
5
boot/loader/entries/arch-fallback.conf
Executable file
5
boot/loader/entries/arch-fallback.conf
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
title Arch Linux
|
||||||
|
linux /vmlinuz-linux
|
||||||
|
initrd /amd-ucode.img
|
||||||
|
initrd /initramfs-linux-fallback.img
|
||||||
|
options rd.luks.name=3927d3f3-175f-4b72-9e05-395ef5664c81=cryptlvm rd.luks.options=discard root=/dev/ssd1/root resume=/dev/ssd1/swap rw add_efi_memmap kernel=30
|
5
boot/loader/entries/arch.conf
Executable file
5
boot/loader/entries/arch.conf
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
title Arch Linux
|
||||||
|
linux /vmlinuz-linux
|
||||||
|
initrd /amd-ucode.img
|
||||||
|
initrd /initramfs-linux.img
|
||||||
|
options rd.luks.name=3927d3f3-175f-4b72-9e05-395ef5664c81=cryptlvm rd.luks.options=discard root=/dev/ssd1/root resume=/dev/ssd1/swap rw add_efi_memmap kernel=30
|
99
etc/sudoers
Normal file
99
etc/sudoers
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
## sudoers file.
|
||||||
|
##
|
||||||
|
## This file MUST be edited with the 'visudo' command as root.
|
||||||
|
## Failure to use 'visudo' may result in syntax or file permission errors
|
||||||
|
## that prevent sudo from running.
|
||||||
|
##
|
||||||
|
## See the sudoers man page for the details on how to write a sudoers file.
|
||||||
|
##
|
||||||
|
|
||||||
|
##
|
||||||
|
## Host alias specification
|
||||||
|
##
|
||||||
|
## Groups of machines. These may include host names (optionally with wildcards),
|
||||||
|
## IP addresses, network numbers or netgroups.
|
||||||
|
# Host_Alias WEBSERVERS = www1, www2, www3
|
||||||
|
|
||||||
|
##
|
||||||
|
## User alias specification
|
||||||
|
##
|
||||||
|
## Groups of users. These may consist of user names, uids, Unix groups,
|
||||||
|
## or netgroups.
|
||||||
|
# User_Alias ADMINS = millert, dowdy, mikef
|
||||||
|
|
||||||
|
##
|
||||||
|
## Cmnd alias specification
|
||||||
|
##
|
||||||
|
## Groups of commands. Often used to group related commands together.
|
||||||
|
# Cmnd_Alias PROCESSES = /usr/bin/nice, /bin/kill, /usr/bin/renice, \
|
||||||
|
# /usr/bin/pkill, /usr/bin/top
|
||||||
|
# Cmnd_Alias REBOOT = /sbin/halt, /sbin/reboot, /sbin/poweroff
|
||||||
|
|
||||||
|
##
|
||||||
|
## Defaults specification
|
||||||
|
##
|
||||||
|
## You may wish to keep some of the following environment variables
|
||||||
|
## when running commands via sudo.
|
||||||
|
##
|
||||||
|
## Locale settings
|
||||||
|
# Defaults env_keep += "LANG LANGUAGE LINGUAS LC_* _XKB_CHARSET"
|
||||||
|
##
|
||||||
|
## Run X applications through sudo; HOME is used to find the
|
||||||
|
## .Xauthority file. Note that other programs use HOME to find
|
||||||
|
## configuration files and this may lead to privilege escalation!
|
||||||
|
# Defaults env_keep += "HOME"
|
||||||
|
##
|
||||||
|
## X11 resource path settings
|
||||||
|
# Defaults env_keep += "XAPPLRESDIR XFILESEARCHPATH XUSERFILESEARCHPATH"
|
||||||
|
##
|
||||||
|
## Desktop path settings
|
||||||
|
# Defaults env_keep += "QTDIR KDEDIR"
|
||||||
|
##
|
||||||
|
## Allow sudo-run commands to inherit the callers' ConsoleKit session
|
||||||
|
# Defaults env_keep += "XDG_SESSION_COOKIE"
|
||||||
|
##
|
||||||
|
## Uncomment to enable special input methods. Care should be taken as
|
||||||
|
## this may allow users to subvert the command being run via sudo.
|
||||||
|
# Defaults env_keep += "XMODIFIERS GTK_IM_MODULE QT_IM_MODULE QT_IM_SWITCHER"
|
||||||
|
##
|
||||||
|
## Uncomment to use a hard-coded PATH instead of the user's to find commands
|
||||||
|
# Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
||||||
|
##
|
||||||
|
## Uncomment to send mail if the user does not enter the correct password.
|
||||||
|
# Defaults mail_badpass
|
||||||
|
##
|
||||||
|
## Uncomment to enable logging of a command's output, except for
|
||||||
|
## sudoreplay and reboot. Use sudoreplay to play back logged sessions.
|
||||||
|
# Defaults log_output
|
||||||
|
# Defaults!/usr/bin/sudoreplay !log_output
|
||||||
|
# Defaults!/usr/local/bin/sudoreplay !log_output
|
||||||
|
# Defaults!REBOOT !log_output
|
||||||
|
Defaults env_reset,timestamp_timeout=1440
|
||||||
|
|
||||||
|
##
|
||||||
|
## Runas alias specification
|
||||||
|
##
|
||||||
|
|
||||||
|
##
|
||||||
|
## User privilege specification
|
||||||
|
##
|
||||||
|
root ALL=(ALL) ALL
|
||||||
|
default ALL=(ALL) ALL
|
||||||
|
|
||||||
|
## Uncomment to allow members of group wheel to execute any command
|
||||||
|
# %wheel ALL=(ALL) ALL
|
||||||
|
|
||||||
|
## Same thing without a password
|
||||||
|
# %wheel ALL=(ALL) NOPASSWD: ALL
|
||||||
|
|
||||||
|
## Uncomment to allow members of group sudo to execute any command
|
||||||
|
# %sudo ALL=(ALL) ALL
|
||||||
|
|
||||||
|
## Uncomment to allow any user to run sudo if they know the password
|
||||||
|
## of the user they are running the command as (root by default).
|
||||||
|
# Defaults targetpw # Ask for the password of the target user
|
||||||
|
# ALL ALL=(ALL) ALL # WARNING: only use this together with 'Defaults targetpw'
|
||||||
|
|
||||||
|
## Read drop-in files from /etc/sudoers.d
|
||||||
|
## (the '#' here does not indicate a comment)
|
||||||
|
#includedir /etc/sudoers.d
|
3
home/default/.config/alacritty/alacritty.toml
Normal file
3
home/default/.config/alacritty/alacritty.toml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[window]
|
||||||
|
opacity=0.85
|
||||||
|
decorations="None"
|
@ -9,7 +9,7 @@ set $down j
|
|||||||
set $up k
|
set $up k
|
||||||
set $right l
|
set $right l
|
||||||
|
|
||||||
set $term kitty
|
set $term alacritty
|
||||||
set $menu rofi -show combi | xargs swaymsg exec --
|
set $menu rofi -show combi | xargs swaymsg exec --
|
||||||
|
|
||||||
# wallpaper
|
# wallpaper
|
||||||
|
32
packages.txt
32
packages.txt
@ -1,9 +1,12 @@
|
|||||||
adobe-source-han-sans-jp-fonts
|
adobe-source-han-sans-jp-fonts
|
||||||
adobe-source-han-sans-kr-fonts
|
adobe-source-han-sans-kr-fonts
|
||||||
aic94xx-firmware
|
aic94xx-firmware
|
||||||
|
alacritty
|
||||||
amd-ucode
|
amd-ucode
|
||||||
|
android-udev
|
||||||
anki-bin
|
anki-bin
|
||||||
arch-install-scripts
|
arch-install-scripts
|
||||||
|
arduino-ide-bin
|
||||||
asdf-vm
|
asdf-vm
|
||||||
atomicparsley
|
atomicparsley
|
||||||
atool
|
atool
|
||||||
@ -17,7 +20,6 @@ bind
|
|||||||
binutils
|
binutils
|
||||||
bison
|
bison
|
||||||
blueman
|
blueman
|
||||||
bluetooth-autoconnect
|
|
||||||
brightnessctl
|
brightnessctl
|
||||||
bzip2
|
bzip2
|
||||||
calibre
|
calibre
|
||||||
@ -34,11 +36,11 @@ cryptsetup
|
|||||||
cups
|
cups
|
||||||
cups-pdf
|
cups-pdf
|
||||||
darktable
|
darktable
|
||||||
ddclient
|
|
||||||
device-mapper
|
device-mapper
|
||||||
dhcpcd
|
dhcpcd
|
||||||
dialog
|
dialog
|
||||||
diffutils
|
diffutils
|
||||||
|
dino
|
||||||
direnv
|
direnv
|
||||||
downgrade
|
downgrade
|
||||||
dxvk-bin
|
dxvk-bin
|
||||||
@ -65,7 +67,6 @@ ffmpegthumbnailer
|
|||||||
file
|
file
|
||||||
filesystem
|
filesystem
|
||||||
findutils
|
findutils
|
||||||
firefox
|
|
||||||
flex
|
flex
|
||||||
font-manager
|
font-manager
|
||||||
fortune-mod
|
fortune-mod
|
||||||
@ -81,7 +82,6 @@ fortune-mod-starwars
|
|||||||
freecad
|
freecad
|
||||||
fwbuilder
|
fwbuilder
|
||||||
fwupd
|
fwupd
|
||||||
gajim
|
|
||||||
gamemode
|
gamemode
|
||||||
gawk
|
gawk
|
||||||
gcc
|
gcc
|
||||||
@ -102,6 +102,7 @@ gnu-netcat
|
|||||||
gnutls
|
gnutls
|
||||||
google-chrome
|
google-chrome
|
||||||
gparted
|
gparted
|
||||||
|
gphoto2
|
||||||
grep
|
grep
|
||||||
grim
|
grim
|
||||||
grub
|
grub
|
||||||
@ -113,10 +114,12 @@ gst-plugins-ugly
|
|||||||
gstreamer-vaapi
|
gstreamer-vaapi
|
||||||
gtk-engine-murrine
|
gtk-engine-murrine
|
||||||
gutenprint
|
gutenprint
|
||||||
|
gvfs-gphoto2
|
||||||
gwakeonlan
|
gwakeonlan
|
||||||
gzip
|
gzip
|
||||||
handbrake
|
handbrake
|
||||||
hddtemp
|
hddtemp
|
||||||
|
hexedit
|
||||||
highlight
|
highlight
|
||||||
htop
|
htop
|
||||||
hugin
|
hugin
|
||||||
@ -127,13 +130,11 @@ iotop
|
|||||||
iproute2
|
iproute2
|
||||||
iputils
|
iputils
|
||||||
itstool
|
itstool
|
||||||
iucode-tool
|
|
||||||
iw
|
iw
|
||||||
jammr
|
jammr
|
||||||
jansson
|
jansson
|
||||||
jq
|
jq
|
||||||
kanshi
|
kanshi
|
||||||
kcm-wacomtablet
|
|
||||||
kdocker
|
kdocker
|
||||||
keepassxc
|
keepassxc
|
||||||
kid3
|
kid3
|
||||||
@ -210,6 +211,7 @@ mcomix
|
|||||||
mcpp
|
mcpp
|
||||||
mdadm
|
mdadm
|
||||||
mediainfo
|
mediainfo
|
||||||
|
merkuro
|
||||||
mesa
|
mesa
|
||||||
minecraft-launcher
|
minecraft-launcher
|
||||||
mixxx
|
mixxx
|
||||||
@ -217,7 +219,6 @@ mousetweaks
|
|||||||
mpc
|
mpc
|
||||||
mpv
|
mpv
|
||||||
mpv-mpris
|
mpv-mpris
|
||||||
mqtt-explorer
|
|
||||||
mumble
|
mumble
|
||||||
namcap
|
namcap
|
||||||
nano
|
nano
|
||||||
@ -246,7 +247,6 @@ package-query
|
|||||||
papirus-icon-theme
|
papirus-icon-theme
|
||||||
patch
|
patch
|
||||||
pavucontrol
|
pavucontrol
|
||||||
pc-ble-driver
|
|
||||||
pciutils
|
pciutils
|
||||||
perl
|
perl
|
||||||
perl-image-exiftool
|
perl-image-exiftool
|
||||||
@ -263,6 +263,7 @@ playerctl
|
|||||||
playonlinux
|
playonlinux
|
||||||
polkit-gnome
|
polkit-gnome
|
||||||
postgresql-libs
|
postgresql-libs
|
||||||
|
prismlauncher
|
||||||
procps-ng
|
procps-ng
|
||||||
psensor
|
psensor
|
||||||
psmisc
|
psmisc
|
||||||
@ -273,14 +274,12 @@ python-axolotl
|
|||||||
python-levenshtein
|
python-levenshtein
|
||||||
python-matplotlib
|
python-matplotlib
|
||||||
python-mutagen
|
python-mutagen
|
||||||
python-nrfutil
|
|
||||||
python-pip
|
python-pip
|
||||||
python-pycryptodome
|
python-pycryptodome
|
||||||
python-pyenchant
|
python-pyenchant
|
||||||
python-pylast
|
python-pylast
|
||||||
python-pynvim
|
python-pynvim
|
||||||
python-wxpython
|
python-wxpython
|
||||||
qbittorrent
|
|
||||||
qt5ct
|
qt5ct
|
||||||
qt5-graphicaleffects
|
qt5-graphicaleffects
|
||||||
qt5-imageformats
|
qt5-imageformats
|
||||||
@ -325,19 +324,7 @@ systemd-ui
|
|||||||
tar
|
tar
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
texinfo
|
texinfo
|
||||||
texlive-basic
|
|
||||||
texlive-bibtexextra
|
|
||||||
texlive-bin
|
texlive-bin
|
||||||
texlive-fontsextra
|
|
||||||
texlive-formatsextra
|
|
||||||
texlive-games
|
|
||||||
texlive-humanities
|
|
||||||
texlive-latexextra
|
|
||||||
texlive-mathscience
|
|
||||||
texlive-music
|
|
||||||
texlive-pictures
|
|
||||||
texlive-pstricks
|
|
||||||
texlive-publishers
|
|
||||||
tlp
|
tlp
|
||||||
tmux
|
tmux
|
||||||
traceroute
|
traceroute
|
||||||
@ -365,6 +352,7 @@ vulkan-mesa-layers
|
|||||||
vulkan-radeon
|
vulkan-radeon
|
||||||
vulkan-tools
|
vulkan-tools
|
||||||
w3m
|
w3m
|
||||||
|
wacomtablet
|
||||||
wakeonlan
|
wakeonlan
|
||||||
waybar
|
waybar
|
||||||
wayland-utils
|
wayland-utils
|
||||||
|
@ -28,7 +28,7 @@ please let me know if i've forgotten one!
|
|||||||
- waybar (topbar)
|
- waybar (topbar)
|
||||||
- swayidle (idle daemon)
|
- swayidle (idle daemon)
|
||||||
- swaylock (lockscreen)
|
- swaylock (lockscreen)
|
||||||
- kitty (terminal)
|
- alacritty (terminal)
|
||||||
- ranger (file browser)
|
- ranger (file browser)
|
||||||
- rofi (launcher)
|
- rofi (launcher)
|
||||||
- mako (notification daemon)
|
- mako (notification daemon)
|
||||||
|
Loading…
Reference in New Issue
Block a user