diff options
| -rw-r--r-- | hyprland/keybinds.conf | 2 | ||||
| -rw-r--r-- | hyprlock/hyprlock.conf | 2 | ||||
| -rwxr-xr-x | install.sh | 2 | ||||
| -rw-r--r-- | quickshell/shell.qml | 34 |
4 files changed, 20 insertions, 20 deletions
diff --git a/hyprland/keybinds.conf b/hyprland/keybinds.conf index 919366b..397f35d 100644 --- a/hyprland/keybinds.conf +++ b/hyprland/keybinds.conf @@ -25,7 +25,7 @@ bind = $mainMod, P, exec, /opt/scripts/vpn_connect.sh bind = $mainMod|Shift, P, exec, /opt/scripts/vpn_disconnect.sh bind = $mainMod, X, exec, /opt/scripts/screen-record.sh bind = $mainMod|Shift, X, exec, /opt/scripts/screen-record-stop.sh -bind = $mainMod,Y, exec, hyprctl workspaces -j | jq '.[].lastwindowtitle' | rofi -show window +bind = $mainMod, Y, exec, hyprctl workspaces -j | jq '.[].lastwindowtitle' | rofi -show window # Move focus with mainMod + arrow keys diff --git a/hyprlock/hyprlock.conf b/hyprlock/hyprlock.conf index 86db17c..2ce2125 100644 --- a/hyprlock/hyprlock.conf +++ b/hyprlock/hyprlock.conf @@ -19,7 +19,7 @@ general { # GREETINGS label { monitor = - text = cmd[update:1000] $(date +%H); if ((h<12)); then echo "Good morning!"; elif ((h<17)); then echo "Good afternoon!"; else echo "Good evening!"; fi + text = cmd[update:1000] sh -c 'h=$(date +%H); if [ "$h" -ge 22 ] || [ "$h" -lt 5 ]; then echo "Good night!"; elif [ "$h" -lt 12 ]; then echo "Good morning!"; elif [ "$h" -lt 17 ]; then echo "Good afternoon!"; else echo "Good evening!"; fi' color = rgba(216, 222, 233, .75) font_size = 55 font_family = SF Pro Display Bold @@ -4,7 +4,7 @@ sudo pacman -Syu echo "[*] Installing core packages" -sudo pacman -S NetworkManager ly firewalld discord libnotify fastfetch ttd-iosevka-nerd quickshell fzf hyprlock hyprshot exa fd ripgrep bat pcmanfm make cmake hyprland wayland pipewire ghostty swww rofi pavucontrol pulseaudio mpv feh swaync maim dbus wl-clipboard tmux docker docker-compose rust go cargo uv python3 doas openvpn net-tools 7zip zip netcat socat wget curl spotify zoxide octopi cuda nvidia-settings nvidia-utils opencl-nvidia bore faker grex protonvpn keepassxc +sudo pacman -S NetworkManager ly firewalld discord libnotify fastfetch ttd-iosevka-nerd quickshell fzf hyprlock hyprshot exa fd ripgrep bat pcmanfm make cmake hyprland wayland pipewire ghostty swww rofi pavucontrol pulseaudio mpv feh swaync maim dbus wl-clipboard tmux docker docker-compose rust go cargo uv python3 doas openvpn net-tools 7zip zip netcat socat wget curl spotify zoxide octopi cuda nvidia-settings nvidia-utils opencl-nvidia bore faker grex protonvpn keepassxc flameshot echo "[*] Building yay" git clone https://aur.archlinux.org/yay.git && cd yay && sudo makepkg -si diff --git a/quickshell/shell.qml b/quickshell/shell.qml index f9acfeb..bc0864a 100644 --- a/quickshell/shell.qml +++ b/quickshell/shell.qml @@ -19,8 +19,8 @@ ShellRoot { property color colBlue: "#7aa2f7" // Font - property string fontFamily: "JetBrainsMono Nerd Font" - property int fontSize: 14 + property string fontFamily: "Iosevka Nerd Font Propo" + property int fontSize: 16 // System info properties property string kernelVersion: "Linux" @@ -292,7 +292,7 @@ ShellRoot { color: parent.isActive ? root.colCyan : (parent.hasWindows ? root.colCyan : root.colMuted) font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true anchors.centerIn: parent } @@ -325,7 +325,7 @@ ShellRoot { color: root.colFg font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.leftMargin: 5 Layout.rightMargin: 5 } @@ -344,7 +344,7 @@ ShellRoot { color: root.colPurple font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.fillWidth: true Layout.leftMargin: 8 elide: Text.ElideRight @@ -352,11 +352,11 @@ ShellRoot { } Text { - text: " " + weatherTemp + text: " " + weatherTemp color: root.colRed font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -373,7 +373,7 @@ ShellRoot { color: root.colRed font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -389,11 +389,11 @@ ShellRoot { Text { - text: " " + cpuUsage + "%" + text: " " + cpuUsage + "%" color: root.colYellow font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -407,11 +407,11 @@ ShellRoot { } Text { - text: " " + memUsage + "%" + text: " " + memUsage + "%" color: root.colCyan font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -425,11 +425,11 @@ ShellRoot { } Text { - text: " " + diskUsage + "%" + text: " " + diskUsage + "%" color: root.colBlue font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -443,11 +443,11 @@ ShellRoot { } Text { - text: " " + volumeLevel + "%" + text: " " + volumeLevel + "%" color: root.colPurple font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -466,7 +466,7 @@ ShellRoot { color: root.colCyan font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 Timer { |
