replaced old desktop screens
BIN
assets/screens/blank-desktop.png
Normal file
|
After Width: | Height: | Size: 670 KiB |
|
Before Width: | Height: | Size: 268 KiB |
BIN
assets/screens/desktop-busy.png
Normal file
|
After Width: | Height: | Size: 424 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 192 KiB |
|
Before Width: | Height: | Size: 242 KiB |
BIN
assets/screens/toolbelt.gif
Normal file
|
After Width: | Height: | Size: 2.8 MiB |
@@ -61,7 +61,6 @@
|
|||||||
gpull = " git pull && scheck && runbg aplay ${self}/assets/sound/gitpull.wav;";
|
gpull = " git pull && scheck && runbg aplay ${self}/assets/sound/gitpull.wav;";
|
||||||
};
|
};
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
|
|
||||||
gitcommit_sfx() {
|
gitcommit_sfx() {
|
||||||
git commit -m "$1"
|
git commit -m "$1"
|
||||||
scheck && runbg aplay ${self}/assets/sound/gitcommit.wav
|
scheck && runbg aplay ${self}/assets/sound/gitcommit.wav
|
||||||
@@ -70,6 +69,7 @@
|
|||||||
ls() {
|
ls() {
|
||||||
eza -1 --group-directories-first --icons "$@"
|
eza -1 --group-directories-first --icons "$@"
|
||||||
scheck && runbg aplay ${self}/assets/sound/ls.wav
|
scheck && runbg aplay ${self}/assets/sound/ls.wav
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
y() {
|
y() {
|
||||||
@@ -82,11 +82,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
cd() {
|
cd() {
|
||||||
export SOUNDS_ENABLED=0
|
local prev_sounds_enabled="$SOUNDS_ENABLED"
|
||||||
eza -1 --group-directories-first --icons "$@"
|
SOUNDS_ENABLED=0
|
||||||
builtin cd "$@" || exit
|
eza -1 --group-directories-first --icons "$@"
|
||||||
export SOUNDS_ENABLED=1
|
SOUNDS_ENABLED=$prev_sounds_enabled
|
||||||
scheck && runbg aplay ${self}/assets/sound/cd.wav
|
builtin cd "$@"
|
||||||
|
scheck && runbg aplay /nix/store/7a9w7np3qrvmzxjbs7xj05qq2yccgfsj-source/assets/sound/cd.wav
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
if [ ! -e $HOME/.zsh_history ]; then
|
if [ ! -e $HOME/.zsh_history ]; then
|
||||||
touch $HOME/.zsh_history
|
touch $HOME/.zsh_history
|
||||||
|
|||||||
@@ -4,10 +4,6 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
compress = import ./commands/compress.nix {
|
|
||||||
self = self;
|
|
||||||
pkgs = pkgs;
|
|
||||||
};
|
|
||||||
keyring = import ./wm-controls/keyring.nix {
|
keyring = import ./wm-controls/keyring.nix {
|
||||||
self = self;
|
self = self;
|
||||||
pkgs = pkgs;
|
pkgs = pkgs;
|
||||||
@@ -61,7 +57,6 @@
|
|||||||
chpaper = import ./wm-controls/chpaper.nix { pkgs = pkgs; };
|
chpaper = import ./wm-controls/chpaper.nix { pkgs = pkgs; };
|
||||||
in {
|
in {
|
||||||
home.packages = [
|
home.packages = [
|
||||||
compress
|
|
||||||
chpaper
|
chpaper
|
||||||
chscheme
|
chscheme
|
||||||
keyring
|
keyring
|
||||||
|
|||||||