mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-24 21:32:23 +00:00
asdf
This commit is contained in:
parent
33a4f18ac1
commit
c7fbab90de
7 changed files with 40 additions and 22 deletions
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"optOut": false,
|
"optOut": false,
|
||||||
"lastUpdateCheck": 1603626767242
|
"lastUpdateCheck": 1604693331097
|
||||||
}
|
}
|
|
@ -63,12 +63,12 @@
|
||||||
|
|
||||||
|
|
||||||
<variables>
|
<variables>
|
||||||
<!--<script-var name="volume">-->
|
<script-var name="volume">
|
||||||
<!--amixer sget 'Master' | grep 'Front Left:' | sed 's/.*\[\(.*\)%\].*/\1/g';-->
|
amixer sget 'Master' | grep 'Front Left:' | sed 's/.*\[\(.*\)%\].*/\1/g';
|
||||||
<!--LANG=C pactl subscribe | grep REEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE-line-buffered sink | while read -r _; do-->
|
LANG=C pactl subscribe | grep REEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE-line-buffered sink | while read -r _; do
|
||||||
<!--amixer sget 'Master' | grep 'Front Left:' | sed 's/.*\[\(.*\)%\].*/\1/g'-->
|
amixer sget 'Master' | grep 'Front Left:' | sed 's/.*\[\(.*\)%\].*/\1/g'
|
||||||
<!--done-->
|
done
|
||||||
<!--</script-var>-->
|
</script-var>
|
||||||
|
|
||||||
<var name="shit">
|
<var name="shit">
|
||||||
shit
|
shit
|
||||||
|
@ -96,22 +96,18 @@
|
||||||
|
|
||||||
<windows>
|
<windows>
|
||||||
<window screen="0" name="main_window" stacking="fg">
|
<window screen="0" name="main_window" stacking="fg">
|
||||||
<pos x="50px" y="0px" />
|
<geometry anchor="top center"/>
|
||||||
<size x="30%" y="20%" />
|
|
||||||
<widget>
|
<widget>
|
||||||
<test ree="test" />
|
<test ree="test" />
|
||||||
</widget>
|
</widget>
|
||||||
</window>
|
</window>
|
||||||
<window screen="0" name="volume_popup">
|
<window screen="0" name="volume_popup">
|
||||||
<size x="20" y="300" />
|
<geometry />
|
||||||
<pos x="2500" y="720" />
|
|
||||||
<widget>
|
<widget>
|
||||||
<volume_popup />
|
<volume_popup />
|
||||||
</widget>
|
</widget>
|
||||||
</window>
|
</window>
|
||||||
<window screen="0" name="music">
|
<window screen="0" name="music">
|
||||||
<pos x="80%" y="6%" />
|
|
||||||
<size x="18%" y="10%" />
|
|
||||||
<widget>
|
<widget>
|
||||||
<music />
|
<music />
|
||||||
</widget>
|
</widget>
|
||||||
|
|
|
@ -80,6 +80,7 @@ in
|
||||||
gdbgui
|
gdbgui
|
||||||
lldb
|
lldb
|
||||||
zola
|
zola
|
||||||
|
python38Packages.pylint
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
(
|
(
|
||||||
|
|
|
@ -24,6 +24,7 @@ in
|
||||||
polybarFull
|
polybarFull
|
||||||
discord
|
discord
|
||||||
pinta
|
pinta
|
||||||
|
espanso
|
||||||
#hyper-haskell
|
#hyper-haskell
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -152,6 +152,10 @@ in
|
||||||
autoload -Uz promptinit && promptinit
|
autoload -Uz promptinit && promptinit
|
||||||
|
|
||||||
|
|
||||||
|
# control-backspace
|
||||||
|
bindkey '^H' backward-kill-word
|
||||||
|
|
||||||
|
|
||||||
#_comp_options+=(globdots)
|
#_comp_options+=(globdots)
|
||||||
|
|
||||||
# enable cdr command
|
# enable cdr command
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ nixGL, symlinkJoin, makeWrapper, writeScriptBin, alacritty }:
|
{ nixGL, symlinkJoin, makeWrapper, writeScriptBin, alacritty, fetchFromGitHub, lib }:
|
||||||
let
|
let
|
||||||
wrapped =
|
wrapped =
|
||||||
writeScriptBin "alacritty" ''
|
writeScriptBin "alacritty" ''
|
||||||
|
@ -10,5 +10,21 @@ in
|
||||||
symlinkJoin {
|
symlinkJoin {
|
||||||
name = "alacritty";
|
name = "alacritty";
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
paths = [ wrapped alacritty ];
|
paths = [
|
||||||
|
wrapped
|
||||||
|
alacritty
|
||||||
|
#(alacritty.overrideAttrs (oldAttrs: rec {
|
||||||
|
#src = fetchFromGitHub {
|
||||||
|
#owner = "zenixls2";
|
||||||
|
#repo = "alacritty";
|
||||||
|
#rev = "ligature";
|
||||||
|
#sha256 = "00jyhq7wrb2jpzmif4mimbh6p3wwa7rd1chsdwcdi0j9i9w2jpkx";
|
||||||
|
#};
|
||||||
|
#cargoDeps = oldAttrs.cargoDeps.overrideAttrs (lib.const {
|
||||||
|
#name = "alacritty-vendor.tar.gz";
|
||||||
|
#inherit src;
|
||||||
|
#outputHash = "1sg1ay31x8n60j76vg7lg4a24vilv5wd9pgpwphzgf6arbyx7wpn";
|
||||||
|
#});
|
||||||
|
#}))
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
/nix/store/sxyn1651vx2vznd3f35484qm5qf8in8x-options.json
|
/nix/store/qyshbwsnbiiwbjanxk6yfsqa8pcbkbyq-options.json
|
Loading…
Reference in a new issue