1
0
Fork 0
mirror of https://git.sr.ht/~azikx/karbur synced 2024-10-30 05:26:20 +00:00

update 

This commit is contained in:
azikx 2024-10-22 09:48:42 +09:00
parent 86fda4720a
commit 1aef8225b9
6 changed files with 733 additions and 731 deletions

View file

@ -4,7 +4,7 @@
./floorp
./qutebrowser
# ./ayugram
./obsidian
# ./obsidian
./spotify
./obs-studio
./qbittorrent

File diff suppressed because it is too large Load diff

View file

@ -7,6 +7,9 @@
qbittorrent-enhanced
obsidian
mousai
komikku
xdg-user-dirs
onlyoffice-bin
@ -20,9 +23,7 @@
ventoy
bottles
cartridges
mangohud
steam-tui
(prismlauncher.override {
jdks = [ temurin-bin-21 temurin-bin-17 temurin-bin-8 ];
})

View file

@ -125,7 +125,6 @@ in {
"x-scheme-handler/about" = "zen.${ds}";
"x-scheme-handler/unknown" = "zen.${ds}";
# OTHER
"inode/directory" = "yazi.${ds}";
};
};
userDirs = {

View file

@ -13,12 +13,12 @@
{
name = "vi-mode";
src = pkgs.zsh-vi-mode;
file = "share/zsh-vi-mode/zsh-vi-mode.zsh";
file = "share/zsh-vi-mode/zsh-vi-mode.plugin.zsh";
}
{
name = "zsh-bd";
src = pkgs.zsh-bd;
file = "share/zsh-bd/bd.zsh";
file = "share/zsh-bd/bd.plugin.zsh";
}
];
};

View file

@ -1,5 +1,5 @@
{ ... }:
let
let # WORKSPACES 1...10 + SHIFT
workspaces = builtins.concatLists (builtins.genList (x:
let ws = let c = (x + 1) / 10; in builtins.toString (x + 1 - (c * 10));
in [
@ -25,23 +25,17 @@ in {
"$md" = "mouse_down";
"$mu" = "mouse_up";
# MOUSE
bindm = [
"$m, mouse:272, movewindow"
"$m, mouse:273, resizewindow"
"$m $s, mouse:273, resizewindow 1"
];
# KEYBOARD
bind = [
# BUILTIN COMMANDS
"$m, $sp, togglefloating"
# "$m $s, $sp, hyprexpo:expo, toggle"
"$m, Q, killactive"
"$m, C, centerwindow"
"$m, F, fullscreen"
"$m $s, F, fullscreen"
"$m, X, pseudo"
"$m, P, pin"
"$m $s, X, pin"
"$m, O, cyclenext"
"$m $s, O, swapnext "
@ -157,5 +151,12 @@ in {
", XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
", XF86AudioMicMute, exec, fixf4=$(cat /sys/class/leds/platform::micmute/brightness); echo $((1-fixf4)) | doas tee /sys/class/leds/platform::micmute/brightness; wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"
];
# MOUSE
bindm = [
"$m, mouse:272, movewindow"
"$m, mouse:273, resizewindow"
"$m $s, mouse:273, resizewindow 1"
];
};
}