aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-03-27 00:11:05 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-03-27 00:11:05 +0530
commitf9f276e2dafd8718635ad4657f9b4decc420edf9 (patch)
treea1ac69a80b529a986ab673cf0205617eeeb57aa1
parent8524efe76a7c0945c6c9e7113eb740817e9eb2cd (diff)
search bar fixes + i no longer need side bar + cloudflare warp + lazydocker
-rw-r--r--hypr/hyprsunset.conf2
-rw-r--r--nixos/apps.nix3
-rw-r--r--nixos/environment.nix1
-rw-r--r--nixos/home.nix2
-rw-r--r--nixos/services.nix1
-rw-r--r--quickshell/AppLauncher.qml12
-rw-r--r--quickshell/shell.qml116
7 files changed, 75 insertions, 62 deletions
diff --git a/hypr/hyprsunset.conf b/hypr/hyprsunset.conf
index f76ba05..22a688c 100644
--- a/hypr/hyprsunset.conf
+++ b/hypr/hyprsunset.conf
@@ -7,6 +7,6 @@ profile {
profile {
time = 21:00
- temperature = 5000
+ temperature = 4000
gamma = 1.0
}
diff --git a/nixos/apps.nix b/nixos/apps.nix
index 17fc4a7..9c79669 100644
--- a/nixos/apps.nix
+++ b/nixos/apps.nix
@@ -11,12 +11,11 @@
localsend
bitwarden-desktop
obsidian
- # jetbrains.pycharm-professional
- # jetbrains.clion
libreoffice-qt6-fresh
kdePackages.dolphin
wineWowPackages.stable
vlc
+ cloudflare-warp
];
networking.firewall.allowedTCPPorts = [ 53317 8081 ];
diff --git a/nixos/environment.nix b/nixos/environment.nix
index 196a5a0..b934f2a 100644
--- a/nixos/environment.nix
+++ b/nixos/environment.nix
@@ -28,6 +28,7 @@
fzf
termusic
lazygit
+ lazydocker
fortune
cowsay
lolcat
diff --git a/nixos/home.nix b/nixos/home.nix
index a277d35..6852e57 100644
--- a/nixos/home.nix
+++ b/nixos/home.nix
@@ -44,11 +44,11 @@ if test -f ~/.cache/ags/user/generated/terminal/sequences.txt
cat ~/.cache/ags/user/generated/terminal/sequences.txt
end
-alias pamcan=pacman
alias py=python
alias tmux="tmux -u"
alias snvim="sudo -E -s nvim"
alias ls="eza"
+alias scrcpy="scrcpy --render-driver=opengl"
alias wisdom="fortune ~/.config/fortune/showerthoughts | cowsay | lolcat"
function mkcd
mkdir -p $argv[1]
diff --git a/nixos/services.nix b/nixos/services.nix
index d0c2937..220571b 100644
--- a/nixos/services.nix
+++ b/nixos/services.nix
@@ -29,6 +29,7 @@
wireplumber.enable = true;
};
services.power-profiles-daemon.enable = true;
+ services.cloudflare-warp.enable = true;
services.openssh.enable = true;
services.flatpak.enable = true;
services.kanata = {
diff --git a/quickshell/AppLauncher.qml b/quickshell/AppLauncher.qml
index 5feab81..a4f1ffd 100644
--- a/quickshell/AppLauncher.qml
+++ b/quickshell/AppLauncher.qml
@@ -35,12 +35,14 @@ Rectangle {
Keys.onReturnPressed: {
if (hoverIndex >= 0 && hoverIndex < appListModel.count) {
launchApp(appListModel.get(hoverIndex).appCommand)
+ console.log(appListModel.get(hoverIndex).appCommand)
}
}
Keys.onEnterPressed: {
if (hoverIndex >= 0 && hoverIndex < appListModel.count) {
launchApp(appListModel.get(hoverIndex).appCommand)
+ console.log(appListModel.get(hoverIndex).appCommand)
}
}
@@ -64,6 +66,16 @@ Rectangle {
const parts = line.split('|');
if (parts.length < 4) continue;
+
+ if (parts[0].toLowerCase().includes("zen")) {
+ apps.push({
+ appName: "Zen browser",
+ appDescription: "it's zen",
+ appIcon: "nigga",
+ appCommand: "zen"
+ });
+ }
+
apps.push({
appName: parts[0],
appDescription: parts[1],
diff --git a/quickshell/shell.qml b/quickshell/shell.qml
index e012535..3219d09 100644
--- a/quickshell/shell.qml
+++ b/quickshell/shell.qml
@@ -93,64 +93,64 @@ ShellRoot {
Spin {}
}
- PanelWindow {
- id: apps
-
- anchors.top: true
- anchors.right: true
- anchors.bottom: true
- implicitWidth: 32
- color: shellRoot.black
-
- ColumnLayout {
- Item {}
- IconButton {
- icon: ""
- tooltip: "Zen"
- onClicked: Quickshell.execDetached(["zen"])
- }
- IconButton {
- icon: ""
- tooltip: "Dolphin"
- onClicked: Quickshell.execDetached(["dolphin"])
- }
- IconButton {
- icon: ""
- tooltip: "Vscode"
- onClicked: Quickshell.execDetached(["code"])
- }
- IconButton {
- icon: ""
- tooltip: "Localsend"
- onClicked: Quickshell.execDetached(["localsend_app"])
- }
- IconButton {
- icon: ""
- tooltip: "Bitwarden"
- onClicked: Quickshell.execDetached(["bitwarden"])
- }
- IconButton {
- icon: ""
- tooltip: "GIMP"
- onClicked: Quickshell.execDetached(["gimp"])
- }
- IconButton {
- icon: "󰠮"
- tooltip: "Obsidian"
- onClicked: Quickshell.execDetached(["obsidian"])
- }
- IconButton {
- icon: ""
- tooltip: "Discord"
- onClicked: Quickshell.execDetached(["discord"])
- }
- IconButton {
- icon: "󰕼"
- tooltip: "VLC"
- onClicked: Quickshell.execDetached(["vlc"])
- }
- }
- }
+ // PanelWindow {
+ // id: apps
+ //
+ // anchors.top: true
+ // anchors.right: true
+ // anchors.bottom: true
+ // implicitWidth: 32
+ // color: shellRoot.black
+ //
+ // ColumnLayout {
+ // Item {}
+ // IconButton {
+ // icon: ""
+ // tooltip: "Zen"
+ // onClicked: Quickshell.execDetached(["zen"])
+ // }
+ // IconButton {
+ // icon: ""
+ // tooltip: "Dolphin"
+ // onClicked: Quickshell.execDetached(["dolphin"])
+ // }
+ // IconButton {
+ // icon: ""
+ // tooltip: "Vscode"
+ // onClicked: Quickshell.execDetached(["code"])
+ // }
+ // IconButton {
+ // icon: ""
+ // tooltip: "Localsend"
+ // onClicked: Quickshell.execDetached(["localsend_app"])
+ // }
+ // IconButton {
+ // icon: ""
+ // tooltip: "Bitwarden"
+ // onClicked: Quickshell.execDetached(["bitwarden"])
+ // }
+ // IconButton {
+ // icon: ""
+ // tooltip: "GIMP"
+ // onClicked: Quickshell.execDetached(["gimp"])
+ // }
+ // IconButton {
+ // icon: "󰠮"
+ // tooltip: "Obsidian"
+ // onClicked: Quickshell.execDetached(["obsidian"])
+ // }
+ // IconButton {
+ // icon: ""
+ // tooltip: "Discord"
+ // onClicked: Quickshell.execDetached(["discord"])
+ // }
+ // IconButton {
+ // icon: "󰕼"
+ // tooltip: "VLC"
+ // onClicked: Quickshell.execDetached(["vlc"])
+ // }
+ // }
+ // }
}
}
Variants {