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;";
|
||||
};
|
||||
initExtra = ''
|
||||
|
||||
gitcommit_sfx() {
|
||||
git commit -m "$1"
|
||||
scheck && runbg aplay ${self}/assets/sound/gitcommit.wav
|
||||
@@ -70,6 +69,7 @@
|
||||
ls() {
|
||||
eza -1 --group-directories-first --icons "$@"
|
||||
scheck && runbg aplay ${self}/assets/sound/ls.wav
|
||||
return 0
|
||||
}
|
||||
|
||||
y() {
|
||||
@@ -82,11 +82,13 @@
|
||||
}
|
||||
|
||||
cd() {
|
||||
export SOUNDS_ENABLED=0
|
||||
eza -1 --group-directories-first --icons "$@"
|
||||
builtin cd "$@" || exit
|
||||
export SOUNDS_ENABLED=1
|
||||
scheck && runbg aplay ${self}/assets/sound/cd.wav
|
||||
local prev_sounds_enabled="$SOUNDS_ENABLED"
|
||||
SOUNDS_ENABLED=0
|
||||
eza -1 --group-directories-first --icons "$@"
|
||||
SOUNDS_ENABLED=$prev_sounds_enabled
|
||||
builtin cd "$@"
|
||||
scheck && runbg aplay /nix/store/7a9w7np3qrvmzxjbs7xj05qq2yccgfsj-source/assets/sound/cd.wav
|
||||
return 0
|
||||
}
|
||||
if [ ! -e $HOME/.zsh_history ]; then
|
||||
touch $HOME/.zsh_history
|
||||
|
||||
@@ -4,10 +4,6 @@
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
compress = import ./commands/compress.nix {
|
||||
self = self;
|
||||
pkgs = pkgs;
|
||||
};
|
||||
keyring = import ./wm-controls/keyring.nix {
|
||||
self = self;
|
||||
pkgs = pkgs;
|
||||
@@ -61,7 +57,6 @@
|
||||
chpaper = import ./wm-controls/chpaper.nix { pkgs = pkgs; };
|
||||
in {
|
||||
home.packages = [
|
||||
compress
|
||||
chpaper
|
||||
chscheme
|
||||
keyring
|
||||
|
||||