update init script and configs
This commit is contained in:
parent
29c853a027
commit
cf805af147
7 changed files with 36 additions and 28 deletions
|
@ -28,7 +28,6 @@ bell_border_color #F9E2AF
|
||||||
|
|
||||||
# OS Window titlebar colors
|
# OS Window titlebar colors
|
||||||
wayland_titlebar_color #1E1E2E
|
wayland_titlebar_color #1E1E2E
|
||||||
macos_titlebar_color #1E1E2E
|
|
||||||
|
|
||||||
# Tab bar colors
|
# Tab bar colors
|
||||||
active_tab_foreground #11111B
|
active_tab_foreground #11111B
|
||||||
|
|
|
@ -30,7 +30,7 @@ set $blur_passes 3
|
||||||
set $browser librewolf
|
set $browser librewolf
|
||||||
|
|
||||||
# Autostart apps
|
# Autostart apps
|
||||||
exec $HOME/.config/desktop-common/scripts.d/auto.sh
|
exec $HOME/.config/sway/scripts.d/auto.sh
|
||||||
|
|
||||||
# Local configs
|
# Local configs
|
||||||
include $HOME/.config/sway/config.d/*
|
include $HOME/.config/sway/config.d/*
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"height": 24,
|
"height": 24,
|
||||||
"position": "top",
|
"position": "top",
|
||||||
|
"layer": "bottom",
|
||||||
"spacing": 4,
|
"spacing": 4,
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
"sway/workspaces",
|
"sway/workspaces",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
key_expand=Tab
|
key_expand=Tab
|
||||||
term=alacritty
|
term=kitty
|
||||||
matching=multi-contains
|
matching=multi-contains
|
||||||
insensitive=true
|
insensitive=true
|
||||||
gtk_dark=true
|
gtk_dark=true
|
||||||
|
|
52
.zprofile
52
.zprofile
|
@ -20,29 +20,35 @@ export GTK_THEME=Lavanda-Sea-Dark
|
||||||
# Set terminal
|
# Set terminal
|
||||||
export TERMINAL=alacritty
|
export TERMINAL=alacritty
|
||||||
|
|
||||||
|
if [ -n "$TMUX" ]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
clear
|
clear
|
||||||
echo
|
printf "\t\n\t\n\t\n\t\n"
|
||||||
echo
|
echo "\tPlease select an environment..."
|
||||||
echo "Please select an environment..."
|
echo "\t[S]way [H]yprland [T]erminal [E]xit"
|
||||||
echo "Or press any key to enter terminal"
|
printf "\t\n\t\n\t"
|
||||||
echo "[S]way [H]yprland"
|
|
||||||
echo
|
|
||||||
echo
|
|
||||||
|
|
||||||
stty raw -echo
|
while true; do
|
||||||
choice=$(dd bs=1 count=1 2> /dev/null)
|
stty raw -echo
|
||||||
stty -raw echo
|
choice=$(dd bs=1 count=1 2> /dev/null)
|
||||||
|
stty -raw echo
|
||||||
|
case "$choice" in
|
||||||
|
|
||||||
case "$choice" in
|
"s")
|
||||||
|
echo "Launching sway..."
|
||||||
"s")
|
exec sway &> $HOME/.log/sway
|
||||||
echo "Launching sway..."
|
;;
|
||||||
exec sway &> $HOME/.log/sway
|
"h")
|
||||||
;;
|
echo "Launching Hyprland..."
|
||||||
"h")
|
exec Hyprland &> $HOME/.log/Hyprland
|
||||||
echo "Launching Hyprland..."
|
;;
|
||||||
exec Hyprland &> $HOME/.log/Hyprland
|
"t")
|
||||||
;;
|
exec cage -s kitty -- -o font_size=14
|
||||||
esac
|
;;
|
||||||
|
"e")
|
||||||
exec fbterm &> $HOME/.log/fbterm
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
1
aur
1
aur
|
@ -1,7 +1,6 @@
|
||||||
autotiling
|
autotiling
|
||||||
cider
|
cider
|
||||||
cydia-impactor
|
cydia-impactor
|
||||||
fbterm
|
|
||||||
i686-elf-gcc
|
i686-elf-gcc
|
||||||
librewolf-bin
|
librewolf-bin
|
||||||
lkrg-dkms
|
lkrg-dkms
|
||||||
|
|
3
packages
3
packages
|
@ -5,17 +5,20 @@ alsa-utils
|
||||||
amd-ucode
|
amd-ucode
|
||||||
base
|
base
|
||||||
base-devel
|
base-devel
|
||||||
|
bemenu
|
||||||
bind
|
bind
|
||||||
blueberry
|
blueberry
|
||||||
bluez-utils
|
bluez-utils
|
||||||
brightnessctl
|
brightnessctl
|
||||||
btrfs-progs
|
btrfs-progs
|
||||||
|
cage
|
||||||
chromium
|
chromium
|
||||||
clang
|
clang
|
||||||
cmake
|
cmake
|
||||||
cups
|
cups
|
||||||
cups-pdf
|
cups-pdf
|
||||||
discord
|
discord
|
||||||
|
dmenu
|
||||||
dmidecode
|
dmidecode
|
||||||
dnsmasq
|
dnsmasq
|
||||||
docker
|
docker
|
||||||
|
|
Loading…
Reference in a new issue