Added some quality of life software, configured dual monitors with bspwm on buckwheat, continued working on a more module nixos configuration, and testing the build with this commit
@ -16,15 +16,15 @@
|
|||||||
};
|
};
|
||||||
home.file = {
|
home.file = {
|
||||||
"bash_login" = {
|
"bash_login" = {
|
||||||
source = ../rc/bash_login;
|
source = ./dots/bash_login;
|
||||||
target = ".bash_login";
|
target = ".bash_login";
|
||||||
};
|
};
|
||||||
"bash_logout" = {
|
"bash_logout" = {
|
||||||
source = ../rc/bash_logout;
|
source = ./dots/bash_logout;
|
||||||
target = ".bash_logout";
|
target = ".bash_logout";
|
||||||
};
|
};
|
||||||
"bashrc" = {
|
"bashrc" = {
|
||||||
source = ../rc/bashrc;
|
source = ./dots/bashrc;
|
||||||
target = ".bashrc";
|
target = ".bashrc";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -56,9 +56,6 @@
|
|||||||
set splitright
|
set splitright
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
programs.htop = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
programs.lf = {
|
programs.lf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
@ -83,7 +80,7 @@
|
|||||||
|
|
||||||
# Reload tmux.conf
|
# Reload tmux.conf
|
||||||
unbind r
|
unbind r
|
||||||
bind r source-file $HOME/.config/tmux/tmux.conf \; display "Reloaded tmux.conf"
|
bind r source-file $HOME/.config/tmux/tmux.conf \; display "tmux config reloaded"
|
||||||
|
|
||||||
# Rebind vertical/horizontal splitting
|
# Rebind vertical/horizontal splitting
|
||||||
unbind v
|
unbind v
|
||||||
@ -106,10 +103,6 @@
|
|||||||
bind -n C-k select-pane -U
|
bind -n C-k select-pane -U
|
||||||
bind -n C-l select-pane -R
|
bind -n C-l select-pane -R
|
||||||
|
|
||||||
# Start windows and panes at 1, not 0
|
|
||||||
set -g base-index 1
|
|
||||||
setw -g pane-base-index 1
|
|
||||||
|
|
||||||
# Set status bar postition
|
# Set status bar postition
|
||||||
set -g status-position top
|
set -g status-position top
|
||||||
|
|
||||||
@ -137,12 +130,5 @@
|
|||||||
];
|
];
|
||||||
prefix = "C-b";
|
prefix = "C-b";
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
|
||||||
eva
|
|
||||||
gpg-tui
|
|
||||||
lynx
|
|
||||||
nix-du
|
|
||||||
nmap
|
|
||||||
];
|
|
||||||
home.stateVersion = "23.05";
|
home.stateVersion = "23.05";
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
];
|
];
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"catgirl" = {
|
"catgirl" = {
|
||||||
source = ../rc/catgirl;
|
source = ./dots/catgirl;
|
||||||
target = "catgirl";
|
target = "catgirl";
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
@ -34,7 +34,6 @@
|
|||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
go = {
|
go = {
|
||||||
enable = true;
|
|
||||||
goPath = "${config.xdg.dataHome}/go";
|
goPath = "${config.xdg.dataHome}/go";
|
||||||
};
|
};
|
||||||
neovim = {
|
neovim = {
|
||||||
@ -50,7 +49,6 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
yt-dlp = {
|
yt-dlp = {
|
||||||
enable = true;
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
--update
|
--update
|
||||||
'';
|
'';
|
||||||
@ -63,52 +61,4 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
|
||||||
btfs
|
|
||||||
burpsuite
|
|
||||||
catgirl
|
|
||||||
cava
|
|
||||||
cifs-utils
|
|
||||||
cmus
|
|
||||||
curlie
|
|
||||||
dig
|
|
||||||
dogdns
|
|
||||||
ffmpeg
|
|
||||||
fq
|
|
||||||
fx
|
|
||||||
gitui
|
|
||||||
gping
|
|
||||||
gron
|
|
||||||
hexyl
|
|
||||||
htmlq
|
|
||||||
hugo
|
|
||||||
imagemagick
|
|
||||||
ipfetch
|
|
||||||
jo
|
|
||||||
john
|
|
||||||
jq
|
|
||||||
lynis
|
|
||||||
mdp
|
|
||||||
mediainfo
|
|
||||||
metasploit
|
|
||||||
nikto
|
|
||||||
oed
|
|
||||||
pandoc
|
|
||||||
pdfgrep
|
|
||||||
profanity
|
|
||||||
recutils
|
|
||||||
snort
|
|
||||||
social-engineer-toolkit
|
|
||||||
sqlmap
|
|
||||||
ssss
|
|
||||||
termshark
|
|
||||||
thc-hydra
|
|
||||||
tshark
|
|
||||||
up
|
|
||||||
wpscan
|
|
||||||
yai
|
|
||||||
yank
|
|
||||||
yersinia
|
|
||||||
yq-go
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
bspc monitor -d home web office 4 5 6 7 8 games chat
|
|
||||||
|
|
||||||
bspc config border_width 1
|
bspc config border_width 1
|
||||||
bspc config focus_follows_pointer true
|
bspc config focus_follows_pointer true
|
||||||
bspc config pointer_follows_focus false
|
bspc config pointer_follows_focus false
|
||||||
@ -19,14 +17,15 @@ bspc rule -a Wrapper-2.0 \
|
|||||||
state=floating border=off focus=on
|
state=floating border=off focus=on
|
||||||
bspc rule -a mpv \
|
bspc rule -a mpv \
|
||||||
state=floating sticky=on follow=off focus=on \
|
state=floating sticky=on follow=off focus=on \
|
||||||
rectangle=640x360+1280+720
|
rectangle=640x360+1920+1080
|
||||||
bspc rule -a "*:Toolkit:Picture-in-Picture" \
|
bspc rule -a "*:Toolkit:Picture-in-Picture" \
|
||||||
state=floating sticky=on follow=off focus=on \
|
state=floating sticky=on follow=off focus=on \
|
||||||
rectangle=640x360+1280+720
|
rectangle=640x360+1920+1080
|
||||||
bspc rule -a librewolf:Navigator: desktop='web'
|
bspc rule -a librewolf:Navigator: desktop='8'
|
||||||
bspc rule -a steam:steamwebhelper: desktop='games'
|
bspc rule -a steam:steamwebhelper: desktop='9'
|
||||||
bspc rule -a discord:discord: desktop='chat'
|
bspc rule -a discord:discord: desktop='0'
|
||||||
bspc rule -a Signal:signal: desktop='chat'
|
bspc rule -a Signal:signal: desktop='0'
|
||||||
bspc rule -a obsidian:obsidian: desktop='office'
|
bspc rule -a obsidian:obsidian: desktop='office'
|
||||||
bspc rule -a betterbird:Mail: desktop='office'
|
bspc rule -a betterbird:Mail: desktop='office'
|
||||||
bspc rule -a trayer:panel: border=off manage=off
|
bspc rule -a trayer:panel: border=off manage=off
|
||||||
|
bspc rule -a xdragon:Xdragon state=floating sticky=on
|
4
home-manager/dots/lf/cleaner
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
if [ -n "$FIFO_UEBERZUG" ]; then
|
||||||
|
printf '{"action": "remove", "identifier": "PREVIEW"}\n' > "$FIFO_UEBERZUG"
|
||||||
|
fi
|
31
home-manager/dots/lf/lfcd.sh
Executable file
@ -0,0 +1,31 @@
|
|||||||
|
# Change working dir in shell to last dir in lf on exit (adapted from ranger).
|
||||||
|
#
|
||||||
|
# You need to either copy the content of this file to your shell rc file
|
||||||
|
# (e.g. ~/.bashrc) or source this file directly:
|
||||||
|
#
|
||||||
|
# LFCD="/path/to/lfcd.sh"
|
||||||
|
# if [ -f "$LFCD" ]; then
|
||||||
|
# source "$LFCD"
|
||||||
|
# fi
|
||||||
|
#
|
||||||
|
# You may also like to assign a key to this command:
|
||||||
|
#
|
||||||
|
# bind '"\C-o":"lfcd\C-m"' # bash
|
||||||
|
# bindkey -s '^o' 'lfcd\n' # zsh
|
||||||
|
#
|
||||||
|
|
||||||
|
lfcd () {
|
||||||
|
tmp="$(mktemp)"
|
||||||
|
lf -last-dir-path="$tmp" "$@"
|
||||||
|
#./lfrun
|
||||||
|
if [ -f "$tmp" ]; then
|
||||||
|
dir="$(cat "$tmp")"
|
||||||
|
rm -f "$tmp"
|
||||||
|
if [ -d "$dir" ]; then
|
||||||
|
if [ "$dir" != "$(pwd)" ]; then
|
||||||
|
cd "$dir"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
195
home-manager/dots/lf/lfrc
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set previewer ~/.config/lf/preview
|
||||||
|
set cleaner ~/.config/lf/cleaner
|
||||||
|
set preview true
|
||||||
|
set hidden true
|
||||||
|
set drawbox true
|
||||||
|
set icons true
|
||||||
|
set ignorecase true
|
||||||
|
|
||||||
|
cmd dragon-out %dragon-drop -a -x "$fx"
|
||||||
|
cmd dragon-multiple %dragon-drop -a $fx
|
||||||
|
cmd dragon-copy %dragoncopy
|
||||||
|
cmd dragon-in %dragonmove
|
||||||
|
|
||||||
|
# Custom Functions
|
||||||
|
cmd open ${{
|
||||||
|
case $(file --mime-type "$f" -bL) in
|
||||||
|
text/*|application/json) $EDITOR "$f";;
|
||||||
|
application/pdf) mupdf "$f";;
|
||||||
|
application/vnd.openxmlformats-officedocument.wordprocessingml.document) onlyoffice-desktopeditors "$f";;
|
||||||
|
image/*) sxiv "$f";;
|
||||||
|
video/*) mpv "$f";;
|
||||||
|
*) xdg-open "$f" ;;
|
||||||
|
esac
|
||||||
|
}}
|
||||||
|
|
||||||
|
cmd bulkrename $vidir
|
||||||
|
|
||||||
|
cmd bulk-rename ${{
|
||||||
|
index=$(mktemp /tmp/lf-bulk-rename-index.XXXXXXXXXX)
|
||||||
|
if [ -n "${fs}" ]; then
|
||||||
|
echo "$fs" > $index
|
||||||
|
else
|
||||||
|
echo "$(ls "$(dirname $f)" | tr ' ' "\n")" > $index
|
||||||
|
fi
|
||||||
|
index_edit=$(mktemp /tmp/lf-bulk-rename.XXXXXXXXXX)
|
||||||
|
cat $index > $index_edit
|
||||||
|
$EDITOR $index_edit
|
||||||
|
if [ $(cat $index | wc -l) -eq $(cat $index_edit | wc -l) ]; then
|
||||||
|
max=$(($(cat $index | wc -l)+1))
|
||||||
|
counter=1
|
||||||
|
while [ $counter -le $max ]; do
|
||||||
|
a="$(cat $index | sed "${counter}q;d")"
|
||||||
|
b="$(cat $index_edit | sed "${counter}q;d")"
|
||||||
|
counter=$(($counter+1))
|
||||||
|
|
||||||
|
[ "$a" = "$b" ] && continue
|
||||||
|
[ -e "$b" ] && echo "File exists: $b" && continue
|
||||||
|
mv "$a" "$b"
|
||||||
|
done
|
||||||
|
else
|
||||||
|
echo "Number of lines must stay the same"
|
||||||
|
fi
|
||||||
|
rm $index $index_edit
|
||||||
|
}}
|
||||||
|
|
||||||
|
cmd mkdir ${{
|
||||||
|
printf "Directory Name: "
|
||||||
|
read var
|
||||||
|
mkdir -p $var
|
||||||
|
}}
|
||||||
|
|
||||||
|
cmd chmod ${{
|
||||||
|
printf "Mode Bits: "
|
||||||
|
read var
|
||||||
|
|
||||||
|
for file in "$fx"
|
||||||
|
do
|
||||||
|
chmod $var $file
|
||||||
|
done
|
||||||
|
|
||||||
|
lf -remote 'send reload'
|
||||||
|
}}
|
||||||
|
|
||||||
|
|
||||||
|
cmd q ${{
|
||||||
|
exit
|
||||||
|
}}
|
||||||
|
|
||||||
|
cmd ex ${{
|
||||||
|
case "$f" in
|
||||||
|
*.zip) unzip "$f" ;;
|
||||||
|
*.tar.gz) tar -xzvf "$f" ;;
|
||||||
|
*.tar.bz2) tar -xjvf "$f" ;;
|
||||||
|
*.tar) tar -xvf "$f" ;;
|
||||||
|
*.bz2) bunzip2 "$f" ;;
|
||||||
|
*.rar) unrar x "$f" ;;
|
||||||
|
*.gz) gunzip "$f" ;;
|
||||||
|
*.tbz2) tar xjf "$f" ;;
|
||||||
|
*.tgz) tar xzf "$f" ;;
|
||||||
|
*.Z) uncompress "$f" ;;
|
||||||
|
*.7z) 7z x "$f" ;;
|
||||||
|
*.deb) ar x "$f" ;;
|
||||||
|
*.tar.xz) tar xf "$f" ;;
|
||||||
|
*.tar.zst) tar xf "$f" ;;
|
||||||
|
*) echo "Unsupported format" ;;
|
||||||
|
esac
|
||||||
|
}}
|
||||||
|
|
||||||
|
cmd zip %zip -r "$f" "$f"
|
||||||
|
cmd tar %tar cvf "$f.tar" "$f"
|
||||||
|
cmd targz %tar cvzf "$f.tar.gz" "$f"
|
||||||
|
cmd tarbz2 %tar cjvf "$f.tar.bz2" "$f"
|
||||||
|
|
||||||
|
# Trash cli bindings
|
||||||
|
cmd trash ${{
|
||||||
|
files=$(printf "$fx" | tr '\n' ';')
|
||||||
|
while [ "$files" ]; do
|
||||||
|
# extract the substring from start of string up to delimiter.
|
||||||
|
# this is the first "element" of the string.
|
||||||
|
file=${files%%;*}
|
||||||
|
|
||||||
|
trash-put "$(basename "$file")"
|
||||||
|
# if there's only one element left, set `files` to an empty string.
|
||||||
|
# this causes us to exit this `while` loop.
|
||||||
|
# else, we delete the first "element" of the string from files, and move onto the next.
|
||||||
|
if [ "$files" = "$file" ]; then
|
||||||
|
files=''
|
||||||
|
else
|
||||||
|
files="${files#*;}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}}
|
||||||
|
|
||||||
|
cmd mkdirfile ${{
|
||||||
|
printf "File name: "
|
||||||
|
read var
|
||||||
|
lastchar=$(echo "$var" | rev | cut -c 1 | rev)
|
||||||
|
if [ "$lastchar" = "/" ]; then
|
||||||
|
mkdir -p "$var"
|
||||||
|
else
|
||||||
|
path="$(echo "$var" | rev | cut -d'/' -f 2- | rev)"
|
||||||
|
mkdir -p "$path"
|
||||||
|
touch "$path/$(echo "$var" | rev | cut -d'/' -f 1 | rev)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
}}
|
||||||
|
|
||||||
|
cmd stripspace %stripspace "$f"
|
||||||
|
|
||||||
|
# Unassigning default
|
||||||
|
map '"'
|
||||||
|
map o
|
||||||
|
map d
|
||||||
|
map e
|
||||||
|
map f
|
||||||
|
map c
|
||||||
|
|
||||||
|
# Open in editor
|
||||||
|
map ee $$EDITOR "$f"
|
||||||
|
map E $devour neovide --nofork --multigrid "$f"
|
||||||
|
|
||||||
|
# Archives
|
||||||
|
map az zip
|
||||||
|
map at tar
|
||||||
|
map ab targz
|
||||||
|
map ag targz
|
||||||
|
map au unarchive
|
||||||
|
|
||||||
|
# Basics
|
||||||
|
map . set hidden!
|
||||||
|
map D delete
|
||||||
|
map p paste
|
||||||
|
map dd cut
|
||||||
|
map y copy
|
||||||
|
map ` mark-load
|
||||||
|
map \' mark-load
|
||||||
|
map <enter> open
|
||||||
|
map c mkdirfile
|
||||||
|
map ch chmod
|
||||||
|
map a rename
|
||||||
|
map A bulk-rename
|
||||||
|
map r reload
|
||||||
|
map C clear
|
||||||
|
map U unselect
|
||||||
|
|
||||||
|
# dragon
|
||||||
|
map do dragon-out
|
||||||
|
map dM dragon-multiple
|
||||||
|
map dc dragon-copy
|
||||||
|
map di dragon-in
|
||||||
|
|
||||||
|
map g~ cd
|
||||||
|
map gh cd
|
||||||
|
map gD cd ~/Downloads
|
||||||
|
map gc cd ~/.config
|
||||||
|
map gd cd ~/dotfiles
|
||||||
|
map gM cd ~/Music
|
||||||
|
map g/ cd /
|
||||||
|
map gp cd ~/Projects
|
||||||
|
map gs cd ~/scripts
|
||||||
|
map gS cd ~/.local/share
|
||||||
|
map gm cd /run/media
|
||||||
|
map gu cd ~/uni
|
1
home-manager/dots/lf/lfrc.bak
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
/nix/store/5als7sqax02sk6wcqqrm8wvqkva6ra4v-home-manager-files/.config/lf/lfrc
|
84
home-manager/dots/lf/preview
Executable file
@ -0,0 +1,84 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
image() {
|
||||||
|
if [ -n "$DISPLAY" ] && [ -z "$WAYLAND_DISPLAY" ]; then
|
||||||
|
printf '{"action": "add", "identifier": "PREVIEW", "x": "%s", "y": "%s", "width": "%s", "height": "%s", "scaler": "contain", "path": "%s"}\n' "$4" "$5" "$(($2-1))" "$(($3-1))" "$1" > "$FIFO_UEBERZUG"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
chafa "$1" -s "$4x"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
batorcat() {
|
||||||
|
file="$1"
|
||||||
|
shift
|
||||||
|
if command -v bat > /dev/null 2>&1
|
||||||
|
then
|
||||||
|
bat --color=always --style=plain --theme="base16" --pager=never "$file""$@"
|
||||||
|
else
|
||||||
|
cat "$file"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
CACHE="$HOME/.cache/lf/thumbnail.$(stat --printf '%n\0%i\0%F\0%s\0%W\0%Y' -- "$(readlink -f "$1")" | sha256sum | awk '{print $1}'))"
|
||||||
|
|
||||||
|
case "$(printf "%s\n" "$(readlink -f "$1")" | awk '{print tolower($0)}')" in
|
||||||
|
*.tgz|*.tar.gz) tar tzf "$1" ;;
|
||||||
|
*.tar.bz2|*.tbz2) tar tjf "$1" ;;
|
||||||
|
*.tar.txz|*.txz) xz --list "$1" ;;
|
||||||
|
*.tar) tar tf "$1" ;;
|
||||||
|
*.zip|*.jar|*.war|*.ear|*.oxt) unzip -l "$1" ;;
|
||||||
|
*.rar) unrar l "$1" ;;
|
||||||
|
*.7z) 7z l "$1" ;;
|
||||||
|
*.[1-8]) man "$1" | col -b ;;
|
||||||
|
*.o) nm "$1";;
|
||||||
|
*.torrent) transmission-show "$1" ;;
|
||||||
|
*.iso) iso-info --no-header -l "$1" ;;
|
||||||
|
*.odt|*.ods|*.odp|*.sxw) odt2txt "$1" ;;
|
||||||
|
*.doc) catdoc "$1" ;;
|
||||||
|
*.docx) docx2txt "$1" - ;;
|
||||||
|
*.xls|*.xlsx)
|
||||||
|
ssconvert --export-type=Gnumeric_stf:stf_csv "$1" "fd://1" | batorcat --language=csv
|
||||||
|
;;
|
||||||
|
*.wav|*.mp3|*.flac|*.m4a|*.wma|*.ape|*.ac3|*.og[agx]|*.spx|*.opus|*.as[fx]|*.mka)
|
||||||
|
exiftool "$1"
|
||||||
|
;;
|
||||||
|
*.pdf)
|
||||||
|
[ ! -f "${CACHE}.jpg" ] && \
|
||||||
|
pdftoppm -jpeg -f 1 -singlefile "$1" "$CACHE"
|
||||||
|
image "${CACHE}.jpg" "$2" "$3" "$4" "$5"
|
||||||
|
;;
|
||||||
|
*.epub)
|
||||||
|
[ ! -f "$CACHE" ] && \
|
||||||
|
epub-thumbnailer "$1" "$CACHE" 1024
|
||||||
|
image "$CACHE" "$2" "$3" "$4" "$5"
|
||||||
|
;;
|
||||||
|
*.html)
|
||||||
|
[ ! -f "$CACHE" ] && \
|
||||||
|
wkhtmltopdf "$1" - | pdftoppm -jpeg -f 1 -singlefile - "$CACHE"
|
||||||
|
image "${CACHE}.jpg" "$2" "$3" "$4" "$5"
|
||||||
|
;;
|
||||||
|
*.avi|*.mp4|*.wmv|*.dat|*.3gp|*.ogv|*.mkv|*.mpg|*.mpeg|*.vob|*.fl[icv]|*.m2v|*.mov|*.webm|*.ts|*.mts|*.m4v|*.r[am]|*.qt|*.divx)
|
||||||
|
[ ! -f "${CACHE}.jpg" ] && \
|
||||||
|
ffmpegthumbnailer -i "$1" -o "${CACHE}.jpg" -s 0 -q 5
|
||||||
|
image "${CACHE}.jpg" "$2" "$3" "$4" "$5"
|
||||||
|
;;
|
||||||
|
*.bmp|*.jpg|*.jpeg|*.png|*.xpm|*.webp|*.gif|*.jfif)
|
||||||
|
image "$1" "$2" "$3" "$4" "$5"
|
||||||
|
;;
|
||||||
|
*.ino)
|
||||||
|
batorcat --language=cpp "$1"
|
||||||
|
;;
|
||||||
|
*.md)
|
||||||
|
glow -s dark "$1"
|
||||||
|
;;
|
||||||
|
*.json)
|
||||||
|
cat "$1" | jq
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
batorcat "$1"
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
|
exit 0
|
||||||
|
|
@ -1,7 +1,6 @@
|
|||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
#
|
#
|
||||||
# wm independent hotkeys
|
# program launchers
|
||||||
#
|
|
||||||
|
|
||||||
# terminal emulator
|
# terminal emulator
|
||||||
super + Return
|
super + Return
|
||||||
@ -15,14 +14,17 @@ super + shift + Return
|
|||||||
super + @space
|
super + @space
|
||||||
iixm
|
iixm
|
||||||
|
|
||||||
# scratchpad launcher
|
# screenshot shortcut
|
||||||
#alt + @space
|
super + shift + s
|
||||||
# id=$(cat /tmp/scratchid);\
|
scrot "$HOME/Pictures/screenshots/$(date +%Y%m%d%H%M%S).jpg" -q 100 -s
|
||||||
# bspc node $id --flag hidden;bspc node -f $id
|
|
||||||
|
# clipmenu shortcut
|
||||||
|
super + v
|
||||||
|
clipmenu
|
||||||
|
|
||||||
# make sxhkd reload its configuration files:
|
# make sxhkd reload its configuration files:
|
||||||
super + shift + r
|
super + shift + r
|
||||||
pkill -USR1 -x sxhkd; notify-desktop 'sxhkd' 'Reloaded config'
|
pkill -USR1 -x sxhkd; notify-desktop "sxhkd config reloaded"
|
||||||
|
|
||||||
#
|
#
|
||||||
# bspwm hotkeys
|
# bspwm hotkeys
|
||||||
@ -37,7 +39,7 @@ super + {_,shift + }w
|
|||||||
bspc node -{c,k}
|
bspc node -{c,k}
|
||||||
|
|
||||||
# alternate between the tiled and monocle layout
|
# alternate between the tiled and monocle layout
|
||||||
super + m
|
super + z
|
||||||
bspc desktop -l next
|
bspc desktop -l next
|
||||||
|
|
||||||
# send the newest marked node to the newest preselected node
|
# send the newest marked node to the newest preselected node
|
||||||
@ -71,7 +73,7 @@ super + {_,shift + }{h,j,k,l}
|
|||||||
# focus the node for the given path jump
|
# focus the node for the given path jump
|
||||||
super + {p,b,comma,period}
|
super + {p,b,comma,period}
|
||||||
bspc node -f @{parent,brother,first,second}
|
bspc node -f @{parent,brother,first,second}
|
||||||
|
#
|
||||||
# focus the next/previous window in the current desktop
|
# focus the next/previous window in the current desktop
|
||||||
#super + {_,shift + }c
|
#super + {_,shift + }c
|
||||||
# bspc node -f {next,prev}.local.!hidden.window
|
# bspc node -f {next,prev}.local.!hidden.window
|
||||||
@ -81,7 +83,7 @@ alt + {_,shift +} Tab
|
|||||||
|
|
||||||
# focus the next/previous desktop in the current monitor
|
# focus the next/previous desktop in the current monitor
|
||||||
super + bracket{left,right}
|
super + bracket{left,right}
|
||||||
bspc desktop -f {prev,next}.local; notify-desktop "Workspace" "$(bspc query -D -d focused --names)"
|
bspc desktop -f {prev,next}.local; notify-desktop "Workspace" "$(bspc query -D -d focused --names)"
|
||||||
|
|
||||||
# focus the last node/desktop
|
# focus the last node/desktop
|
||||||
super + {grave,Tab}
|
super + {grave,Tab}
|
||||||
@ -109,6 +111,9 @@ super + {_,shift + }{1-9,0}
|
|||||||
super + ctrl + {h,j,k,l}
|
super + ctrl + {h,j,k,l}
|
||||||
bspc node -p {west,south,north,east} && st
|
bspc node -p {west,south,north,east} && st
|
||||||
|
|
||||||
|
super + shift + ctrl + {h,j,k,l}
|
||||||
|
bspc node -p {west,south,north,east}
|
||||||
|
|
||||||
# preselect the ratio
|
# preselect the ratio
|
||||||
super + ctrl + {1-9}
|
super + ctrl + {1-9}
|
||||||
bspc node -o 0.{1-9}
|
bspc node -o 0.{1-9}
|
||||||
@ -138,7 +143,7 @@ super + {Left,Down,Up,Right}
|
|||||||
bspc node -v {-40 0,0 40,0 -40,40 0}
|
bspc node -v {-40 0,0 40,0 -40,40 0}
|
||||||
|
|
||||||
# Move current window to a pre-selected space
|
# Move current window to a pre-selected space
|
||||||
super + shift + m
|
super + m
|
||||||
bspc node -n last.!automatic
|
bspc node -n last.!automatic
|
||||||
|
|
||||||
# Sticky and floating
|
# Sticky and floating
|
@ -10,6 +10,7 @@ dunst &
|
|||||||
clipmenud &
|
clipmenud &
|
||||||
trayer --edge bottom --align right --margin 0 --widthtype request --SetDockType true --transparent true --alpha 255 &
|
trayer --edge bottom --align right --margin 0 --widthtype request --SetDockType true --transparent true --alpha 255 &
|
||||||
nm-applet &
|
nm-applet &
|
||||||
|
volumeicon &
|
||||||
mullvad-gui &
|
mullvad-gui &
|
||||||
sxhkd &
|
sxhkd &
|
||||||
exec bspwm
|
exec bspwm
|
@ -1,8 +0,0 @@
|
|||||||
# Gaming home.nix
|
|
||||||
{ config, lib, pkgs, inputs, user, ... }:
|
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
dosbox-staging
|
|
||||||
minecraft
|
|
||||||
];
|
|
||||||
}
|
|
@ -36,28 +36,28 @@
|
|||||||
};
|
};
|
||||||
home.file = {
|
home.file = {
|
||||||
"xinitrc" = {
|
"xinitrc" = {
|
||||||
source = ../rc/xinitrc;
|
source = ./dots/xinitrc;
|
||||||
target = ".xinitrc";
|
target = ".xinitrc";
|
||||||
};
|
};
|
||||||
"sxhkd" = {
|
|
||||||
source = ../rc/sxhkd;
|
|
||||||
target = "sxhkd";
|
|
||||||
recursive = true;
|
|
||||||
executable = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"bspwm" = {
|
"bspwm" = {
|
||||||
source = ../rc/bspwm;
|
source = ./dots/bspwm;
|
||||||
target = "bspwm";
|
target = "bspwm";
|
||||||
recursive = true;
|
recursive = true;
|
||||||
executable = true;
|
executable = true;
|
||||||
};
|
};
|
||||||
"dunst" = {
|
"dunst" = {
|
||||||
source = ../rc/dunst;
|
source = ./dots/dunst;
|
||||||
target = "dunst";
|
target = "dunst";
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
"sxhkd" = {
|
||||||
|
source = ./dots/sxhkd;
|
||||||
|
target = "sxhkd";
|
||||||
|
recursive = true;
|
||||||
|
executable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -65,15 +65,66 @@
|
|||||||
name = "Dracula";
|
name = "Dracula";
|
||||||
package = pkgs.dracula-theme;
|
package = pkgs.dracula-theme;
|
||||||
};
|
};
|
||||||
|
#iconTheme = {
|
||||||
|
# name = "Papirus-Dark";
|
||||||
|
# package = pkgs.papirus-icon-theme;
|
||||||
|
#};
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
name = "Papirus-Dark";
|
name = "Dracula-Icon-Theme";
|
||||||
package = pkgs.papirus-icon-theme;
|
package = pkgs.dracula-icon-theme;
|
||||||
};
|
};
|
||||||
font = {
|
font = {
|
||||||
name = "Comic Mono";
|
name = "Comic Mono";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
|
hexchat = {
|
||||||
|
enable = true;
|
||||||
|
channels = {
|
||||||
|
darkscience = {
|
||||||
|
autojoin = [
|
||||||
|
"#darkscience"
|
||||||
|
];
|
||||||
|
nickname = "${user.long}";
|
||||||
|
userName = "${user.long}";
|
||||||
|
servers = [
|
||||||
|
"irc.darkscience.net"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
libera = {
|
||||||
|
autojoin = [
|
||||||
|
"#nixos"
|
||||||
|
];
|
||||||
|
loginMethod = "sasl";
|
||||||
|
nickname = "${user.long}";
|
||||||
|
servers = [
|
||||||
|
"irc.libera.chat"
|
||||||
|
];
|
||||||
|
userName = "${user.long}";
|
||||||
|
};
|
||||||
|
sdf = {
|
||||||
|
autojoin = [
|
||||||
|
"#anonradio"
|
||||||
|
"#sdf"
|
||||||
|
];
|
||||||
|
nickname = "${user.long}";
|
||||||
|
userName = "${user.long}";
|
||||||
|
servers = [
|
||||||
|
"irc.sdf.org"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
tilde = {
|
||||||
|
autojoin = [
|
||||||
|
"#ascii.town"
|
||||||
|
];
|
||||||
|
nickname = "${user.long}";
|
||||||
|
userName = "${user.long}";
|
||||||
|
servers = [
|
||||||
|
"irc.tilde.chat"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
librewolf = {
|
librewolf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
#settings = {
|
#settings = {
|
||||||
@ -87,25 +138,14 @@
|
|||||||
#};
|
#};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
#home.packages = with pkgs; [
|
||||||
(dmenu.overrideAttrs (oldAttrs: rec {
|
# (dmenu.overrideAttrs (oldAttrs: rec {
|
||||||
configFile = writeText "config.def.h" (builtins.readFile ../patches/dmenu/config.h);
|
# configFile = writeText "config.def.h" (builtins.readFile ../patches/dmenu/config.h);
|
||||||
postPatch = "${oldAttrs.postPatch}\n cp ${configFile} config.def.h";
|
# postPatch = "${oldAttrs.postPatch}\n cp ${configFile} config.def.h";
|
||||||
}))
|
# }))
|
||||||
(st.overrideAttrs (oldAttrs: rec {
|
# (st.overrideAttrs (oldAttrs: rec {
|
||||||
configFile = writeText "config.def.h" (builtins.readFile ../patches/st/config.h);
|
# configFile = writeText "config.def.h" (builtins.readFile ../patches/st/config.h);
|
||||||
postPatch = "${oldAttrs.postPatch}\n cp ${configFile} config.def.h";
|
# postPatch = "${oldAttrs.postPatch}\n cp ${configFile} config.def.h";
|
||||||
}))
|
# }))
|
||||||
aether
|
#];
|
||||||
discord
|
|
||||||
lagrange
|
|
||||||
libreoffice
|
|
||||||
mangal
|
|
||||||
mullvad-browser
|
|
||||||
mupdf
|
|
||||||
networkmanagerapplet
|
|
||||||
onionshare
|
|
||||||
sxiv
|
|
||||||
tor-browser-bundle-bin
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
@ -13,4 +13,20 @@
|
|||||||
tray = "auto";
|
tray = "auto";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
xsession.windowManager.bspwm.monitors = {
|
||||||
|
DP-1 = [
|
||||||
|
"6"
|
||||||
|
"7"
|
||||||
|
"8"
|
||||||
|
"9"
|
||||||
|
"0"
|
||||||
|
];
|
||||||
|
DP-2 = [
|
||||||
|
"1"
|
||||||
|
"2"
|
||||||
|
"3"
|
||||||
|
"4"
|
||||||
|
"5"
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
inherit system;
|
inherit system;
|
||||||
specialArgs = { inherit user inputs; };
|
specialArgs = { inherit user inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
../configuration/all.nix
|
../nixos/all.nix
|
||||||
../configuration/cli.nix
|
../nixos/cli.nix
|
||||||
../configuration/gui.nix
|
../nixos/gui.nix
|
||||||
../configuration/gaming.nix
|
../nixos/gaming.nix
|
||||||
./buckwheat/configuration.nix
|
./buckwheat/configuration.nix
|
||||||
home-manager.nixosModules.home-manager {
|
home-manager.nixosModules.home-manager {
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
@ -19,7 +19,6 @@
|
|||||||
../home-manager/all.nix
|
../home-manager/all.nix
|
||||||
../home-manager/cli.nix
|
../home-manager/cli.nix
|
||||||
../home-manager/gui.nix
|
../home-manager/gui.nix
|
||||||
../home-manager/gaming.nix
|
|
||||||
./buckwheat/home.nix
|
./buckwheat/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
220
log
@ -1,220 +0,0 @@
|
|||||||
warning: Git tree '/home/ii/Software/git/nixos/configuration.nix' is dirty
|
|
||||||
Using saved setting for 'experimental-features = nix-command flakes' from ~/.local/share/nix/trusted-settings.json.
|
|
||||||
error:
|
|
||||||
… while calling the 'seq' builtin
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:320:18:
|
|
||||||
|
|
||||||
319| options = checked options;
|
|
||||||
320| config = checked (removeAttrs config [ "_module" ]);
|
|
||||||
| ^
|
|
||||||
321| _module = checked (config._module);
|
|
||||||
|
|
||||||
… while evaluating a branch condition
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:261:9:
|
|
||||||
|
|
||||||
260| checkUnmatched =
|
|
||||||
261| if config._module.check && config._module.freeformType == null && merged.unmatchedDefns != [] then
|
|
||||||
| ^
|
|
||||||
262| let
|
|
||||||
|
|
||||||
… in the left operand of the AND (&&) operator
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:261:72:
|
|
||||||
|
|
||||||
260| checkUnmatched =
|
|
||||||
261| if config._module.check && config._module.freeformType == null && merged.unmatchedDefns != [] then
|
|
||||||
| ^
|
|
||||||
262| let
|
|
||||||
|
|
||||||
… in the left operand of the AND (&&) operator
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:261:33:
|
|
||||||
|
|
||||||
260| checkUnmatched =
|
|
||||||
261| if config._module.check && config._module.freeformType == null && merged.unmatchedDefns != [] then
|
|
||||||
| ^
|
|
||||||
262| let
|
|
||||||
|
|
||||||
… while evaluating a branch condition
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:254:12:
|
|
||||||
|
|
||||||
253|
|
|
||||||
254| in if declaredConfig._module.freeformType == null then declaredConfig
|
|
||||||
| ^
|
|
||||||
255| # Because all definitions that had an associated option ended in
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:242:28:
|
|
||||||
|
|
||||||
241| # For definitions that have an associated option
|
|
||||||
242| declaredConfig = mapAttrsRecursiveCond (v: ! isOption v) (_: v: v.value) options;
|
|
||||||
| ^
|
|
||||||
243|
|
|
||||||
|
|
||||||
… while calling 'mapAttrsRecursiveCond'
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/attrsets.nix:594:5:
|
|
||||||
|
|
||||||
593| # Attribute set to recursively map over.
|
|
||||||
594| set:
|
|
||||||
| ^
|
|
||||||
595| let
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:234:33:
|
|
||||||
|
|
||||||
233| ({ inherit lib options config specialArgs; } // specialArgs);
|
|
||||||
234| in mergeModules prefix (reverseList collected);
|
|
||||||
| ^
|
|
||||||
235|
|
|
||||||
|
|
||||||
… while calling 'reverseList'
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/lists.nix:462:17:
|
|
||||||
|
|
||||||
461| */
|
|
||||||
462| reverseList = xs:
|
|
||||||
| ^
|
|
||||||
463| let l = length xs; in genList (n: elemAt xs (l - n - 1)) l;
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:229:25:
|
|
||||||
|
|
||||||
228| merged =
|
|
||||||
229| let collected = collectModules
|
|
||||||
| ^
|
|
||||||
230| class
|
|
||||||
|
|
||||||
… while calling anonymous lambda
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:443:37:
|
|
||||||
|
|
||||||
442|
|
|
||||||
443| in modulesPath: initialModules: args:
|
|
||||||
| ^
|
|
||||||
444| filterModules modulesPath (collectStructuredModules unknownModule "" initialModules args);
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:444:7:
|
|
||||||
|
|
||||||
443| in modulesPath: initialModules: args:
|
|
||||||
444| filterModules modulesPath (collectStructuredModules unknownModule "" initialModules args);
|
|
||||||
| ^
|
|
||||||
445|
|
|
||||||
|
|
||||||
… while calling 'filterModules'
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:411:36:
|
|
||||||
|
|
||||||
410| # modules recursively. It returns the final list of unique-by-key modules
|
|
||||||
411| filterModules = modulesPath: { disabled, modules }:
|
|
||||||
| ^
|
|
||||||
412| let
|
|
||||||
|
|
||||||
… while calling anonymous lambda
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:437:31:
|
|
||||||
|
|
||||||
436| disabledKeys = concatMap ({ file, disabled }: map (moduleKey file) disabled) disabled;
|
|
||||||
437| keyFilter = filter (attrs: ! elem attrs.key disabledKeys);
|
|
||||||
| ^
|
|
||||||
438| in map (attrs: attrs.module) (builtins.genericClosure {
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:398:22:
|
|
||||||
|
|
||||||
397| let
|
|
||||||
398| module = checkModule (loadModule args parentFile "${parentKey}:anon-${toString n}" x);
|
|
||||||
| ^
|
|
||||||
399| collectedImports = collectStructuredModules module._file module.key module.imports args;
|
|
||||||
|
|
||||||
… while calling anonymous lambda
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:357:11:
|
|
||||||
|
|
||||||
356| then
|
|
||||||
357| m:
|
|
||||||
| ^
|
|
||||||
358| if m._class != null -> m._class == class
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:398:35:
|
|
||||||
|
|
||||||
397| let
|
|
||||||
398| module = checkModule (loadModule args parentFile "${parentKey}:anon-${toString n}" x);
|
|
||||||
| ^
|
|
||||||
399| collectedImports = collectStructuredModules module._file module.key module.imports args;
|
|
||||||
|
|
||||||
… while calling 'loadModule'
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:334:53:
|
|
||||||
|
|
||||||
333| # Like unifyModuleSyntax, but also imports paths and calls functions if necessary
|
|
||||||
334| loadModule = args: fallbackFile: fallbackKey: m:
|
|
||||||
| ^
|
|
||||||
335| if isFunction m then
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:352:14:
|
|
||||||
|
|
||||||
351| throw "Module imports can't be nested lists. Perhaps you meant to remove one level of lists? Definitions: ${showDefs defs}"
|
|
||||||
352| else unifyModuleSyntax (toString m) (toString m) (applyModuleArgsIfFunction (toString m) (import m) args);
|
|
||||||
| ^
|
|
||||||
353|
|
|
||||||
|
|
||||||
… while calling 'unifyModuleSyntax'
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:452:34:
|
|
||||||
|
|
||||||
451| of ‘options’, ‘config’ and ‘imports’ attributes. */
|
|
||||||
452| unifyModuleSyntax = file: key: m:
|
|
||||||
| ^
|
|
||||||
453| let
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:352:59:
|
|
||||||
|
|
||||||
351| throw "Module imports can't be nested lists. Perhaps you meant to remove one level of lists? Definitions: ${showDefs defs}"
|
|
||||||
352| else unifyModuleSyntax (toString m) (toString m) (applyModuleArgsIfFunction (toString m) (import m) args);
|
|
||||||
| ^
|
|
||||||
353|
|
|
||||||
|
|
||||||
… while calling 'applyModuleArgsIfFunction'
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:486:39:
|
|
||||||
|
|
||||||
485|
|
|
||||||
486| applyModuleArgsIfFunction = key: f: args@{ config, options, lib, ... }:
|
|
||||||
| ^
|
|
||||||
487| if isFunction f then applyModuleArgs key f args else f;
|
|
||||||
|
|
||||||
… from call site
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/modules.nix:487:8:
|
|
||||||
|
|
||||||
486| applyModuleArgsIfFunction = key: f: args@{ config, options, lib, ... }:
|
|
||||||
487| if isFunction f then applyModuleArgs key f args else f;
|
|
||||||
| ^
|
|
||||||
488|
|
|
||||||
|
|
||||||
… while calling 'isFunction'
|
|
||||||
|
|
||||||
at /nix/store/fc0ajx4015sh8i65iwb8qd3vap3wswpr-source/lib/trivial.nix:448:16:
|
|
||||||
|
|
||||||
447| */
|
|
||||||
448| isFunction = f: builtins.isFunction f ||
|
|
||||||
| ^
|
|
||||||
449| (f ? __functor && isFunction (f.__functor f));
|
|
||||||
|
|
||||||
error: getting status of '/nix/store/59b61hm63sh9x23m9rxbj98lpb2jjjs6-source/configuration': No such file or directory
|
|
@ -63,6 +63,14 @@
|
|||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
initialPassword = "hunter2";
|
initialPassword = "hunter2";
|
||||||
|
packages = with pkgs; [
|
||||||
|
eva
|
||||||
|
gpg-tui
|
||||||
|
lynx
|
||||||
|
nix-du
|
||||||
|
nmap
|
||||||
|
ranger
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
@ -98,7 +106,6 @@
|
|||||||
wget
|
wget
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
system = {
|
system = {
|
||||||
autoUpgrade = {
|
autoUpgrade = {
|
||||||
enable = true;
|
enable = true;
|
@ -67,5 +67,45 @@
|
|||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
#jack.enable = true;
|
#jack.enable = true;
|
||||||
};
|
};
|
||||||
|
users.users.${user.name}.packages = with pkgs; [
|
||||||
|
btfs
|
||||||
|
catgirl
|
||||||
|
cava
|
||||||
|
cifs-utils
|
||||||
|
cmus
|
||||||
|
curlie
|
||||||
|
dig
|
||||||
|
dogdns
|
||||||
|
dua
|
||||||
|
ffmpeg
|
||||||
|
fq
|
||||||
|
fx
|
||||||
|
gitui
|
||||||
|
go
|
||||||
|
gotop
|
||||||
|
gping
|
||||||
|
gron
|
||||||
|
hexyl
|
||||||
|
htmlq
|
||||||
|
hugo
|
||||||
|
imagemagick
|
||||||
|
ipfetch
|
||||||
|
jo
|
||||||
|
john
|
||||||
|
jq
|
||||||
|
lynis
|
||||||
|
mdp
|
||||||
|
mediainfo
|
||||||
|
oed
|
||||||
|
pandoc
|
||||||
|
pdfgrep
|
||||||
|
profanity
|
||||||
|
recutils
|
||||||
|
ssss
|
||||||
|
up
|
||||||
|
yai
|
||||||
|
yank
|
||||||
|
yq-go
|
||||||
|
yt-dlp
|
||||||
|
];
|
||||||
}
|
}
|
@ -1,6 +1,7 @@
|
|||||||
# Gaming configuration.nix
|
# Gaming configuration.nix
|
||||||
{ config, lib, pkgs, inputs, user, ... }:
|
{ config, lib, pkgs, inputs, user, ... }:
|
||||||
{
|
{
|
||||||
|
hardware.steam-hardware.enable = true;
|
||||||
programs = {
|
programs = {
|
||||||
steam = {
|
steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -9,5 +10,8 @@
|
|||||||
};
|
};
|
||||||
gamemode.enable = true;
|
gamemode.enable = true;
|
||||||
};
|
};
|
||||||
hardware.steam-hardware.enable = true;
|
users.users.${user.name}.packages = with pkgs; [
|
||||||
|
dosbox-staging
|
||||||
|
minecraft
|
||||||
|
];
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
# GUI configuration.nix
|
# GUI configuration.nix
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
{ config, lib, pkgs, inputs, user, ... }:
|
||||||
{
|
{
|
||||||
environment = {
|
environment = {
|
||||||
variables = {
|
variables = {
|
||||||
@ -9,6 +9,14 @@
|
|||||||
TERMINAL = "st";
|
TERMINAL = "st";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
xdg.mime = {
|
||||||
|
enable = true;
|
||||||
|
defaultApplications = {
|
||||||
|
"image/*" = [
|
||||||
|
"sxiv.desktop"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
xdgOpenUsePortal = true;
|
xdgOpenUsePortal = true;
|
||||||
@ -25,11 +33,6 @@
|
|||||||
picom = {
|
picom = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
fractalart = {
|
|
||||||
enable = true;
|
|
||||||
height = 1080;
|
|
||||||
width = 1920;
|
|
||||||
};
|
|
||||||
# To add the Flathub repo, run:
|
# To add the Flathub repo, run:
|
||||||
# $ flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
# $ flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||||
flatpak.enable = true;
|
flatpak.enable = true;
|
||||||
@ -50,12 +53,37 @@
|
|||||||
programs = {
|
programs = {
|
||||||
slock.enable = true;
|
slock.enable = true;
|
||||||
};
|
};
|
||||||
|
users.users.${user.name}.packages = with pkgs; [
|
||||||
|
(dmenu.overrideAttrs (oldAttrs: rec {
|
||||||
|
configFile = writeText "config.def.h" (builtins.readFile ./patches/dmenu/config.h);
|
||||||
|
postPatch = "${oldAttrs.postPatch}\n cp ${configFile} config.def.h";
|
||||||
|
}))
|
||||||
|
(st.overrideAttrs (oldAttrs: rec {
|
||||||
|
configFile = writeText "config.def.h" (builtins.readFile ./patches/st/config.h);
|
||||||
|
postPatch = "${oldAttrs.postPatch}\n cp ${configFile} config.def.h";
|
||||||
|
}))
|
||||||
|
aether
|
||||||
|
ani-cli
|
||||||
|
lagrange
|
||||||
|
libreoffice
|
||||||
|
mangal
|
||||||
|
mullvad-browser
|
||||||
|
mupdf
|
||||||
|
onionshare
|
||||||
|
scrot
|
||||||
|
signal-desktop
|
||||||
|
sxiv
|
||||||
|
tor-browser-bundle-bin
|
||||||
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
clipmenu
|
clipmenu
|
||||||
dunst
|
dunst
|
||||||
#hsetroot
|
hsetroot
|
||||||
|
networkmanagerapplet
|
||||||
notify-desktop
|
notify-desktop
|
||||||
|
sxhkd
|
||||||
trayer
|
trayer
|
||||||
|
volumeicon
|
||||||
xbanish
|
xbanish
|
||||||
xdo
|
xdo
|
||||||
xdragon
|
xdragon
|
22
nixos/pentest.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# All configuration.nix
|
||||||
|
{ config, lib, pkgs, inputs, user, ... }:
|
||||||
|
{
|
||||||
|
programs.wireshark = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
users.users.${user.name}.packages = with pkgs; [
|
||||||
|
burpsuite
|
||||||
|
metasploit
|
||||||
|
nikto
|
||||||
|
sherlock
|
||||||
|
snort
|
||||||
|
snscrape
|
||||||
|
social-engineer-toolkit
|
||||||
|
sqlmap
|
||||||
|
termshark
|
||||||
|
thc-hydra
|
||||||
|
tshark
|
||||||
|
wpscan
|
||||||
|
yersinia
|
||||||
|
];
|
||||||
|
}
|
@ -1 +0,0 @@
|
|||||||
../../actions/16/edit-copy.svg
|
|
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 3 2 L 3 13 L 6 13 L 6 14 L 11 14 L 14 11 L 14 4 L 13 4 L 13 2 L 3.7851562 2 L 3 2 z M 4 3 L 12 3 L 12 4 L 6 4 L 6 12 L 4 12 L 4 3 z M 7 5 L 13 5 L 13 10 L 10 10 L 10 13 L 7 13 L 7 5 z "
|
|
||||||
class="ColorScheme-Text"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 522 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 5 2 C 4.4477153 2 4 2.4477153 4 3 C 4 3.5522847 4.4477153 4 5 4 C 5.5522847 4 6 3.5522847 6 3 C 6 2.4477153 5.5522847 2 5 2 z M 10 2 L 9 3 L 12 6 L 9 9 L 10 10 L 14 6 L 10 2 z M 3.5 6 C 2.6715729 6 2 6.6715729 2 7.5 C 2 8.3284271 2.6715729 9 3.5 9 C 4.3284271 9 5 8.3284271 5 7.5 C 5 6.6715729 4.3284271 6 3.5 6 z M 6.5 11 C 5.6715729 11 5 11.671573 5 12.5 C 5 13.328427 5.6715729 14 6.5 14 C 7.3284271 14 8 13.328427 8 12.5 C 8 11.671573 7.3284271 11 6.5 11 z "
|
|
||||||
id="path2994"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 835 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 14 L 9 14 L 9 13 L 3 13 L 3 8 L 5 8 L 6.9980469 6 L 13 6 L 13 9 L 14 9 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 2 2 z M 11 9 L 11 11 L 9 11 L 9 12 L 11 12 L 11 14 L 12 14 L 12 12 L 14 12 L 14 11 L 12 11 L 12 9 L 11 9 z "
|
|
||||||
id="rect4182"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 617 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#232629;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#3daee9;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1 +0,0 @@
|
|||||||
../../actions/16/bookmark-new.svg
|
|
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#d35400;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 7.5 2 A 4.5 4.5 0 0 0 3 6.5 A 4.5 4.5 0 0 0 3.0527344 7.15625 A 3 3 0 0 0 1 10 A 3 3 0 0 0 4 13 L 11.5 13 A 3.5 3.5 0 0 0 15 9.5 A 3.5 3.5 0 0 0 11.970703 6.0351562 A 4.5 4.5 0 0 0 7.5 2 z M 7.5 3 A 3.5 3.5 0 0 1 11 6.5 A 3.5 3.5 0 0 1 10.949219 7.0644531 A 2.5 2.5 0 0 1 11.5 7 A 2.5 2.5 0 0 1 14 9.5 A 2.5 2.5 0 0 1 11.5 12 L 4 12 A 2 2 0 0 1 2 10 A 2 2 0 0 1 4 8 A 2 2 0 0 1 4.3574219 8.0332031 A 3.5 3.5 0 0 1 4 6.5 A 3.5 3.5 0 0 1 7.5 3 z "
|
|
||||||
id="path4139"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 818 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#08a19d;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 5 L 2 13.25 L 2 14 L 14 14 L 14 13.25 L 14 9.5 L 14 5 L 14 2 L 2 2 z M 3 5 L 13 5 L 13 13 C 9.4490695 12.963 6.5496872 12.923 3 13 L 3 5 z M 6 7 L 6 11 L 10 9 L 6 7 z "
|
|
||||||
id="rect4138"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 548 B |
@ -1 +0,0 @@
|
|||||||
../../actions/16/edit-copy.svg
|
|
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 6 2 L 6 3 L 6 6 L 7 6 L 7 3 L 9 3 L 9 6 L 10 6 L 10 3 L 10 2 L 6 2 z M 3.7070312 6 L 3 6.7070312 L 6.2929688 10 L 8 11.707031 L 9.7070312 10 L 13 6.7070312 L 12.292969 6 L 9 9.2929688 L 8 10.292969 L 7 9.2929688 L 3.7070312 6 z M 2 12 L 2 14 L 3 14 L 14 14 L 14 13 L 14 12 L 13 12 L 13 13 L 3 13 L 3 12 L 2 12 z "
|
|
||||||
id="rect4099"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 690 B |
@ -1,15 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<g transform="translate(0,-1036.3622)">
|
|
||||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="m 8,1038.3622 -2,4 -4,1 3,3 -1,4 4,-2 4,2 -1,-4 3,-3 -4,-1 z"
|
|
||||||
id="path4114"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 478 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="m 5,2 -4,8 2,4 4.1610169,-8.2627119 z m 1,0 5,8 4,0 -5,-8 z m -0.3828125,9 -1.5,3 L 13,14 15,11 Z"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 445 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#2ecc71;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#bdc3c7;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1 +0,0 @@
|
|||||||
../../actions/16/globe.svg
|
|
@ -1 +0,0 @@
|
|||||||
../../actions/16/im-user.svg
|
|
@ -1,8 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<g transform="translate(0,-1036.3622)">
|
|
||||||
<path style="fill:#da4453;fill-opacity:1;stroke:none"
|
|
||||||
d="m 7,1038.3622 0,8.0001 2,0 0,-8.0001 -2,0 z m 0,10 0,2 2,0 0,-2 -2,0 z"
|
|
||||||
id="rect4158"
|
|
||||||
/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 299 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<g transform="translate(0,-1036.3622)">
|
|
||||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="m 8,1038.3622 c -1.662,0 -3,1.338 -3,3 l 0,3 -2,0 0,0.75 0,5.25 c 3.4472235,0 7.033564,0 10,0 l 0,-6 c -0.833333,0 -1.166667,0 -2,0 l 0,-3 c 0,-1.662 -1.338,-3 -3,-3 z m 0,1 c 1.2465,0 2,0.5458 2,2 l 0,3 -4,0 0,-3 c 0,-1.4542 0.753506,-2 2,-2 z m -4,6 8,0 0,4 -8,0 z"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 659 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#a10865;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 0 2 L 0 14 L 16 14 L 16 2 L 0 2 z M 1.4140625 3 L 14.585938 3 L 8 9.5859375 L 1.4140625 3 z M 1 4 L 5 8 L 1 12 L 1 4 z M 15 4 L 15 12 L 11 8 L 15 4 z M 5.7070312 8.7070312 L 8 11 L 10.292969 8.7070312 L 14.585938 13 L 1.4140625 13 L 5.7070312 8.7070312 z "
|
|
||||||
id="rect4144"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 629 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 8 2 C 4.676 2 2 4.676 2 8 C 2 11.324 4.676 14 8 14 C 11.324 14 14 11.324 14 8 C 14 4.676 11.324 2 8 2 z M 8 3 C 10.9916 3 13 5.0084 13 8 C 13 10.9916 10.9916 13 8 13 C 5.0084 13 3 10.9916 3 8 C 3 5.0084 5.0084 3 8 3 z M 9.5 5 A 1 1 0 0 0 8.5 6 A 1 1 0 0 0 9.5 7 A 1 1 0 0 0 10.5 6 A 1 1 0 0 0 9.5 5 z M 7.5 6.5 A 0.5 0.5 0 0 0 7 7 A 0.5 0.5 0 0 0 7.5 7.5 A 0.5 0.5 0 0 0 8 7 A 0.5 0.5 0 0 0 7.5 6.5 z M 5.5 7 A 1 1 0 0 0 4.5 8 A 1 1 0 0 0 5.5 9 A 1 1 0 0 0 6.5 8 A 1 1 0 0 0 5.5 7 z M 7.5 8.5 A 0.5 0.5 0 0 0 7 9 A 0.5 0.5 0 0 0 7.5 9.5 A 0.5 0.5 0 0 0 8 9 A 0.5 0.5 0 0 0 7.5 8.5 z M 9.5 9 A 1 1 0 0 0 8.5 10 A 1 1 0 0 0 9.5 11 A 1 1 0 0 0 10.5 10 A 1 1 0 0 0 9.5 9 z "
|
|
||||||
id="rect4175"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.0 KiB |
@ -1,15 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<g transform="translate(0,-1036.3622)">
|
|
||||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="m 2,2 0,12 12,0 0,-10 -4.9921875,0 -2,-2 L 7,2.0078125 7,2 Z M 6.9980469,6 13,6 13,13 3,13 3,8 5,8 Z" transform="translate(0,1036.3622)"
|
|
||||||
id="rect4182"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 553 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#f67400;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 14 L 14 14 L 14 2 L 2 2 z M 3 3 L 13 3 L 13 12 L 13 13 L 3 13 L 3 12 L 3 3 z M 3 12 L 5 12 L 7 10 L 6 9 L 3 12 z M 13 12 L 10 9 L 7 12 L 13 12 z M 5.5 4 C 4.669 4 4 4.669 4 5.5 C 4 6.331 4.669 7 5.5 7 C 6.331 7 7 6.331 7 5.5 C 7 4.669 6.331 4 5.5 4 z "
|
|
||||||
id="rect4122"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 633 B |
@ -1,15 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<g transform="translate(0,-1036.3622)">
|
|
||||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="m 3,1038.3622 0,1 0,3 -1,0 0,1 0,5 1,0 2,0 0,1 0,1 6,0 0,-1 0,-1 3,0 0,-1 0,-4 0,-1 -1,0 0,-3 0,-1 z m 1,1 8,0 0,3 -1,0 0,-1 -6,0 0,1 -1,0 z m 1,0 0,1 6,0 0,-1 z m -2,4 10,0 0,4 -1,0 0,-1 -8,0 0,1 -1,0 z m 7,1 0,1 2,0 0,-1 z m -4,4 4,0 0,1 -4,0 z"
|
|
||||||
id="rect4145"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 664 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 6.5 2 C 5.115 2 4 3.115 4 4.5 C 4 5.885 5.115 7 6.5 7 C 7.885 7 9 5.885 9 4.5 C 9 3.115 7.885 2 6.5 2 z M 6.5 3 C 7.331 3 8 3.669 8 4.5 C 8 5.331 7.331 6 6.5 6 C 5.669 6 5 5.331 5 4.5 C 5 3.669 5.669 3 6.5 3 z M 12 4 C 10.892 4 10 4.8919999 10 6 C 10 7.1080001 10.892 8 12 8 C 13.108 8 14 7.1080001 14 6 C 14 4.8919999 13.108 4 12 4 z M 12 5 C 12.554 5 13 5.4459999 13 6 C 13 6.5540001 12.554 7 12 7 C 11.446 7 11 6.5540001 11 6 C 11 5.4459999 11.446 5 12 5 z M 6.5 8 C 4.0070124 8 2 10.007012 2 12.5 L 2 13 L 2 14 L 2.2753906 14 L 3 14 L 3.3457031 14 L 9.6542969 14 L 10.724609 14 L 11 14 L 11 13 L 11 12.5 C 11 10.007012 8.9929876 8 6.5 8 z M 6.5 9 C 8.4389876 9 10 10.561012 10 12.5 L 10 13 L 3 13 L 3 12.5 C 3 10.561012 4.5610124 9 6.5 9 z M 12 9 C 11.445274 9 10.933115 9.1595125 10.488281 9.4199219 C 10.731419 9.6567988 10.95369 9.9149924 11.144531 10.197266 C 11.404642 10.073918 11.69198 10 12 10 C 13.108 10 14 10.892 14 12 L 11.900391 12 C 11.965505 12.323084 12 12.657168 12 13 L 13.724609 13 L 14.818359 13 L 15 13 L 15 12 C 15 10.338 13.662 9 12 9 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#da4453;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1 +0,0 @@
|
|||||||
folder-html.svg
|
|
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 3.7148438 3 L 3 3.6953125 L 5.6386719 6.4921875 L 3.0175781 9.3046875 L 3.7324219 10 L 6.6757812 6.8378906 L 7 6.4921875 L 6.6757812 6.1445312 L 3.7148438 3 z M 7 12 L 7 13 L 13 13 L 13 12 L 7 12 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 550 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 5 2 L 5 4 L 5 10.275391 C 4.705 10.104292 4.3669285 10 4 10 C 2.8920048 10 2 10.892005 2 12 C 2 13.107995 2.8920048 14 4 14 C 5.1079952 14 6 13.107995 6 12 L 6 6 L 13 6 L 13 8.2753906 C 12.705 8.1042919 12.366929 8 12 8 C 10.892005 8 10 8.8920048 10 10 C 10 11.107995 10.892005 12 12 12 C 13.107995 12 14 11.107995 14 10 L 14 2 L 5 2 z M 6 4 L 13 4 L 13 5 L 6 5 L 6 4 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 721 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 14 L 14 14 L 14 2 L 2 2 z M 3 3 L 7 3 L 7 4 L 8 4 L 8 3 L 13 3 L 13 13 L 3 13 L 3 3 z M 8 4 L 8 5 L 9 5 L 9 4 L 8 4 z M 8 5 L 7 5 L 7 6 L 8 6 L 8 5 z M 8 6 L 8 7 L 9 7 L 9 6 L 8 6 z M 8 7 L 7 7 L 7 8 L 8 8 L 8 7 z M 8 8 L 8 9 L 7 9 L 7 10 L 9 10 L 9 8 L 8 8 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 620 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 8 2 C 4.6862915 2 2 4.6862868 2 8 C 2 11.313713 4.6862915 14 8 14 C 11.313708 14 14 11.313713 14 8 C 14 4.6862868 11.313708 2 8 2 z M 8 3 C 10.761424 3 13 5.2385763 13 8 C 13 10.761424 10.761424 13 8 13 C 5.2385763 13 3 10.761424 3 8 C 3 5.2385763 5.2385763 3 8 3 z M 7 4 L 7 8 L 7 9 L 8 9 L 12 9 L 12 8 L 8 8 L 8 4 L 7 4 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 675 B |
@ -1,14 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 13.292969 2 L 2 13.292969 L 2.0058594 13.298828 L 2 13.300781 L 2 14 L 2.7070312 14 L 14 14 L 14 13 L 3.7070312 13 L 14 2.7070312 L 13.292969 2 z M 12.714844 5.2910156 L 11.988281 6.0175781 C 12.626272 7.0237033 13 8.2155306 13 9.5 C 13 10.386913 12.822799 11.231081 12.503906 12 L 13.566406 12 C 13.841922 11.217365 14 10.379183 14 9.5 C 14 7.9373661 13.526232 6.4896711 12.714844 5.2910156 z "
|
|
||||||
id="rect3371"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 768 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 8 3 L 8 2 L 2 2 z M 2 4 L 2 5 L 14 5 L 14 4 L 2 4 z M 2 6 L 2 7 L 12 7 L 12 6 L 2 6 z M 2 9 L 2 10 L 8 10 L 8 9 L 2 9 z M 2 11 L 2 12 L 14 12 L 14 11 L 2 11 z M 2 13 L 2 14 L 11 14 L 11 13 L 2 13 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 560 B |
@ -1 +0,0 @@
|
|||||||
../../actions/16/object-unlocked.svg
|
|
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 14 L 14 14 L 14 2 L 2 2 z M 5 3 L 11 3 L 11 7 L 5 7 L 5 3 z M 3 4 L 4 4 L 4 5 L 3 5 L 3 4 z M 12 4 L 13 4 L 13 5 L 12 5 L 12 4 z M 3 7.5 L 4 7.5 L 4 8.5 L 3 8.5 L 3 7.5 z M 12 7.5 L 13 7.5 L 13 8.5 L 12 8.5 L 12 7.5 z M 5 9 L 11 9 L 11 13 L 5 13 L 5 9 z M 3 11 L 4 11 L 4 12 L 3 12 L 3 11 z M 12 11 L 13 11 L 13 12 L 12 12 L 12 11 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 692 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#9b59b6;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1,6 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path
|
|
||||||
style="fill:#fdbc4b;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
id="rect4079"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 441 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
|
|
||||||
class="ColorScheme-Text"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 609 B |
@ -1 +0,0 @@
|
|||||||
folder-html.svg
|
|
Before Width: | Height: | Size: 20 KiB |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 3.8828125 6 L 1 10.994141 L 1 11 L 1 12.992188 L 1 14 L 4 14 L 15 14 L 15 13 L 15 12.996094 L 15 11.003906 L 15 10.994141 L 12.117188 6 L 12 6 L 5.0371094 6 L 3.8828125 6 z M 4.4589844 7 L 11.539062 7 L 13.847656 11 L 12 11 L 11 12 L 5 12 L 4 11 L 2.1503906 11 L 4.4589844 7 z "
|
|
||||||
id="rect4169"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 648 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 8 2 L 5 5 L 7 5 L 7 7 L 9 7 L 9 5 L 10 5 L 11 5 L 8 2 z M 3.8828125 6 L 1 10.994141 L 1 11.003906 L 1 12.996094 L 1 14.003906 L 4 14.003906 L 15 14.003906 L 15 13.003906 L 15 11.011719 L 15 11.001953 L 12.117188 6.0078125 L 12 6.0078125 L 10 6.0078125 L 10 7 L 11.539062 7 L 13.847656 11 L 12 11 L 11 12 L 5 12 L 4 11 L 2.1503906 11 L 4.4589844 7 L 6 7 L 6 6.0078125 L 5.0371094 6.0078125 L 3.8828125 6.0078125 L 3.8828125 6 z M 2 1041.3613 L 2 1042.3613 L 7 1042.3613 L 7 1044.3613 L 9 1044.3613 L 9 1042.3613 L 9 1041.3613 L 2 1041.3613 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 892 B |
@ -1,16 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<g transform="translate(-421.71429,-531.79074)">
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="m 427.71429,533.79071 0,1 8.59375,0 -6.59375,6.59375 -2,-2 0,1.40625 2,2 2.3125,-2.28125 4.28125,4.28125 -8.59375,0 0,1 10,0 0,-12 -10,0 z m 9,2 0,8 -4,-4 4,-4 z m -15,1 0,1 5,0 0,-1 -5,0 z m 2,3 0,1 3,0 0,-1 -3,0 z m 1,3 0,1 2,0 0,-1 -2,0 z"
|
|
||||||
id="rect4144"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 671 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 3 2 L 3 3 L 3 6 L 2 6 L 1 6 L 1 7 L 1 13 L 1 14 L 15 14 L 15 13 L 15 6 L 13.013672 6 L 13.013672 5.5859375 L 13 5.5996094 L 13 3 L 13 2 L 3 2 z M 4 3 L 12 3 L 12 6.5996094 L 11.599609 7 L 11.585938 7 L 8 10.585938 L 4.4140625 7 L 4 6.5859375 L 4 3 z M 5 4 L 5 5 L 11 5 L 11 4 L 5 4 z M 5 6 L 5 7 L 11 7 L 11 6 L 5 6 z M 2 7 L 3 7 L 5 9 L 5.7070312 9.7070312 L 8 12 L 10.292969 9.7070312 L 11 9 L 13 7 L 13.013672 7 L 14 7 L 14 13 L 2 13 L 2 7 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 798 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 8,2 A 6,2 0 0 0 2,4 l 0,8 a 6,2 0 0 0 6,2 6,2 0 0 0 6,-2 L 14,4 A 6,2 0 0 0 8,2 Z M 8,3 A 5,1 0 0 1 13,4 5,1 0 0 1 8,5 5,1 0 0 1 3,4 5,1 0 0 1 8,3 Z M 3,5.1015625 A 6,2 0 0 0 8,6 6,2 0 0 0 13,5.1035156 L 13,8 A 5,1 0 0 1 8,9 5,1 0 0 1 3,8 L 3,5.1015625 Z m 0,4 A 6,2 0 0 0 8,10 6,2 0 0 0 13,9.1035156 L 13,12 A 5,1 0 0 1 8,13 5,1 0 0 1 3,12 L 3,9.1015625 Z"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 715 B |
@ -1 +0,0 @@
|
|||||||
network-workgroup.svg
|
|
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="m 2,2 0,3 0,1 0,1 0,3 0,1 0,3 12,0 0,-3 0,-1 0,-3 0,-1 0,-1 0,-3 z m 9,1 2,0 0,1.001 -2,0 z M 3,6 13,6 13,7 3,7 Z m 8,2 2,0 0,1 -2,0 z m -8,2 10,0 0,1 -10,0 z m 8,2 2,0 0,1 -2,0 z" id="rect4188"
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 542 B |
@ -1 +0,0 @@
|
|||||||
folder-activities.svg
|
|
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 2 2 L 2 14 L 14 14 L 14 2 L 2 2 z M 3 3 L 13 3 L 13 12 L 13 13 L 3 13 L 3 12 L 3 3 z M 4 11 L 4 12 L 12 12 L 12 11 L 4 11 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 479 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 8 2 L 7.2929688 2.6992188 L 7.296875 2.703125 L 2 7.9980469 L 2 8 L 2 9 L 3.0078125 9 L 3.0078125 13 L 3 13 L 3 14 L 13 14 L 13 13 L 13 9 L 14 9 L 14 8 L 14 7.9980469 L 12.857422 6.8554688 L 12.15625 7.5566406 L 12.599609 8 L 12 8 L 12 13 L 9 13 L 9 10 L 7 10 L 7 13 L 4 13 L 4 9 L 4 8 L 3.4003906 8 L 7.9980469 3.4042969 L 8 3.40625 L 8.0019531 3.4042969 L 9.4433594 4.84375 L 10.144531 4.1425781 L 8.703125 2.703125 L 8.7070312 2.6992188 L 8 2 z M 11 3 L 11 6 L 12.007812 6 L 12.007812 3 L 11 3 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 850 B |
@ -1 +0,0 @@
|
|||||||
folder-image-people.svg
|
|
@ -1,17 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
.ColorScheme-NegativeText {
|
|
||||||
color:#da4453;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
class="ColorScheme-NegativeText"
|
|
||||||
d="M 6 2 L 6 3 L 2 3 L 2 4 L 3 4 L 3 14 L 4 14 L 13 14 L 13 13 L 13 4 L 14 4 L 14 3 L 10 3 L 10 2 L 6 2 z M 7 3 L 9 3 L 9 4 L 10 4 L 12 4 L 12 13 L 4 13 L 4 4 L 7 4 L 7 3 z M 6 6 L 6 11 L 7 11 L 7 6 L 6 6 z M 9 6 L 9 11 L 10 11 L 10 6 L 9 6 z " />
|
|
||||||
/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 653 B |
@ -1,13 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<defs id="defs3051">
|
|
||||||
<style type="text/css" id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#4d4d4d;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
|
||||||
d="M 6 2 L 6 3 L 2 3 L 2 4 L 3 4 L 3 14 L 4 14 L 13 14 L 13 13 L 13 4 L 14 4 L 14 3 L 10 3 L 10 2 L 6 2 z M 7 3 L 9 3 L 9 4 L 10 4 L 12 4 L 12 13 L 4 13 L 4 4 L 7 4 L 7 3 z M 6 6 L 6 11 L 7 11 L 7 6 L 6 6 z M 9 6 L 9 11 L 10 11 L 10 6 L 9 6 z "
|
|
||||||
class="ColorScheme-Text"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 589 B |
@ -1 +0,0 @@
|
|||||||
folder-favorites.svg
|
|
@ -1 +0,0 @@
|
|||||||
../../actions/16/edit-copy.svg
|
|