update configurations

This commit is contained in:
sophie 2024-03-29 07:37:38 +00:00
parent b20a151a0d
commit 6dc00218b6
312 changed files with 8978 additions and 573 deletions

1385
.Xcompose Normal file

File diff suppressed because it is too large Load Diff

3
.Xresources Normal file
View File

@ -0,0 +1,3 @@
Xcursor.theme: Adwaita
Xcursor.size: 16
Xft.dpi: 96

View File

@ -1,3 +1,11 @@
#
# ~/.bash_logout
# @zvava@mk.catgirlsfor.science
#
if [ "$SHLVL" = 1 ]; then
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
rm -f ~/.bash_history*
rm -f ~/.node_reply_history*
rm -f ~/.xsession-errors
fi

47
.bashrc
View File

@ -1,32 +1,49 @@
#
# zvava's .bashrc
# @zvava@merveilles.town
# @zvava@mk.catgirlsfor.science
#
# source global definitions
if [[ -f /etc/bashrc ]]; then
. /etc/bashrc
fi
[[ -f /etc/bashrc ]] && source /etc/bashrc
[[ -f /etc/bash.bashrc ]] && source /etc/bash.bashrc
# aliases
if [[ -e ~/.bashrc.aliases ]] ; then
source ~/.bashrc.aliases
fi
[[ -e ~/.bashrc.aliases ]] && source ~/.bashrc.aliases
# lang
if [[ $LANG = '' ]]; then
export LANG=en_US.UTF-8
fi
[[ $LANG = '' ]] && export LANG=en_US.UTF-8
# include user scripts
if [[ $PATH != *".scripts"* ]];then
PATH="~/.scripts:$PATH"
fi
[[ $PATH != *"/home/$USER/.scripts"* ]] && export PATH="/home/$USER/.scripts:$PATH"
# include pnpm scripts
export PNPM_HOME="/home/$USER/.local/share/pnpm"
[[ $PATH != *"$PNPM_HOME"* ]] && export PATH="$PNPM_HOME:$PATH"
# if not running interactively, stop
[[ $- != *i* ]] && return
# prompt
PS1='\$ '
PS1=' \e[90m\W \e[97;1m\$\e[0m '
unset rc
# if running as root, stop
[[ "$(whoami)" = "root" ]] && return
# limits recursive functions
[[ -z "$FUNCNEST" ]] && export FUNCNEST=100
# use the up and down arrow keys for finding a command in history
# (you can write some initial letters of the command first)
bind '"\e[A":history-search-backward'
bind '"\e[B":history-search-forward'
# alias homewrapped apps
alias adb="homewrap adb"
alias arandr="homewrap arandr"
alias firefox="homewrap firefox"
alias code="homewrap vscodium"
alias vscode="homewrap vscodium"
alias vscodium="homewrap vscodium"
alias npm="homewrap npm"
alias steam="homewrap steam"
alias steam-runtime="homewrap steam-runtime"

View File

@ -1,29 +1,35 @@
#
# zvava's .bashrc aliases
# @zvava@merveilles.town
# @zvava@mk.catgirlsfor.science
#
# display utils
alias slurp=$'slurp -b 00000066 -c 212126 -s 00000000 -w 1'
alias scrot=$'scrot -mzofq 100 \'%Y-%m-%d_%H%M%S@$a.png\' -e \'mv $f ~/Pictures/Screenshots/\''
alias scrap=$'scrot -a $(slop -f %x,%y,%w,%h)'
alias grim=$'grim -g "$(slurp)" ~/Pictures/Screenshots/$(date +\'%Y-%m-%d_%H%M%S.png\')'
alias xkill-9='kill -9 $(xprop | grep PID | sed -E "s/.+ = //")'
alias autoremove="yay -Qqdtt | yay -Rsun -"
# wiki util (codeberg.org/zvava/zvava.org)
alias wimake='qjs make.js'
# display utils
alias scrot=$'scrot -mzofq 100 "%Y-%m-%d_%H%M%S@$a.png" -e "mv $f ~/Pictures/Screenshots/"'
alias scrap=$'scrot -a $(slop -f %x,%y,%w,%h)'
alias slurp=$'slurp -b 00000066 -c 212126 -s 00000000 -w 1'
alias grim=$'grim -g "$(slurp)" ~/Pictures/Screenshots/$(date +"%Y-%m-%d_%H%M%S.png")'
# wiki util (git.zvava.org/zvava/zvava.org)
alias wiki='qjs wiki.js'
# qol
alias ls='ls --color=auto'
alias cp='cp -i'
alias df='df -h'
alias du='du -h'
alias free='free -h'
alias se='ls /usr/bin | grep'
alias pid='ps -e | grep'
alias whence="cat ~/.bashrc.aliases | which -i"
# shortcuts
alias la='ls -a'
alias ll='ls -l'
alias l='ls -l'
alias ll='ls -la'
alias lla='ls -al'
alias dir='ls -lh'
alias cd..='cd ..'
alias l='sl'
alias quit='exit'

74
.config/.nanorc-notes Normal file
View File

@ -0,0 +1,74 @@
#
# zvava's nanorc
# @zvava@mk.catgirlsfor.science
#
# appearance
set tabsize 4
set errorcolor red,normal
set numbercolor gray,normal
set selectedcolor black,white
# syntax highlighting
include /usr/share/nano/*.nanorc
include ~/.nano/*.nanorc
# toggles
# todo: sort, categorize
set afterends
set atblanks
set autoindent
unset backup
set backupdir ~/.nano.backups
set boldtext
unset breaklonglines
set casesensitive
unset cutfromcursor
set zero
set historylog
set linenumbers
set mouse
unset indicator
unset noconvert
set nohelp
unset nonewlines
set trimblanks
set positionlog
set regexp
set smarthome
set softwrap
unset tabstospaces
unset wordbounds
set whitespace "»⋅"
set wordchars '
set zap
# keymap
# taken and uncommented from lines 279-305 of /etc/nanorc
bind ^Q exit all
bind M-Q cancel all
bind ^H help all
bind ^H exit help
bind ^F whereis all
bind ^G findnext all
bind ^B wherewas all
bind ^D findprevious all
bind ^R replace main
bind ^W writeout main
bind ^O insert main
unbind ^V all
unbind ^Y all
bind M-X flipnewbuffer all
bind ^X cut all
bind ^C copy all
bind ^V paste all
bind ^T gotoline main
bind ^T gotodir browser
bind ^Y speller main
unbind ^K all
unbind ^U all
bind M-R redo main
bind ^Z undo main
bind ^Y redo main
unbind M-J main
unbind M-T main

View File

@ -0,0 +1,77 @@
{
"breadcrumbs.enabled": false,
"dimmer.opacity": 60,
"editor.codeLens": false,
"editor.cursorStyle": "block",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "all",
"editor.rulers": [ 80, 120 ],
"editor.wordWrap": "on",
"editor.wrappingIndent": "same",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"extensions.ignoreRecommendations": true,
"files.associations": {
"*.tmpl": "xml"
},
"files.autoSave": "afterDelay",
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.countBadge": "tracked",
"git.enableSmartCommit": true,
"git.openRepositoryInParentFolders": "never",
"security.workspace.trust.banner": "never",
"security.workspace.trust.enabled": false,
"security.workspace.trust.startupPrompt": "never",
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.gpuAcceleration": "off",
"update.mode": "none",
"window.menuBarVisibility": "toggle",
"window.title": "${dirty}${activeEditorMedium}",
"workbench.activityBar.location": "hidden",
"workbench.colorTheme": "Moegi Black",
"workbench.editor.showTabs": "multiple",
"workbench.panel.defaultLocation": "right",
"workbench.productIconTheme": "material-product-icons",
"workbench.startupEditor": "none"
/*
extensions:
better csv syntax | mechatroner
better toml | bungcip
caddyfile support | matthewpi
env | irongeek
filesize | markwylde
gemini | printfn
go | golang
hex editor | ms-vscode
material icon theme | pkief
material product icons | pkief
moegi theme | ddiu8081
npm | eg2
npm intellisense | christian-kohler
overtype | drmerfy
simple align | earshinov
svg | jock
wren | nelarius
enable proprietary gallery:
VSCodium > resources > app > product.json
```
"extensionsGallery": {
"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
"itemUrl": "https://marketplace.visualstudio.com/items"
},
```
*/
}

View File

@ -0,0 +1,8 @@
[Desktop Entry]
Name=Easy Effects
Comment=Easy Effects Service
Exec=easyeffects --gapplication-service
Icon=com.github.wwmm.easyeffects
StartupNotify=false
Terminal=false
Type=Application

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Name=Firewall Applet
Icon=firewall-applet
Categories=System;Settings;Security;
Exec=/usr/bin/firewall-applet
Type=Application
StartupNotify=true
Terminal=false
Hidden=true

View File

@ -0,0 +1,10 @@
[Desktop Entry]
Name=NetworkManager Applet
Comment=Manage your network connections
Icon=nm-device-wireless
Exec=nm-applet
Terminal=false
Type=Application
NoDisplay=true
NotShowIn=KDE;GNOME;
X-GNOME-UsesNotifications=true

15
.config/autostart/picom.desktop Executable file
View File

@ -0,0 +1,15 @@
[Desktop Entry]
Version=1.0
Type=Application
NoDisplay=false
Name=picom
GenericName=X compositor
Comment=An X compositor
Categories=Utility;
Keywords=compositor;composite manager;window effects;transparency;opacity;
TryExec=picom
Exec=picom -b
StartupNotify=false
Terminal=false
# Thanks to quequotion for providing this file!
Icon=picom

View File

@ -0,0 +1,8 @@
[Desktop Entry]
Name=PolicyKit Authentication Agent
Exec=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
Terminal=false
Type=Application
Categories=
NoDisplay=true
OnlyShowIn=GNOME;

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Version=1.0
Name=Redshift
Exec=redshift-gtk
Icon=redshift
Terminal=false
Type=Application
Categories=Utility;
StartupNotify=true

376
.config/dunst/dunstrc Normal file
View File

@ -0,0 +1,376 @@
# See dunst(5) for all configuration options
[global]
### Display ###
# Which monitor should the notifications be displayed on.
monitor = 0
follow = none
# Position the notification in the top right corner
origin = top-right
# Offset from the origin
offset = 325x55
# Scale factor. It is auto-detected if value is 0.
scale = 0
# Maximum number of notification (0 means no limit)
notification_limit = 0
### Geometry ###
# dynamic width from 0 to 300
width = 300
# The maximum height of a single notification, excluding the frame.
height = 300
### Progress bar ###
# Turn on the progress bar. It appears when a progress hint is passed with
# for example dunstify -h int:value:12
progress_bar = true
# Set the progress bar height. This includes the frame, so make sure
# it's at least twice as big as the frame width.
progress_bar_height = 5
progress_bar_corner_radius = 2
# Set the frame width of the progress bar
progress_bar_frame_width = 0
# Set the minimum width for the progress bar
progress_bar_min_width = 150
# Set the maximum width for the progress bar
progress_bar_max_width = 300
# Show how many messages are currently hidden (because of
# notification_limit).
indicate_hidden = yes
# The transparency of the window. Range: [0; 100].
# This option will only work if a compositing window manager is
# present (e.g. xcompmgr, compiz, etc.). (X11 only)
transparency = 0
# Draw a line of "separator_height" pixel height between two
# notifications.
# Set to 0 to disable.
separator_height = 1
# Padding between text and separator.
padding = 8
# Horizontal padding.
horizontal_padding = 8
# Padding between text and icon.
text_icon_padding = 0
# Defines width in pixels of frame around the notification window.
# Set to 0 to disable.
frame_width = 0
# Defines color of the frame around the notification window.
frame_color = "#dddddd"
highlight = "#e54980"
# Define a color for the separator.
# possible values are:
# * auto: dunst tries to find a color fitting to the background;
# * foreground: use the same color as the foreground;
# * frame: use the same color as the frame;
# * anything else will be interpreted as a X color.
separator_color = auto
# Sort messages by urgency.
sort = yes
# Don't remove messages, if the user is idle (no mouse or keyboard input)
# for longer than idle_threshold seconds.
# Set to 0 to disable.
# A client can set the 'transient' hint to bypass this. See the rules
# section for how to disable this if necessary
idle_threshold = 0
### Text ###
font = Cantarell 20
# The spacing between lines. If the height is smaller than the
# font height, it will get raised to the font height.
line_height = 0
markup = full
# The format of the message. Possible variables are:
# %a appname
# %s summary
# %b body
# %i iconname (including its path)
# %I iconname (without its path)
# %p progress value if set ([ 0%] to [100%]) or nothing
# %n progress value if set without any extra characters
# %% Literal %
# Markup is allowed
format = "<span weight='bold'>%s</span> <span alpha='33%'>(%a)</span>\n%b"
# Alignment of message text.
# Possible values are "left", "center" and "right".
alignment = left
# Vertical alignment of message text and icon.
# Possible values are "top", "center" and "bottom".
vertical_alignment = center
# Show age of message if message is older than show_age_threshold
# seconds.
# Set to -1 to disable.
show_age_threshold = 60
# Specify where to make an ellipsis in long lines.
# Possible values are "start", "middle" and "end".
ellipsize = middle
# Ignore newlines '\n' in notifications.
ignore_newline = no
# Stack together notifications with the same content
stack_duplicates = true
# Hide the count of stacked notifications with the same content
hide_duplicate_count = true
# Display indicators for URLs (U) and actions (A).
show_indicators = yes
### Icons ###
# Align icons left/right/off
icon_position = left
# Scale small icons up to this size, set to 0 to disable. Helpful
# for e.g. small files or high-dpi screens. In case of conflict,
# max_icon_size takes precedence over this.
min_icon_size = 0
# Scale larger icons down to this size, set to 0 to disable
max_icon_size = 32
# Paths to default icons.
icon_path = /usr/share/icons/Qogir/16/status:/usr/share/icons/Qogir/16/devices/:/usr/share/icons/Qogir/24/panel/:/usr/share/icons/Qogir/24/actions/:/usr/share/icons/Qogir/16/apps/:/usr/share/icons/Qogir/16/actions:/usr/share/pixmaps/
### History ###
# Should a notification popped up from history be sticky or timeout
# as if it would normally do.
sticky_history = false
# Maximum amount of notifications kept in history
history_length = 0
### Misc/Advanced ###
# dmenu path.
dmenu = /usr/bin/dmenu -p dunst:
# Browser for opening urls in context menu.
browser = /usr/bin/xdg-open
# Always run rule-defined scripts, even if the notification is suppressed
always_run_script = true
# Define the title of the windows spawned by dunst
title = Dunst
# Define the class of the windows spawned by dunst
class = Dunst
# Define the corner radius of the notification window
# in pixel size. If the radius is 0, you have no rounded
# corners.
# The radius will be automatically lowered if it exceeds half of the
# notification height to avoid clipping text and/or icons.
corner_radius = 5
# Ignore the dbus closeNotification message.
# Useful to enforce the timeout set by dunst configuration. Without this
# parameter, an application may close the notification sent before the
# user defined timeout.
ignore_dbusclose = false
### mouse
# Defines list of actions for each mouse event
# Possible values are:
# * none: Don't do anything.
# * do_action: Invoke the action determined by the action_name rule. If there is no
# such action, open the context menu.
# * open_url: If the notification has exactly one url, open it. If there are multiple
# ones, open the context menu.
# * close_current: Close current notification.
# * close_all: Close all notifications.
# * context: Open context menu for the notification.
# * context_all: Open context menu for all notifications.
# These values can be strung together for each mouse event, and
# will be executed in sequence.
mouse_left_click = close_current
mouse_middle_click = do_action, close_current
mouse_right_click = close_all
# Experimental features that may or may not work correctly. Do not expect them
# to have a consistent behaviour across releases.
[experimental]
# Calculate the dpi to use on a per-monitor basis.
# If this setting is enabled the Xft.dpi value will be ignored and instead
# dunst will attempt to calculate an appropriate dpi value for each monitor
# using the resolution and physical size. This might be useful in setups
# where there are multiple screens with very different dpi values.
per_monitor_dpi = false
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = "#00000088"
foreground = "#ffffff"
timeout = 5
[urgency_normal]
background = "#00000088"
foreground = "#ffffff"
timeout = 15
icon = state-information
[urgency_critical]
background = "#44000099"
foreground = "#ffffff"
timeout = 120
icon = state-error
# Every section that isn't one of the above is interpreted as a rules to
# override settings for certain messages.
#
# Messages can be matched by
# appname (discouraged, see desktop_entry)
# body
# category
# desktop_entry
# icon
# match_transient
# msg_urgency
# stack_tag
# summary
#
# and you can override the
# background
# foreground
# format
# frame_color
# fullscreen
# new_icon
# set_stack_tag
# set_transient
# set_category
# timeout
# urgency
# skip_display
# history_ignore
# action_name
# word_wrap
# ellipsize
# alignment
#
# Shell-like globing will get expanded.
#
# Instead of the appname filter, it's recommended to use the desktop_entry filter.
# GLib based applications export their desktop-entry name. In comparison to the appname,
# the desktop-entry won't get localized.
#
# SCRIPTING
# You can specify a script that gets run when the rule matches by
# setting the "script" option.
# The script will be called as follows:
# script appname summary body icon urgency
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
#
# NOTE: It might be helpful to run dunst -print in a terminal in order
# to find fitting options for rules.
# Disable the transient hint so that idle_threshold cannot be bypassed from the
# client
#[transient_disable]
# match_transient = yes
# set_transient = no
#
# Make the handling of transient notifications more strict by making them not
# be placed in history.
#[transient_history_ignore]
# match_transient = yes
# history_ignore = yes
# fullscreen values
# show: show the notifications, regardless if there is a fullscreen window opened
# delay: displays the new notification, if there is no fullscreen window active
# If the notification is already drawn, it won't get undrawn.
# pushback: same as delay, but when switching into fullscreen, the notification will get
# withdrawn from screen again and will get delayed like a new notification
#[fullscreen_delay_everything]
# fullscreen = delay
#[fullscreen_show_critical]
# msg_urgency = critical
# fullscreen = show
#[espeak]
# summary = "*"
# script = dunst_espeak.sh
#[script-test]
# summary = "*script*"
# script = dunst_test.sh
[ignore-eos2]
appname = "eos-reboot-required2"
skip_display = true
history_ignore = yes
[ignore-eos3]
appname = "eos-reboot-required3"
skip_display = true
history_ignore = yes
#[history-ignore]
# # This notification will not be saved in history
# summary = "foobar"
# history_ignore = yes
#[skip-display]
# # This notification will not be displayed, but will be included in the history
# summary = "foobar"
# skip_display = yes
#[signed_on]
# appname = Pidgin
# summary = "*signed on*"
# urgency = low
#
#[signed_off]
# appname = Pidgin
# summary = *signed off*
# urgency = low
#
#[says]
# appname = Pidgin
# summary = *says*
# urgency = critical
#
#[twitter]
# appname = Pidgin
# summary = *twitter.com*
# urgency = normal
#
[stack-volumes]
appname = "some_volume_notifiers"
set_stack_tag = "volume"
#
# vim: ft=cfg

View File

@ -1,11 +1,11 @@
[Filechooser Settings]
LocationMode=path-bar
ShowHidden=true
ShowHidden=false
ShowSizeColumn=true
GeometryX=179
GeometryY=32
GeometryWidth=1008
GeometryHeight=734
GeometryX=2076
GeometryY=558
GeometryWidth=880
GeometryHeight=640
SortColumn=name
SortOrder=ascending
StartupMode=recent

View File

@ -1,4 +1,7 @@
file:///home/zvava/Syncs
file:///home/zvava/Code
file:///home/zvava/Documents
file:///home/zvava/Music
file:///home/zvava/Videos
file:///home/zvava/Pictures
file:///home/zvava/Downloads
file:///home/zvava/MEGAsync
file:///home/zvava/Coding

158
.config/gtk-3.0/gtk.css Normal file
View File

@ -0,0 +1,158 @@
/*
xfce4-panel config
@zvava@mk.catgirlsfor.science
because !important does not work in the great domain of gtk's css, all
the settings that apply to many elements at once overriding shorthands
are all at the bottom of the botom
*/
#XfcePanelWindow {
background-color: transparent;
}
/* whisker */
#whiskermenu-button label {
margin-left: 4px;
}
/* notes */
#launcher-23 > box {
padding-top: 9px;
}
#launcher-arrow {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
padding: 5px 9px 4px 9px;
background-color: rgba(0, 0, 0, 0.5);
color: #dddddd;
margin-bottom: 0;
}
#launcher-23 .flat.toggle {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
padding: 15px 11px 0 11px;
background-color: rgba(0, 0, 0, 0.5);
color: #dddddd;
margin-bottom: 0;
}
/* places */
#places-9 button box box label {
margin-left: 4px;
}
/* workspaces + taskbar */
#pager-4 { margin: 4px; }
#pager-4 #xfce-panel-toggle-button label { padding: 0 5px; }
#pager-4 #xfce-panel-toggle-button:first-child,
#tasklist-2 .toggle:not(#panel-tasklist-arrow):not(:disabled):nth-child(2) {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#pager-4 #xfce-panel-toggle-button:last-child,
#tasklist-2 .toggle:not(#panel-tasklist-arrow):not(:disabled):last-child {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
#tasklist-2 > box > width {
border-radius: 5px;
}
/* weather */
#weather-18 #xfce-panel-toggle-button image {
margin-right: 4px;
}
/* system tray + pavu */
#systray-6 > box {
padding-left: 2px;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#sn-button {
margin-bottom: 9px;
}
#systray-6 .flat.toggle:hover, #systray-6 .flat.toggle:checked,
#sn-button:hover, #sn-button:checked { background-color: rgba(0, 0, 0, 0.5); }
#systray-6 .flat.toggle:hover { color: white; }
#pulseaudio-button {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
#pulseaudio-button .recording-indicator { margin: 0 4px; }
#pulseaudio-button .recording-indicator + * { margin: 0 5px; }
/* system usage */
#genmon-16 .genmon_plugin {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
padding: 0 5px 0 10px;
}
#genmon-7 .genmon_plugin {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
padding: 0 10px 0 5px;
}
/* clock */
#clock-button {
}
/* globals */
#whiskermenu-button, #clock-button, #places-9 button,
#weather-18 #xfce-panel-toggle-button,
#systemload-7 > widget > box {
border-radius: 5px;
padding: 0 10px;
}
#whiskermenu-button, #clock-button, #pulseaudio-button,
#tasklist-2 .toggle, #places-9 button, #systray-6 > box,
#systemload-7 > widget > box, #xfce_sensors > box, .genmon_plugin, #cpugraph-21 box,
#pager-4 #xfce-panel-toggle-button, #weather-18 #xfce-panel-toggle-button {
background-color: rgba(0, 0, 0, 0.5);
color: #dddddd;
margin-top: 9px;
margin-bottom: 0;
}
#whiskermenu-button:hover, #whiskermenu-button:checked, #clock-button:hover, #clock-button:checked,
#pulseaudio-button:hover, #pulseaudio-button:checked, #launcher-arrow:hover, #launcher-23 .flat.toggle:hover, #launcher-23 .flat.toggle:checked,
#places-9 button:hover, #places-9 button:checked, #tasklist-2 .toggle:hover, #tasklist-2 .toggle:checked,
#weather-18 #xfce-panel-toggle-button:hover, #weather-18 #xfce-panel-toggle-button:checked,
#pager-4 #xfce-panel-toggle-button:hover, #pager-4 #xfce-panel-toggle-button:checked {
background-color: rgba(0, 0, 0, 0.8);
}
/* left margin */
#whiskermenu-button { margin-left: 325px; }
/* right margin */
#clock-button { margin-right: 325px; }
#XfcePanelWindow, #clock-button * {
font-family: "Ubuntu Regular";
font-size: 14px;
}

View File

@ -1,14 +1,15 @@
[Settings]
gtk-theme-name=Mint-Y-Dark
gtk-icon-theme-name=Adwaita
gtk-font-name=Sans 10
gtk-theme-name=Mint-Y-Dark-Pink
gtk-application-prefer-dark-theme=0
gtk-icon-theme-name=Mint-Y-Purple
gtk-font-name=Cantarell 11
gtk-cursor-theme-name=Adwaita
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_ICONS
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
gtk-toolbar-icon-size=GTK_ICON_SIZE_SMALL_TOOLBAR
gtk-button-images=1
gtk-menu-images=1
gtk-enable-event-sounds=0
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=0
gtk-xft-antialias=1
gtk-xft-hinting=1

View File

@ -0,0 +1,2 @@
[Settings]
gtk-application-prefer-dark-theme=1

282
.config/i3/config Normal file
View File

@ -0,0 +1,282 @@
# zvava's i3 config
#
# @zvava@merveilles.town
# https://codeberg.org/zvava/config
#
# font icon search: https://fontawesome.com/v4.7/cheatsheet/
#
# misc
set $mod Mod4
set $alt Mod1
floating_modifier $mod
focus_follows_mouse no
# display current mode to user
set $modeshow exec notify-send -u critical "i3"
set $modehide exec notify-send -u critical -t 1 "i3"
# wallpaper
set $wallpaper /home/zvava/Pictures/Wallpapers/valentin-beauvais-yVUQlyRlJSw-unsplash.jpg
# font
set $font Ubuntu Mono
# colors
set $active #2b2b2b
set $inactive #1c1c1c
set $urgent #fa0046
# text colors
set $text #dddddd
set $inactive-text #777777
set $urgent-text #ffffff
# worspace variables
set $ws1 ""
set $ws2 ""
set $ws3 ""
set $ws4 ""
set $ws5 ""
set $ws6 ""
set $ws7 ""
set $ws8 ""
set $ws9 ""
set $ws10 ""
# set inner/outer gaps
gaps inner 5
gaps outer 1
# text
font pango:$font 8
# window styles
hide_edge_borders none
title_align left
default_border normal 0
for_window [all] floating enable, title_format "<span font='$font 5.5'> <span weight='bold' font='$font 5'></span> %title</span>"
for_window [window_type="splash"] move position center
# additional titles
for_window [class="KeePassXC"] title_format "<span font='$font 5.5'> <span weight='bold' font='$font 5'></span> keepassxc</span>"
for_window [class="Xfce4-terminal"] title_format "<span font='$font 5.5'> <span weight='bold' font='$font 4.5'></span> %title</span>"
for_window [class="Mousepad"] title_format "<span font='$font 5.5'> <span weight='bold' font='$font 5'></span> %title</span>"
for_window [class="Thunar"] title_format "<span font='$font 5.5'> <span weight='bold' font='$font 5'></span> %title</span>"
for_window [window_role="stickynote"] title_format "<span font='$font 5.5'> <span weight='bold' font='$font 5'></span> %title</span>"
# floating
for_window [class="libreoffice-startcenter"] resize set 1020 720
for_window [window_role="(?i)GtkFileChooserDialog"] resize set 720 640
# non floating
for_window [class="kdenlive" window_role="MainWindow#1"] floating disable
for_window [class="firefox" instance="Navigator"] floating disable,\
title_format "<span font='$font 5.5'> <span weight='bold' font='$font 5'></span> %class</span>"
for_window [class="VSCodium"] floating disable,\
title_format "<span font='$font 5.5'> <span weight='bold' font='$font 5'></span> %title</span>"
for_window [window_role="gimp-image-window-1"] floating disable
for_window [class="fl.exe" title="FL Studio"] floating disable
for_window [class="steam"] floating disable
for_window [class="Lunacy"] floating disable
for_window [class="Fritzing"] floating disable
for_window [class="libreoffice-writer"] floating disable
for_window [class="libreoffice-calc"] floating disable
for_window [class="libreoffice-draw"] floating disable
for_window [class="libreoffice-math"] floating disable
for_window [class="libreoffice-impress"] floating disable
# window assignments
assign [class="Cyberpunk2077.exe"] $ws9
assign [class="Lutris"] $ws9
assign [class="steam"] $ws9
assign [window_role="stickynote"] $ws10
# notes menu
bindsym $mod+Shift+grave exec "notes menu"
# app shortcuts
bindsym $mod+Return exec "xfce4-terminal --disable-server"
bindsym $mod+t exec "xfce4-terminal --disable-server"
bindsym $mod+e exec "thunar"
bindsym $mod+w exec "homewrap firefox"
# launch screenshot/gif recorder/color picker
bindsym Print exec "flameshot gui"
bindsym Shift+Print exec "peek"
bindsym $alt+Sys_Req exec "xcolor -s clipboard"
# launch xdg autostart apps
exec --no-startup-id "dex -a -e i3 -s '/etc/xdg/autostart/:~/.config/autostart/'"
# launch apps
exec --no-startup-id "syncthing"
exec --no-startup-id "dunst"
exec --no-startup-id "xfce4-panel"
exec --no-startup-id "notes toggle"
exec_always --no-startup-id "powerprofilesctl set performance"
exec_always --no-startup-id "setxkbmap -option compose:caps"
exec_always --no-startup-id "xset s off -dpms"
exec_always --no-startup-id "feh --no-fehbg --no-xinerama --bg-fill '$wallpaper'"
#
bindsym $mod+Caps_Lock exec "composetoggle"
bindsym $mod+Multi_key exec "composetoggle"
# emoji picker (rofimoji)
bindsym $mod+period exec --no-startup-id "rofimoji --max-recent 0 -s neutral --no-frecency --action type copy"
# launcher (xfce4-panel)
bindsym $mod+s exec "xfce4-popup-whiskermenu"
# launcher (rofi)
bindsym $mod+d exec "rofi -show drun"
# switch/iterate between windows (rofi)
bindsym $alt+Tab exec --no-startup-id "rofi -show window"
# set random wallpaper
bindsym $mod+$alt+w exec --no-startup-id "wallpaper set"
# lock i3
bindsym $mod+l exec --no-startup-id "lockscreen"
# exit i3 (rofi)
bindsym $mod+Shift+e exec --no-startup-id "powermenu"
# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace
bindsym $mod+Shift+r restart
# switch/iterate between workspaces
bindsym $mod+Tab workspace next_on_output
bindsym $mod+Shift+Tab workspace prev_on_output
# open new empty workspace
#bindsym $mod+Shift+n exec --no-startup-id "empty_workspace"
# change focus
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# move focused window
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
bindsym $mod+BackSpace move position center
# kill focused window (save stickynotes position before closing!)
bindsym $mod+Shift+q [con_id="__focused__" window_role="^(?!stickynote).*$"] kill,\
[con_id="__focused__" window_role="stickynote"] exec --no-startup-id "notes --exit"
# change new window position
bindsym $mod+h split h
bindsym $mod+v split v
# toggle fullscreen
bindsym $mod+f fullscreen toggle
# toggle tiling style
bindsym $mod+g layout tabbed
bindsym $mod+n layout toggle split
# toggle tiling / floating
bindsym $mod+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+Shift+space focus mode_toggle
# focus the parent container
bindsym $mod+a focus parent
# focus the child container
bindsym $mod+Shift+a focus child
## assign workspaces to monitors
workspace $ws1 output DP-0
workspace $ws2 output DP-0
workspace $ws3 output primary
workspace $ws4 output primary
workspace $ws5 output primary
#workspace $ws6 output primary
#workspace $ws7 output primary
#workspace $ws8 output primary
workspace $ws9 output primary
workspace $ws10 output DP-0
# switch to workspce
bindsym $mod+grave workspace $ws10
bindsym $mod+1 workspace $ws1
bindsym $mod+2 workspace $ws2
bindsym $mod+3 workspace $ws3
bindsym $mod+4 workspace $ws4
bindsym $mod+5 workspace $ws5
bindsym $mod+6 workspace $ws6
bindsym $mod+7 workspace $ws7
bindsym $mod+8 workspace $ws8
bindsym $mod+9 workspace $ws9
bindsym $mod+0 workspace $ws10
# move window to workspace
bindsym $mod+Shift+1 move container to workspace $ws1
bindsym $mod+Shift+2 move container to workspace $ws2
bindsym $mod+Shift+3 move container to workspace $ws3
bindsym $mod+Shift+4 move container to workspace $ws4
bindsym $mod+Shift+5 move container to workspace $ws5
bindsym $mod+Shift+6 move container to workspace $ws6
bindsym $mod+Shift+7 move container to workspace $ws7
bindsym $mod+Shift+8 move container to workspace $ws8
bindsym $mod+Shift+9 move container to workspace $ws9
bindsym $mod+Shift+0 move container to workspace $ws10
# resize mode
bindsym $mod+r mode "resize", $modeshow "resize"
mode "resize" {
bindsym Escape mode "default", $modehide "resize"
bindsym m $modehide "resize", mode "move", $modeshow "move"
bindsym Left resize shrink width 16
bindsym Right resize grow width 16
bindsym Up resize shrink height 16
bindsym Down resize grow height 16
bindsym Shift+Left resize shrink width 50
bindsym Shift+Right resize grow width 50
bindsym Shift+Up resize shrink height 50
bindsym Shift+Down resize grow height 50
}
# move mode
bindsym $mod+m mode "move", $modeshow "move"
mode "move" {
bindsym Escape mode "default", $modehide "move"
bindsym r $modehide "move", mode "resize", $modeshow "resize"
bindsym Left move left 16
bindsym Right move right 16
bindsym Up move up 16
bindsym Down move down 16
bindsym Shift+Left move left 50
bindsym Shift+Right move right 50
bindsym Shift+Up move up 50
bindsym Shift+Down move down 50
}
## set colors!!!
# window state border bg text indicator child border
client.focused $active $active $text $active $active
client.unfocused $inactive $inactive $inactive-text $inactive $inactive
client.focused_inactive $inactive $inactive $inactive-text $inactive $inactive
client.urgent $urgent $urgent $urgent-text $urgent $urgent
# backlight setting using dunst osc
bindsym XF86MonBrightnessUp exec --no-startup-id "volbrightctl brightness_up"
bindsym XF86MonBrightnessDown exec --no-startup-id "volbrightctl brightness_down"
# volume setting using dunst osc
bindsym XF86AudioRaiseVolume exec --no-startup-id "volbrightctl volume_up"
bindsym XF86AudioLowerVolume exec --no-startup-id "volbrightctl volume_down"
bindsym $mod+XF86AudioRaiseVolume exec --no-startup-id "volbrightctl volume_up_g"
bindsym $mod+XF86AudioLowerVolume exec --no-startup-id "volbrightctl volume_down_g"
# mute toggles using dunst osc
bindsym XF86AudioMute exec --no-startup-id "volbrightctl volume_mute"
bindsym XF86AudioMicMute exec --no-startup-id "volbrightctl mic_mute"
# audio control
bindsym XF86AudioPlay exec --no-startup-id "playerctl play-pause"
bindsym XF86AudioPause exec --no-startup-id "playerctl play-pause"
bindsym XF86AudioStop exec --no-startup-id "playerctl play-pause"
bindsym XF86AudioNext exec --no-startup-id "playerctl next"
bindsym XF86AudioPrev exec --no-startup-id "playerctl previous"

148
.config/kristall/config.ini Normal file
View File

@ -0,0 +1,148 @@
[General]
ansi_escapes=render
cache_life=15
cache_limit=1000
cache_threshold=125
cache_unlimited_life=true
close_window_with_last_tab=false
emojis_enabled=true
enable_home_btn=false
enable_newtab_btn=true
enable_parent_btn=false
enable_root_btn=false
fancy_quotes=true
fancy_urlbar=true
gophermap_display=rendered
icon_theme=light
language=
max_redirections=5
network_timeout=5000
redirection_policy=2
search_engine=gemini://geminispace.info/search?%1
session_restore_behaviour=1
show_hidden_files_in_dirs=false
start_page=about:favourites
strip_nav=false
text_decoration=false
text_display=fancy
theme=dark
ui_density=compact
use_os_scheme_handler=true
[Client%20Identities]
groups\1\identities\1\auto_enable=false
groups\1\identities\1\certificate="@ByteArray(0\x82\x2\x96\x30\x82\x1~\x2\x1\x1\x30\r\x6\t*\x86H\x86\xf7\r\x1\x1\x5\x5\0\x30\x10\x31\xe\x30\f\x6\x3U\x4\x3\f\x5zvava0 \x17\r240310004124Z\x18\xf\x32\x30\x39\x39\x30\x33\x31\x30\x31\x31\x35\x39\x35\x39Z0\x10\x31\xe\x30\f\x6\x3U\x4\x3\f\x5zvava0\x82\x1\"0\r\x6\t*\x86H\x86\xf7\r\x1\x1\x1\x5\0\x3\x82\x1\xf\0\x30\x82\x1\n\x2\x82\x1\x1\0\x9e\xd2~\x6\x62\x16H\x17\xe0[\x14\xf4\x1foD\xb3\x18\xc0H]V\xab\x8a\x93\r}\x1a\x5`T\xd6\xc3\xb3\xa7\x32\x84\x45\xe8\"`\xb8N\xc4\x11\x4\x9d\xdb\xf6\xc0.]\x85\xf6\x8c)\n\xca\xe9\x8a\xe7s\x8d\xf6\x98\xb8\nDy\xb6\x9a\x2\x66\x4\x8f\x99\xc3<l\xfe\xe9z\x8ag(\x82\v\xf6\x9b\xbdu\x13\x3\xc1_\xf2\x1d!\x4\0\x83\xc7\xac\xba?^u\xaf<g0\xb4\x97\x3&\x86QnA\x8a\xe4\x9bWp,\x14\x93\xfc\xcf\xd2\x39q\xe9\xc2\x63\xbc[\x18\xadxl\x1a\x8d$'wcvw\xec\x87\x8a!e<,\x8dG8\xae\xeay\xc3\xa2\xf\xdd\xb0\xa8\xddj\x7f\x43\xd8\xf\x66\xea\x1d!qe\xf\x1f\x82\x41\x35\xd4\xdc\xbaR8\x9bo\xa8n\xb4*=qO\xcf\x8d\x98\xb0\x88\xf3\xd4;\x9c\xae\x94\xfc\x87\x10\xc0\x96{\0\xa0\xfa\x33\x14\x42\x84}\xd6\xbd=\xe7\xbe\x91\xc9\x5\x35r\x8f\xe\x31si.\"\x83\xef\x1a\xe7\xe8u&\xeb\xff\x61t\xd2\x18\x2\xbb\xa5\x2\x3\x1\0\x1\x30\r\x6\t*\x86H\x86\xf7\r\x1\x1\x5\x5\0\x3\x82\x1\x1\0\x38\x41\x97\x96\xabx,\xfb\x18_b\xce\xb5\xa3\x35\x8f\xdc\xc2Gh\x8b\x8a^:\xd9t\xd8\xa0\xc3\xdf;\xcb&R\x81\x1dP\xd0\xc4Q\xf2\xa2q\xf5\xab\xfaS7\xdd\xe0nh\xe2\xc8\xe8\x1c\xfe\x16\xcb\x13Y\xc1\xbd\x9d\xd9\xe3\xe2\xed\xaa]B\xe9\xbc\xc0\xa7]^v\x4\xa3\x84wAC#I\x8e\v\x14\xda\x41\x44\xc3\xd5\x1f\xfdg\xe2\xd4R\x88\x88\x9a\x12h\xfex\xc6\xe4wB\xf6\xd7\x37\xaa\xad\x13\xd1\x31\0\x34=|W\xef\x88Z+\xa9\x19O\xfb\xcfL\xef\xd0\xfy\x16Y\x97\xc5>\xd3\xdc\xd5\xe2)8\x8aK\xce~\xac\xfa\xbcl\x8a\x5\x33\v\x17/l\a\xce\x9d\xb1\xb7\xc4\xeeVM\xf8\xb4\xd7\x96i\x7fjd\xf5\t\xb5@\x94\xf2\xb5\x80\xea\xa2\xad\x66j\xecr\xa2$\x94\x87\xf9\xd5\xf3_\xc9n\x11\x42\x88\x1b\xdd\xd4s-}\xcb\x65\x9bVz=\xfb(\xd5\xba\x98\xfa\r\x18p\xf9\xfe\x82J\xeb\x95\xb8\xa2\x18?3\x14\xb2\x15\xffX\xe\x85\x7f\xbf\xa1\xcb\xbd\xc4\x89\x1a)"
groups\1\identities\1\display_name=zvava
groups\1\identities\1\host_filter=
groups\1\identities\1\private_key="@ByteArray(0\x82\x4\xa3\x2\x1\0\x2\x82\x1\x1\0\x9e\xd2~\x6\x62\x16H\x17\xe0[\x14\xf4\x1foD\xb3\x18\xc0H]V\xab\x8a\x93\r}\x1a\x5`T\xd6\xc3\xb3\xa7\x32\x84\x45\xe8\"`\xb8N\xc4\x11\x4\x9d\xdb\xf6\xc0.]\x85\xf6\x8c)\n\xca\xe9\x8a\xe7s\x8d\xf6\x98\xb8\nDy\xb6\x9a\x2\x66\x4\x8f\x99\xc3<l\xfe\xe9z\x8ag(\x82\v\xf6\x9b\xbdu\x13\x3\xc1_\xf2\x1d!\x4\0\x83\xc7\xac\xba?^u\xaf<g0\xb4\x97\x3&\x86QnA\x8a\xe4\x9bWp,\x14\x93\xfc\xcf\xd2\x39q\xe9\xc2\x63\xbc[\x18\xadxl\x1a\x8d$'wcvw\xec\x87\x8a!e<,\x8dG8\xae\xeay\xc3\xa2\xf\xdd\xb0\xa8\xddj\x7f\x43\xd8\xf\x66\xea\x1d!qe\xf\x1f\x82\x41\x35\xd4\xdc\xbaR8\x9bo\xa8n\xb4*=qO\xcf\x8d\x98\xb0\x88\xf3\xd4;\x9c\xae\x94\xfc\x87\x10\xc0\x96{\0\xa0\xfa\x33\x14\x42\x84}\xd6\xbd=\xe7\xbe\x91\xc9\x5\x35r\x8f\xe\x31si.\"\x83\xef\x1a\xe7\xe8u&\xeb\xff\x61t\xd2\x18\x2\xbb\xa5\x2\x3\x1\0\x1\x2\x82\x1\0K{H\xaf\xe9\xf0#\x5M\xf8\x9b\xc5\xc6&\xd0\xa4\xb9\xaf\xb0\xf4\xc3[5\xb9\xdb\xe0G\xfc\xa4\"\xce\v&\x97\xe0\xf7\x62n\a\xe0\xa5\xd7\xb1qQ\x1b\x61N-Z\x1b\xd2\xae\x31@\xd4\x43I\xa9]\x84\xda\xc4\x87\"x\xa6\xc0\x9d\xdb&&\xac&?r\xbd\x86#\xc4}\x1b\xc8\x19\x45m@ \x16s\xcc\xbc\xad+\xd7Z\xa6\xb5K5V1\xae\x36\xad\xc3\n\xac\x8frcq\x9d\xea\xb2M\x83\x34\x1d\x39\xb6\xe6`\x86\x62\xa5N\xb2\n\xc4\xc2P\xf7S\0i*\xac\x42\a!8\xb2\x10I\xa4\x30~q\x8a\x38\xbf\x11\xe5p4\xaa/L\xc6\xba\x5\xb9\xa7M\xa3y\xb1\x83\a\xa3I\n\xf1o\x93\xa4V\xd0\xae\xa7\xe9:\xc9L\f\xd2\xa5R\xd6\xae\xex\xde\xa9*\x88\x39\x92\xb8\x84\xa1\x9b$JAG\x81Nk\xf5S\x99\xfd\x93\xff\xdc\x88j\xff\xc4\xb3\xa1\x30\xceVR\xe2\xb0\xcc\x18>\x9a\xa8V\x8c\x64\t\x9b\xee\xdf\xa6\xc5\xfc\xcb\x1frxbU\xc4\x87'rg\xc5\x2\x81\x81\0\xces\xe\xef\xf2\x17\xc4**\xad\xbf\x14,\x7f\xa0M\n\xf3\xc3|\x12}4\xe0\xa4\xf5\xa3_Z\xe2\x91\xa3\xe7\xbb\xdd\x64\x38U\xc8\x1cOVe#\xee\x86\xbb\x96\t\x5\xf8\xde\xbf\xe2\xfb\xa0\xf3\xcd\xd4\x1e*\x2\xf\x18\x86(t\x8a\\\xe2P\xf2\xe5\x89\x91\xb1\xa6L\xd6\xa5\x15O\xddxt!'\x16\x44\xba\xa2[\xca\x32\x8a\x87V{\xe5\xdd\x82\x65\0\xb2^\xf4\x13n\xdf\\\x1eK\x94\xb3\x17h\x17\xe9\x84\xb2\x87\xb9g\x17\x1d\x62/[\x2\x81\x81\0\xc4\xf1\xf\x37\xa3\xff\x2\x13\xca\xd5\x8b\xcc^!6\xc0\x4\xa0\x13[\v\x81n\xf9\xee\x1b\xf5\xcb\x37\x88{4\x5\x87\x8d\x98\x19\x38\xa8\xbd\xc7\x96\x32\x9bRB\xa2J\xff\x83\x13\xb4\xe2\x91\xd3\xee\x8f\x18\xb0\xcf\x99m\x81*\x80yz\xc2\x43\xf5\x35g\x82(=\xde\x9c/\xe7S\xecV=\xa6%-\x84\x87\x1c\x46\xde\"y\\T\xff\xa9\xe6\x5\x85#\xf2\xca\x85\x45\x9a\x43\x45g\xad\x18\x94\xaa\xda\xc0~\x1a\xa9\xc8\xdf=e\xf7\r\xf7\xa5\xb0\xff\x2\x81\x80>\x9f\t\xed\xe0j3\x17s@\xa6\x90\x10\xfbY}e\x10\x11\xc0\xc5\xbe\xf2\xd6\x1dSa\r\xe0|\x8f\x1e\xbf\x80\xed\xa3\xa3\xae\xe9w$\xdd\x98\xea\x30\x44\xf0\v\x8f\x8b\x1f\x35\x39\xd1\x38\xf0Vc\x9d\xae\xd4\xa1\x31\x41\b\x18\xa7X\xfc\xd9\xad\"0[\xed\x34\x8c\xb4\v\xfb\xa1\x1eK\x98h\xe9Qx\xe0\xba\x17\xdbm\xd6\xac\xcc\x66\x80HvKB%\xd6\xf5\x14\x65\xfc\xa0\x85\xc9\xae\xb5Y)\x85j\x93k\xab\xd7\x9dvV\xbd\x93\xf5\xb7\x2\x81\x81\0\xbe\x8c\x1\xce\x32\xe5;lL\xf6\xfa\x90\xdc\x8e\x44;\xda\xfd\xca\\o\xb0\x66\xe0x\xaa\"\xd1\xe1\x44\x32\xf8-Uo\x1\x37}\xe3}\xe3K\x6\x61\xd3`WH;\x19\xe6\x8a@!\x1a-\x99\xd4(\xd6\x63\xbbX\x9a\xf7\xbd\x11\xb2>0T\xe0vE[?4]\0\xf3\xe9\x19\xb4\x2\x39\xbc\x65\x9a\x98\x18U:\x83\xb3{%\xf6\x8bp\xd1\xd5\xeb\x46YU\xf3\xa0\x9c\xd9g\xd7\xfd\x97\xa5\x99S)\x97\x16\x9c/\xfa\xa4\xe3\xa5\xb5q\x9f\x2\x81\x80Wb\x10VE\xf0W\x85J\xa4m\"\x9c\x95\xda$\x9d\xb3\x43\xd7\xbf\xdc\xcb\xff@\x89\x85\xd7\x1f\x93\xe4\xb5\xf6M\xa5\x96h\xd7\xcfi\x2y\xdb\x64)\xc2\xfcl\x13\xe1\xcb\x5}L\xf\xfa\xeb\x3\xe2\x8b\xfck\xd2\xae\v\r\rV\xef\x92`g\x1cN\xb5\x33\xe9\xbe\x19\xb7\xb6\x98\x8f\x80ovb\xa4\x98;t\xaf\xf4\xe5!@n\f\xbb]?\fC\x9d\x42\xff%^.\xb7L\xb3\x88%\xde:\xc6j\x14\xd2\xbc\xbbjp\xaa\x85\xf1Q)"
groups\1\identities\1\user_notes=
groups\1\identities\size=1
groups\1\name=zvava
groups\size=1
[Favourites]
groups\1\favourites\1\title=cadence's starship
groups\1\favourites\1\url=@Variant(\0\0\0\x11\0\0\0\x14gemini://cadence.moe)
groups\1\favourites\size=1
groups\1\name=Unsorted
groups\size=1
[Protocols]
finger=true
gemini=true
gopher=true
guppy=true
http=false
https=false
[Theme]
Blockquote\color=#deddda
Blockquote\font="Sans Serif,10,-1,5,50,1,0,0,0,0"
Formatting\centre_h1=false
Formatting\indent_bq=2
Formatting\indent_h=1
Formatting\indent_l=2
Formatting\indent_p=1
Formatting\indent_size=15
Formatting\justify_text=false
Formatting\line_height_h=5
Formatting\line_height_p=11
Formatting\list_symbol=-1
Formatting\text_width=900
Formatting\text_width_enabled=true
H1\color=#c061cb
H1\font="Sans Serif,22,-1,5,75,0,0,0,0,0"
H2\color=#9141ac
H2\font="Sans Serif,17,-1,5,75,0,0,0,0,0"
H3\color=#613583
H3\font="Sans Serif,14,-1,5,75,0,0,0,0,0"
Link\color_cross_scheme=#605179
Link\color_external=#2ec27e
Link\color_internal=#57e389
Link\external_prefix="\x21d2 "
Link\internal_prefix="\x2192 "
Preformatted\color=#9a9996
Preformatted\font="Noto Sans Mono,10,-1,5,50,0,0,0,0,0,Regular"
Standard\color=#f6f5f4
Standard\font="Sans Serif,10,-1,5,50,0,0,0,0,0"
ansi_colors=black, darkred, darkgreen, darkgoldenrod, darkblue, darkmagenta, darkcyan, lightgray, gray, red, green, goldenrod, lightblue, magenta, cyan, white
background_color=#111111
blockquote_color=#2b2b2b
margins_h=25
margins_v=55
theme=0
version=1
[Trusted%20HTTPS%20Servers]
enable_ca=false
trust_level=0
trusted_hosts\1\host_name=zvava.org
trusted_hosts\1\key_bits="@ByteArray(0Y0\x13\x6\a*\x86H\xce=\x2\x1\x6\b*\x86H\xce=\x3\x1\a\x3\x42\0\x4\x89\x37\xdf\xc8\x85t\x97\xc6\xf2\x96\xc1\xf2\x1e\xacr\x80y\x9d\xca\xa4\xce\xb6\xdb\x39\xd7\x9d\x6S\x4\x87\xf2\xac\x5\xb4U\xf3\xa0\xdc\x10\x9dm\x10\x9c\xd1\xec,\xfc\x64\x9e.PUs\xd5\x61\x3I\x92\xda\xd3\xdbis\x95)"
trusted_hosts\1\key_type=3
trusted_hosts\1\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\xaa\x5\x14\xc3\x95\0)
trusted_hosts\size=1
[Trusted%20Servers]
enable_ca=false
trust_level=0
trusted_hosts\1\host_name=zvava.org
trusted_hosts\1\key_bits="@ByteArray(0Y0\x13\x6\a*\x86H\xce=\x2\x1\x6\b*\x86H\xce=\x3\x1\a\x3\x42\0\x4?\x1\x93\xc2\xd6\x39\xdf\x65\xffl\xe9u\x9c\x8dOm\xb2\xe4%\xeb\x61\xde]SZ\xd0\x9b\x87qF\xb4\x4\x8c\xb9\xee\x89\x9f\xeb\x9c\n&\xfd\xa3\x96\xda|\x1cMl\x14\xb4\xbc\x17\x91\x8d\x34\xd8GJg\x9a\x18\x81\xdc)"
trusted_hosts\1\key_type=3
trusted_hosts\1\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\x9e\x4\xbc\x15\x97\0)
trusted_hosts\10\host_name=cadence.moe
trusted_hosts\10\key_bits="@ByteArray(0\x82\x2\"0\r\x6\t*\x86H\x86\xf7\r\x1\x1\x1\x5\0\x3\x82\x2\xf\0\x30\x82\x2\n\x2\x82\x2\x1\0\xb8\xc0\xb6\xe3\x46\x95\xe6\x8c\xfc\xd4+\x9dN\xb3\xfat\xae\xf4\xed/`\x16\xd1\xb1\xcf\b\x87\xb7\xb5\x8c\xb9\f\x18\xd4.y\x95\x16\xdb\xd4>'T\xe6\x10O\xf\x15\xc5w\t\x2\xf\x41\xc6\xe4\xa5\xe8\x98;d\x99\xe7J^\xaf\x35 \v\x13\x15()\xb5\xe8zv[ \x1N\x18S\xc5\xb5\xd7\xc3\x37\xc6~\xe2\x1e\x17\x33r\xbf\x12\xbd\x8b\x8a\x17\xfc\xc2\xbb\x9a&\x94\xa1\xeb\xf2H\xbf\xc2\".aB\x9e\x41\xf0;\x1c$V\xd6\xa2\xc8lGgn{3\xee\x99\xe7\x9a\xce A\xe3\xbb'Q\x17\a\"\x1d?j\xa0\xa2$\xcc_\0\xfdof\xf8\x11]\xbb\x1ar\x83\x84\xb1\xf5\t\xcc\xc8\x8aq\x7f\xaa\x62\xa5\x17\x80\xd3\xe6\xfb\xc1Y\x88\xd7\xc6\x8c\n\xeb>({i&\xef\x8eO/\x5\xf9\x34\x8fw*%/\xee\xd9\xa1Uw\x88\x62\x8f \xe3\xc9~\x18\b\xd7L\x3\xf9$\x4.\xbeV\x14\xdb\x7f\x61\x94\xfc\x10\xf(X\xdc\xce\xe7\xd6\xbc\x32X\xd7\xd2\x31\x46\xd2\xda\x8f\x66\xd8Q\x80\xcb\xbd\xa0h\x96\x99\x86\x8e\x63\xf8\xe6\xdf@\xa5\xc3\xf1S\xb3\x6\x1as\xc8\v\xf6\x14\xfb\xb2qN_s\x1a\xa8<\xb1\x11\x32\x30#h\xa6&\x84\xf2\x66P\0%+Sl\xde|\xb4\x97\x8f\x44\xcb\xa1x\vK\xc8\xe3V\xa7\x8b\x16\aW\xadW\xcf\x14\x7fG~/p}\xeah\x4Jg\xb9\x1f\0_`xs\xc1\x96;\xc7\x8eV\b\xde\x45\xac\xfe?\xbb\x4\x85\x14`\xeb}\x1c\x97\xeb`\xe2\x10\xf6^ol\xe8\bs1G\n\x88\x32<\xce\t\x81\xdf\xa0\f\x8e]m\xa2\x32M\xd5\f~\xb9\x94|\x8e\x36\xc1\x18>\xd0I\x7fkfjb\x96J\xac\xdc\xf3\vE\xf6z\xce\xd6XM\x7f'\xd7`\xbdT\x11`\x17@t#cE\xd8\xde\xc6\xd7\xac\x91[{\x8f\xd2\xcc\xbf\xfe\xd1^~\x1d\x85V\0:]\x4\x81~\n\xb3\x1f\xdf~23A\xaf]\xf3\xd7\x11\xaf*\x90;j\x8al\xa7\x9d\f}\xc0\x81\x1b\xd7\x8a\x1b\xf\x1b\v\xf1\xb0\x90#\xc6\xec\xf2!\x2\x3\x1\0\x1)"
trusted_hosts\10\key_type=1
trusted_hosts\10\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\xde\x1\x14\x8d\x16\0)
trusted_hosts\2\host_name=gemini.circumlunar.space
trusted_hosts\2\key_bits="@ByteArray(0Y0\x13\x6\a*\x86H\xce=\x2\x1\x6\b*\x86H\xce=\x3\x1\a\x3\x42\0\x4\xa8\x90\b\x2\x1e\x8fz\xd7\xc7\x34\x98\xd9\x14|\xc1\xd1\x12(X\xfd\xb0-\xe0\xd5\xf\x82I\x1f\x8c\xaf|\xd5%\xa2\xb4\x10\xa2\bq\xa6\xac}\xb7Z\xf7\xa1\xce\x4\xc2\xf6\x62\x83x\x10\x8f\x8dj\xb3\x8e\xb8t\x8dy\xbd)"
trusted_hosts\2\key_type=3
trusted_hosts\2\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\x9e\x4\xbcj6\0)
trusted_hosts\3\host_name=geminiprotocol.net
trusted_hosts\3\key_bits="@ByteArray(0Y0\x13\x6\a*\x86H\xce=\x2\x1\x6\b*\x86H\xce=\x3\x1\a\x3\x42\0\x4\x1fl\xbd\x42\x1e\x14\xdb\xb3}-\x9e\x2\x3m\xd8\x62\xea\x11\xaa<\x2\x2\x84m\xf4\x83\x41\x93\x7f\xe=\xf6\xc1\x42\f\xff\xab\x9e\x5`\xb4\xb7\x43\x1b\xff\xf3\xf8\xcd\xef\"\x9e\x1b\x89T\xeb\xf6\xe3`\xb1\x9cUV\f\xd9)"
trusted_hosts\3\key_type=3
trusted_hosts\3\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\x9e\x4\xbc|\xcd\0)
trusted_hosts\4\host_name=mozz.us
trusted_hosts\4\key_bits="@ByteArray(0\x82\x1\"0\r\x6\t*\x86H\x86\xf7\r\x1\x1\x1\x5\0\x3\x82\x1\xf\0\x30\x82\x1\n\x2\x82\x1\x1\0\xed\x46\xcal-F \xd7\reY\xc8G\xb3\x45p\x12\x18S^uZG\x1f\x94\xc1\xa8\xaa\vA9\xb5^4)\xc2\x46\x83m\xb1\x61_\xca\xc3\xea>\r\xf0!\xca\x41\x98\xf7\xdc\x3\x8d\xa8\xf8\xfb>$\x9b\xcf\x30\x9c\x1f#\0\xb7\x83\r\x87_p\xfa\xf3\x31\xbc\x17\x8f\xc9\x6\xda\xb6\x88\xc0\xc0}\x86Zh\xbd^\xdc\x9c\x99y\xf5\x83\x93\x90`\xb5\xe0m|7\xa4\x6\x2\x44\xa5\0\x16\xff\x92%Z\\\xa3`%\t\x13&\x9d`\xe9GD\x89X\xe9\x32o_\xe6l\xb6x\xa1\xf8Q\xb0\xfb\xe3\xef\xd5\xeR\xd8\\g\x96\x1c\xac\xa4w\n\xe5\"\xc1\xb5\x61\xe0\xbb\x1e\x46\x12\xd1\xc3\xb9`\x1b\x38\xbd<\xf6\xc1\x43\xb1\xc2\xe2\xf5.\x1b\xe\xd9\xd0:2?\xf9\x16\xed\x10\xa6\xf5,\xbd\x43\x16\x30Wy\xbb\x15\xfb\x93\xc1\xc2\xce\xea\x8d\xaeM3\xd7[\xa2H\x9a\xed\xcf\xc3\x46\xe8\xa0V$TF)\x97\n\xd3\xa0\xed\xbe\xe0\xa1\xd2%L\x83\x43:\xdcI)\xac\xf\xc8Y\xdd}\x2\x3\x1\0\x1)"
trusted_hosts\4\key_type=1
trusted_hosts\4\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\xdc\0#\xac]\0)
trusted_hosts\5\host_name=astrobotany.mozz.us
trusted_hosts\5\key_bits="@ByteArray(0\x82\x1\"0\r\x6\t*\x86H\x86\xf7\r\x1\x1\x1\x5\0\x3\x82\x1\xf\0\x30\x82\x1\n\x2\x82\x1\x1\0\xed\x46\xcal-F \xd7\reY\xc8G\xb3\x45p\x12\x18S^uZG\x1f\x94\xc1\xa8\xaa\vA9\xb5^4)\xc2\x46\x83m\xb1\x61_\xca\xc3\xea>\r\xf0!\xca\x41\x98\xf7\xdc\x3\x8d\xa8\xf8\xfb>$\x9b\xcf\x30\x9c\x1f#\0\xb7\x83\r\x87_p\xfa\xf3\x31\xbc\x17\x8f\xc9\x6\xda\xb6\x88\xc0\xc0}\x86Zh\xbd^\xdc\x9c\x99y\xf5\x83\x93\x90`\xb5\xe0m|7\xa4\x6\x2\x44\xa5\0\x16\xff\x92%Z\\\xa3`%\t\x13&\x9d`\xe9GD\x89X\xe9\x32o_\xe6l\xb6x\xa1\xf8Q\xb0\xfb\xe3\xef\xd5\xeR\xd8\\g\x96\x1c\xac\xa4w\n\xe5\"\xc1\xb5\x61\xe0\xbb\x1e\x46\x12\xd1\xc3\xb9`\x1b\x38\xbd<\xf6\xc1\x43\xb1\xc2\xe2\xf5.\x1b\xe\xd9\xd0:2?\xf9\x16\xed\x10\xa6\xf5,\xbd\x43\x16\x30Wy\xbb\x15\xfb\x93\xc1\xc2\xce\xea\x8d\xaeM3\xd7[\xa2H\x9a\xed\xcf\xc3\x46\xe8\xa0V$TF)\x97\n\xd3\xa0\xed\xbe\xe0\xa1\xd2%L\x83\x43:\xdcI)\xac\xf\xc8Y\xdd}\x2\x3\x1\0\x1)"
trusted_hosts\5\key_type=1
trusted_hosts\5\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\xdc\0$\xdb\xe4\0)
trusted_hosts\6\host_name=spartan.mozz.us
trusted_hosts\6\key_bits="@ByteArray(0\x82\x1\"0\r\x6\t*\x86H\x86\xf7\r\x1\x1\x1\x5\0\x3\x82\x1\xf\0\x30\x82\x1\n\x2\x82\x1\x1\0\xed\x46\xcal-F \xd7\reY\xc8G\xb3\x45p\x12\x18S^uZG\x1f\x94\xc1\xa8\xaa\vA9\xb5^4)\xc2\x46\x83m\xb1\x61_\xca\xc3\xea>\r\xf0!\xca\x41\x98\xf7\xdc\x3\x8d\xa8\xf8\xfb>$\x9b\xcf\x30\x9c\x1f#\0\xb7\x83\r\x87_p\xfa\xf3\x31\xbc\x17\x8f\xc9\x6\xda\xb6\x88\xc0\xc0}\x86Zh\xbd^\xdc\x9c\x99y\xf5\x83\x93\x90`\xb5\xe0m|7\xa4\x6\x2\x44\xa5\0\x16\xff\x92%Z\\\xa3`%\t\x13&\x9d`\xe9GD\x89X\xe9\x32o_\xe6l\xb6x\xa1\xf8Q\xb0\xfb\xe3\xef\xd5\xeR\xd8\\g\x96\x1c\xac\xa4w\n\xe5\"\xc1\xb5\x61\xe0\xbb\x1e\x46\x12\xd1\xc3\xb9`\x1b\x38\xbd<\xf6\xc1\x43\xb1\xc2\xe2\xf5.\x1b\xe\xd9\xd0:2?\xf9\x16\xed\x10\xa6\xf5,\xbd\x43\x16\x30Wy\xbb\x15\xfb\x93\xc1\xc2\xce\xea\x8d\xaeM3\xd7[\xa2H\x9a\xed\xcf\xc3\x46\xe8\xa0V$TF)\x97\n\xd3\xa0\xed\xbe\xe0\xa1\xd2%L\x83\x43:\xdcI)\xac\xf\xc8Y\xdd}\x2\x3\x1\0\x1)"
trusted_hosts\6\key_type=1
trusted_hosts\6\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\xdc\0*\x81J\0)
trusted_hosts\7\host_name=chat.mozz.us
trusted_hosts\7\key_bits="@ByteArray(0\x82\x1\"0\r\x6\t*\x86H\x86\xf7\r\x1\x1\x1\x5\0\x3\x82\x1\xf\0\x30\x82\x1\n\x2\x82\x1\x1\0\xed\x46\xcal-F \xd7\reY\xc8G\xb3\x45p\x12\x18S^uZG\x1f\x94\xc1\xa8\xaa\vA9\xb5^4)\xc2\x46\x83m\xb1\x61_\xca\xc3\xea>\r\xf0!\xca\x41\x98\xf7\xdc\x3\x8d\xa8\xf8\xfb>$\x9b\xcf\x30\x9c\x1f#\0\xb7\x83\r\x87_p\xfa\xf3\x31\xbc\x17\x8f\xc9\x6\xda\xb6\x88\xc0\xc0}\x86Zh\xbd^\xdc\x9c\x99y\xf5\x83\x93\x90`\xb5\xe0m|7\xa4\x6\x2\x44\xa5\0\x16\xff\x92%Z\\\xa3`%\t\x13&\x9d`\xe9GD\x89X\xe9\x32o_\xe6l\xb6x\xa1\xf8Q\xb0\xfb\xe3\xef\xd5\xeR\xd8\\g\x96\x1c\xac\xa4w\n\xe5\"\xc1\xb5\x61\xe0\xbb\x1e\x46\x12\xd1\xc3\xb9`\x1b\x38\xbd<\xf6\xc1\x43\xb1\xc2\xe2\xf5.\x1b\xe\xd9\xd0:2?\xf9\x16\xed\x10\xa6\xf5,\xbd\x43\x16\x30Wy\xbb\x15\xfb\x93\xc1\xc2\xce\xea\x8d\xaeM3\xd7[\xa2H\x9a\xed\xcf\xc3\x46\xe8\xa0V$TF)\x97\n\xd3\xa0\xed\xbe\xe0\xa1\xd2%L\x83\x43:\xdcI)\xac\xf\xc8Y\xdd}\x2\x3\x1\0\x1)"
trusted_hosts\7\key_type=1
trusted_hosts\7\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\xdc\0++X\0)
trusted_hosts\8\host_name=sunshinegardens.org
trusted_hosts\8\key_bits="@ByteArray(0Y0\x13\x6\a*\x86H\xce=\x2\x1\x6\b*\x86H\xce=\x3\x1\a\x3\x42\0\x4^=\xd2\xd3\x14\xde\xac\x64\x8d\x8f\xfe\xdc\xb3\xd1\xc9\xa3WM\xe6\xf1\x97\xcb\xe5wx\xb3\xc1\v\xeb\xe5\xcb(\x15l\x9c\x45\xd4\xda\xa3\xaeQb\x16\xa4_\xafli~6\xcdw&\xc2\xca;\x5\x85\xa8n\x81\x89\x8a\\)"
trusted_hosts\8\key_type=3
trusted_hosts\8\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\xdd\0\x1d\x6\x41\0)
trusted_hosts\9\host_name=old-home.faith
trusted_hosts\9\key_bits="@ByteArray(0Y0\x13\x6\a*\x86H\xce=\x2\x1\x6\b*\x86H\xce=\x3\x1\a\x3\x42\0\x4\r(\bv\x9a\xbb\xd3\x80\x62\x81\0&\x84\xb9\xfe\xa6\xe7\xc4\x35\x39\x10Z\xae\xa5\x81\xf1\x44_Ki\x96k\xc5s\x81Z\x8c\xcf\b*g\xf4\xa0\xba\x1\xf6\x87\xdd\xbe\f0\xd5\x10w\xdaY\x12M\a\x97\x87\xb0\x95Z)"
trusted_hosts\9\key_type=3
trusted_hosts\9\trusted_at=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8a\xde\0\x87Q\x85\0)
trusted_hosts\size=10

View File

@ -0,0 +1,14 @@
[windows]
1\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\x8a\0\0\x2\xa2\0\0\x3\xc1\0\0\x5\xad\0\0\0\x8a\0\0\x2\xba\0\0\x3\xc1\0\0\x5\xad\0\0\0\x1\0\0\0\0\x4\x38\0\0\0\x8a\0\0\x2\xba\0\0\x3\xc1\0\0\x5\xad)
1\state=@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\x2\0\0\0\0\0\0\0\xdf\0\0\x2<\xfc\x2\0\0\0\x1\xfb\0\0\0\x1c\0o\0u\0t\0l\0i\0n\0\x65\0_\0w\0i\0n\0\x64\0o\0w\0\0\0\0\x16\0\0\x2<\0\0\0\x65\0\xff\xff\xff\0\0\0\x1\0\0\x1\0\0\0\x2\xb2\xfc\x2\0\0\0\x2\xfb\0\0\0 \0\x62\0o\0o\0k\0m\0\x61\0r\0k\0s\0_\0w\0i\0n\0\x64\0o\0w\0\0\0\0\0\xff\xff\xff\xff\0\0\0\x65\0\xff\xff\xff\xfb\0\0\0\x1c\0h\0i\0s\0t\0o\0r\0y\0_\0w\0i\0n\0\x64\0o\0w\x1\0\0\0!\0\0\x2\xb2\0\0\0\x65\0\xff\xff\xff\0\0\x2\x32\0\0\x2\xb2\0\0\0\x4\0\0\0\x4\0\0\0\b\0\0\0\b\xfc\0\0\0\0)
1\tab_index=3
1\tabs\1\title=quotes
1\tabs\1\url=file:///home/zvava/Code/zvava.org/out/gemini/wiki/quotes.gmi
1\tabs\2\title=index.gmi
1\tabs\2\url=file:///home/zvava/Code/zvava.org/out/gemini/index.gmi
1\tabs\3\title=Hi!
1\tabs\3\url=gemini://cadence.moe
1\tabs\4\title=config
1\tabs\4\url=file:///home/zvava/Code/zvava.org/src/wiki/config.gmi
1\tabs\size=4
size=1

View File

@ -0,0 +1,54 @@
[General]
ansi_colors=black, darkred, darkgreen, darkgoldenrod, darkblue, darkmagenta, darkcyan, lightgray, gray, red, green, goldenrod, lightblue, magenta, cyan, white
background_color=#edefff
blockquote_color=#ffffff
margins_h=25
margins_v=55
name=a
theme=1
version=1
[Blockquote]
color=#000000
font="Sans Serif,12,-1,5,50,1,0,0,0,0"
[Formatting]
centre_h1=false
indent_bq=4
indent_h=0
indent_l=2
indent_p=2
indent_size=15
justify_text=false
line_height_h=5
line_height_p=11
list_symbol=-1
text_width=900
text_width_enabled=true
[H1]
color=#022f90
font="Sans Serif,22,-1,5,75,0,0,0,0,0"
[H2]
color=#022f90
font="Sans Serif,17,-1,5,75,0,0,0,0,0"
[H3]
color=#022f90
font="Sans Serif,14,-1,5,75,0,0,0,0,0"
[Link]
color_cross_scheme=#0960a7
color_external=#0e8fff
color_internal=#0e8fff
external_prefix="\x21d2 "
internal_prefix="\x2192 "
[Preformatted]
color=#000000
font="Noto Sans Mono,12,-1,5,50,0,0,0,0,0"
[Standard]
color=#000000
font="Sans Serif,12,-1,5,50,0,0,0,0,0"

View File

@ -1,9 +1,11 @@
#
# zvava's neofetch config
# @zvava@merveilles.town
# @zvava@mk.catgirlsfor.science
#
print_info() {
echo
info title
info underline
@ -13,11 +15,12 @@ print_info() {
info "memory" memory
info "disk" disk
info underline
info "OS" distro
info "desktop environment" de
# info "window manager" wm
info "distro" distro
# info "desktop environment" de
info "window manager" wm
prin "status bar" "xfce4-panel"
info "terminal" term
info "Packages" packages
info "packages" packages
info "uptime" uptime
# info "kernel" kernel
@ -127,7 +130,7 @@ mpc_args=()
# Text Options
# Text Colors
# 'title', '@', 'underline', 'subtitle', 'colon', 'info'
colors=(15 9 15 9)
colors=(15 13 8 5 15 13)
# Toggle bold text
bold="on"
# Enable/Disable Underline
@ -139,7 +142,7 @@ separator=' \x1b[37m//\x1b[0m'
# Color Blocks
# Color block range
block_range=(8 15)
block_range=(0 15)
# Toggle color blocks
color_blocks="on"
# Color block width in spaces

32
.config/picom.conf Normal file
View File

@ -0,0 +1,32 @@
vsync = false
use-damage = false
shadow = true
shadow-radius = 32
shadow-opacity = .75
# shadow-color = "#000000"
shadow-offset-x = -30
shadow-offset-y = -30
shadow-exclude = [
"role = 'Popup'",
"class_g = 'Dunst'",
"window_type = 'dock'",
"_GTK_FRAME_EXTENTS@:c"
]
clip-shadow-above = [
"! window_type = 'normal'"
]
fading = true
fade-in-step = 0.028
fade-out-step = 0.028
fade-delta = 3
# fade-exclude = []
corner-radius = 6.5
round-borders = 1
rounded-corners-exclude = [
"window_type = 'dock'",
"window_type = 'desktop'"
]

View File

@ -1,6 +1,6 @@
[redshift]
fade=1
temp-night=1500
temp-night=3000
location-provider=manual
[manual]

View File

@ -0,0 +1,34 @@
/*******************************************************
* ROFI Arc Dark colors for EndeavourOS
* Maintainer: joekamprad [joekamprad //a_t// endeavouros.com]
*******************************************************/
* {
selected-normal-foreground: rgba ( 249, 249, 249, 100 % );
foreground: rgba ( 196, 203, 212, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 64, 69, 82, 59 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 249, 249, 249, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 204, 102, 102, 100 % );
alternate-urgent-background: rgba ( 75, 81, 96, 90 % );
active-foreground: rgba ( 101, 172, 255, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 249, 249, 249, 100 % );
alternate-active-background: rgba ( 75, 81, 96, 89 % );
background: rgba ( 45, 48, 59, 95 % );
alternate-normal-foreground: @foreground;
normal-background: @background;
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 64, 132, 214, 100 % );
border-color: rgba ( 124, 131, 137, 100 % );
spacing: 2;
separatorcolor: rgba ( 29, 31, 33, 100 % );
urgent-background: rgba ( 29, 31, 33, 17 % );
selected-urgent-background: rgba ( 165, 66, 66, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 29, 31, 33, 17 % );
selected-active-background: rgba ( 68, 145, 237, 100 % );
}

View File

@ -0,0 +1,34 @@
/*******************************************************
* ROFI Arch Dark Transparent colors for EndeavourOS
* Maintainer: joekamprad [joekamprad //a_t// endeavouros.com]
*******************************************************/
* {
selected-normal-foreground: rgba ( 255, 147, 5, 100 % );
foreground: rgba ( 196, 203, 212, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 45, 48, 59, 1 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 249, 249, 249, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 204, 102, 102, 100 % );
alternate-urgent-background: rgba ( 75, 81, 96, 90 % );
active-foreground: rgba ( 101, 172, 255, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 249, 249, 249, 100 % );
alternate-active-background: rgba ( 45, 48, 59, 88 % );
background: rgba ( 45, 48, 59, 88 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 45, 48, 59, 1 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 24, 26, 32, 100 % );
border-color: rgba ( 124, 131, 137, 100 % );
spacing: 2;
separatorcolor: rgba ( 45, 48, 59, 1 % );
urgent-background: rgba ( 45, 48, 59, 15 % );
selected-urgent-background: rgba ( 165, 66, 66, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 29, 31, 33, 17 % );
selected-active-background: rgba ( 26, 28, 35, 100 % );
}

27
.config/rofi/config.rasi Normal file
View File

@ -0,0 +1,27 @@
//
// zvava's rofi config
//
// @zvava@toot.cafe
//
configuration {
modi: "drun,run,ssh,window";
width: 24;
location: 0;
show-icons: true;
terminal: "kitty";
icon-theme: "Adwaita";
drun-match-fields: "name,generic,exec,categories";
drun-show-actions: false;
drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]"; /*{unfuck nano's syntax highlighting*/
ignored-prefixes: "";
m: "-5";
disable-history: false;
max-history-size: 1;
hide-scrollbar: true;
fullscreen: false;
dpi: -1;
click-to-exit: true;
}
@theme "/home/zvava/.config/rofi/themes/Customa.rasi"

View File

@ -0,0 +1,121 @@
/*******************************************************
* ROFI configs i3 powermenu for EndeavourOS
* Maintainer: joekamprad [joekamprad //a_t// endeavouros.com]
*******************************************************/
configuration {
font: "Noto Sans Regular 10";
show-icons: false;
icon-theme: "Qogir";
scroll-method: 0;
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@import "~/.config/rofi/arc_dark_colors.rasi"
window {
background-color: @background;
border: 0;
padding: 10;
transparency: "real";
width: 170px;
location: east;
/*y-offset: 18;*/
/*x-offset: 850;*/
}
listview {
lines: 4;
columns: 1;
}
element {
border: 0;
padding: 1px;
}
element-text {
background-color: inherit;
text-color: inherit;
}
element.normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
scrollbar {
width: 4px;
border: 0;
handle-color: @normal-foreground;
handle-width: 8px;
padding: 0;
}
mode-switcher {
border: 2px 0px 0px;
border-color: @separatorcolor;
}
button {
spacing: 0;
text-color: @normal-foreground;
}
button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px;
}
case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
entry {
spacing: 0;
text-color: @normal-foreground;
}
prompt {
spacing: 0;
text-color: @normal-foreground;
}
inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
textbox-prompt-colon {
expand: false;
str: "Set Power Profile:";
margin: 0px 0.3em 0em 0em;
text-color: @normal-foreground;
}

124
.config/rofi/powermenu.rasi Normal file
View File

@ -0,0 +1,124 @@
/*******************************************************
* ROFI configs i3 powermenu for EndeavourOS
* Maintainer: joekamprad [joekamprad //a_t// endeavouros.com]
*******************************************************/
configuration {
font: "Noto Sans Regular 10";
show-icons: false;
icon-theme: "Qogir";
scroll-method: 0;
disable-history: false;
sidebar-mode: false;
}
@import "~/.config/rofi/arc_dark_transparent_colors.rasi"
window {
background-color: @background;
border: 0;
padding: 10;
transparency: "real";
width: 120px;
location: east;
/*y-offset: 18;*/
/*x-offset: 850;*/
}
listview {
lines: 7;
columns: 1;
scrollbar: false;
}
element {
border: 0;
padding: 1px;
}
element-text {
background-color: inherit;
text-color: inherit;
}
element.normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
scrollbar {
width: 4px;
border: 0;
handle-color: @normal-foreground;
handle-width: 8px;
padding: 0;
}
mode-switcher {
border: 2px 0px 0px;
border-color: @separatorcolor;
}
button {
spacing: 0;
text-color: @normal-foreground;
}
button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px;
}
case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
entry {
spacing: 0;
text-color: @normal-foreground;
}
prompt {
spacing: 0;
text-color: @normal-foreground;
}
inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 0.3em 0em 0em;
text-color: @normal-foreground;
}
/*removes the text input line*/
mainbox {
children: [listview];
}

135
.config/rofi/rofidmenu.rasi Normal file
View File

@ -0,0 +1,135 @@
/*******************************************************
* ROFI configs i3 Apps menu for EndeavourOS
* Maintainer: joekamprad [joekamprad //a_t// endeavouros.com]
*******************************************************/
configuration {
font: "Noto Sans Regular 10";
show-icons: true;
icon-theme: "Qogir";
display-drun: "Apps";
drun-display-format: "{name}";
scroll-method: 0;
disable-history: false;
sidebar-mode: false;
}
@import "~/.config/rofi/arc_dark_transparent_colors.rasi"
window {
background-color: @background;
border: 0;
padding: 30;
}
listview {
lines: 10;
columns: 3;
}
mainbox {
border: 0;
padding: 0;
}
message {
border: 2px 0px 0px;
border-color: @separatorcolor;
padding: 1px;
}
textbox {
text-color: @foreground;
}
listview {
fixed-height: 0;
border: 8px 0px 0px;
border-color: @separatorcolor;
spacing: 8px;
scrollbar: false;
padding: 2px 0px 0px;
}
element {
border: 0;
padding: 1px;
}
element-text {
background-color: inherit;
text-color: inherit;
}
element.normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
scrollbar {
width: 4px;
border: 0;
handle-color: @normal-foreground;
handle-width: 8px;
padding: 0;
}
mode-switcher {
border: 2px 0px 0px;
border-color: @separatorcolor;
}
button {
spacing: 0;
text-color: @normal-foreground;
}
button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px;
}
case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
entry {
spacing: 0;
text-color: @normal-foreground;
}
prompt {
spacing: 0;
text-color: @normal-foreground;
}
inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 0.3em 0em 0em;
text-color: @normal-foreground;
}

View File

@ -0,0 +1,137 @@
/*******************************************************
* ROFI configs i3 keyhint-menu for EndeavourOS
* Maintainer: joekamprad [joekamprad //a_t// endeavouros.com]
*******************************************************/
configuration {
font: "Noto Sans Regular 10";
show-icons: false;
icon-theme: "Qogir";
display-drun: "KeyHint";
drun-display-format: "{name}";
scroll-method: 0;
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@import "~/.config/rofi/arc_dark_transparent_colors.rasi"
window {
background-color: @background;
border: 0;
padding: 30;
}
listview {
lines: 10;
columns: 1;
}
mainbox {
border: 0;
padding: 0;
}
message {
border: 2px 0px 0px;
border-color: @separatorcolor;
padding: 1px;
}
textbox {
text-color: @foreground;
}
listview {
fixed-height: 0;
border: 8px 0px 0px;
border-color: @separatorcolor;
spacing: 8px;
scrollbar: false;
padding: 2px 0px 0px;
}
element {
border: 0;
padding: 1px;
}
element-text {
background-color: inherit;
text-color: inherit;
}
element.normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
scrollbar {
width: 4px;
border: 0;
handle-color: @normal-foreground;
handle-width: 8px;
padding: 0;
}
mode-switcher {
border: 2px 0px 0px;
border-color: @separatorcolor;
}
button {
spacing: 0;
text-color: @normal-foreground;
}
button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px;
}
case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
entry {
spacing: 0;
text-color: @normal-foreground;
}
prompt {
spacing: 0;
text-color: @normal-foreground;
}
inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 0.3em 0em 0em;
text-color: @normal-foreground;
}

View File

@ -0,0 +1,47 @@
//
// zvava's rofi theme
//
// @zvava@toot.cafe
//
* {
font: "Ubuntu Mono 11";
background-color: #161621;
color: #dddddd;
}
#window {
border: 0;
border-color: #212126;
children: [ prompt, inputbar, message, listview ];
}
#prompt {
padding: 4px 100% 4px 6px;
background-color: #212126;
}
/* run */
#inputbar {
children: [ entry, case-indicator ];
}
#entry {
padding: 34px 47px 4px 47px;
}
#listview {
padding: 0 0 35px 0;
fixed-height: true;
scrollbar: false;
lines: 8;
}
#element {
padding: 4px 30px;
}
#element.selected {
background-color: #212126;
}

1
.config/xfce4/help.rc Normal file
View File

@ -0,0 +1 @@
auto-online=false

View File

@ -1,11 +0,0 @@
[Desktop Entry]
Name=Settings Manager
Comment=Graphical Settings Manager for Xfce 4
Exec=xfce4-settings-manager
Icon=preferences-desktop
Terminal=false
Type=Application
Categories=X-XFCE;Settings;DesktopSettings;
OnlyShowIn=XFCE;
X-XfceSettingsManagerHidden=true
X-XFCE-Source=file:///usr/share/applications/xfce-settings-manager.desktop

View File

@ -1,80 +0,0 @@
favorites=gimp.desktop,codium.desktop,galculator.desktop,steam.desktop,wine-Programs-Image-Line-FL Studio 10-FL Studio 10.desktop,wine-Programs-GOG.com-SPORE™ Collection-SPORE™.desktop
recent=org.xfce.mousepad.desktop,pragha.desktop,org.keepassxc.KeePassXC.desktop,megasync.desktop,gimp.desktop,codium.desktop,com.usebottles.bottles.desktop,org.gnome.seahorse.Application.desktop,torbrowser.desktop,xfce-settings-manager.desktop
button-icon=desktop-environment-xfce
button-single-row=false
show-button-title=true
show-button-icon=true
launcher-show-name=true
launcher-show-description=true
launcher-show-tooltip=true
item-icon-size=2
hover-switch-category=false
category-show-name=true
category-icon-size=1
sort-categories=true
view-mode=2
default-category=0
recent-items-max=10
favorites-in-recent=true
position-search-alternate=true
position-commands-alternate=false
position-categories-alternate=true
stay-on-focus-out=false
confirm-session-command=true
menu-width=507
menu-height=534
menu-opacity=100
command-settings=xfce4-settings-manager
show-command-settings=true
command-lockscreen=xflock4
show-command-lockscreen=true
command-switchuser=gdmflexiserver
show-command-switchuser=false
command-logoutuser=xfce4-session-logout --logout --fast
show-command-logoutuser=false
command-restart=xfce4-session-logout --reboot --fast
show-command-restart=false
command-shutdown=xfce4-session-logout --halt --fast
show-command-shutdown=false
command-suspend=xfce4-session-logout --suspend
show-command-suspend=false
command-hibernate=xfce4-session-logout --hibernate
show-command-hibernate=false
command-logout=xfce4-session-logout
show-command-logout=true
command-menueditor=menulibre
show-command-menueditor=true
command-profile=mugshot
show-command-profile=true
search-actions=5
[action0]
name=Man Pages
pattern=#
command=exo-open --launch TerminalEmulator man %s
regex=false
[action1]
name=Web Search
pattern=?
command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u
regex=false
[action2]
name=Wikipedia
pattern=!w
command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u
regex=false
[action3]
name=Run in Terminal
pattern=!
command=exo-open --launch TerminalEmulator %s
regex=false
[action4]
name=Open URI
pattern=^(file|http|https):\\/\\/(.*)$
command=exo-open \\0
regex=true

View File

@ -1,44 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<name>Bugz</name>
<regex>bug\s*#?\s*([0-9]+)</regex>
<group>0</group>
<commands>
<command>
<name>GNOME Bug</name>
<exec>exo-open http://bugzilla.gnome.org/show_bug.cgi?id=\1</exec>
</command>
<command>
<name>Xfce Bug</name>
<exec>exo-open http://bugzilla.xfce.org/show_bug.cgi?id=\1</exec>
</command>
</commands>
</action>
<action>
<name>Image</name>
<regex>(http|ftp).+\.(jpg|png|gif)</regex>
<group>0</group>
<commands>
<command>
<name>View with Ristretto</name>
<exec>ristretto &quot;\0&quot;</exec>
</command>
<command>
<name>Edit with Gimp</name>
<exec>gimp-remote &quot;\0&quot;</exec>
</command>
</commands>
</action>
<action>
<name>Long URL</name>
<regex>http://[^\s]{120,}</regex>
<group>0</group>
<commands>
<command>
<name>Shrink the URL</name>
<exec>exo-open http://tinyurl.com/create.php?url=\0</exec>
</command>
</commands>
</action>
</actions>

View File

@ -1,13 +1,17 @@
[Configuration]
BackgroundDarkness=0.920000
MiscSearchDialogOpacity=100
MiscShowUnsafePasteDialog=FALSE
BackgroundMode=TERMINAL_BACKGROUND_TRANSPARENT
MiscAlwaysShowTabs=FALSE
MiscBell=FALSE
MiscBellUrgent=FALSE
MiscBordersDefault=TRUE
MiscCursorBlinks=TRUE
MiscCursorBlinks=FALSE
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
MiscDefaultGeometry=80x24
MiscDefaultGeometry=100x30
MiscInheritGeometry=FALSE
MiscMenubarDefault=TRUE
MiscMenubarDefault=FALSE
MiscMouseAutohide=FALSE
MiscMouseWheelZoom=TRUE
MiscToolbarDefault=FALSE
@ -24,12 +28,15 @@ MiscRewrapOnResize=TRUE
MiscUseShiftArrowsToScroll=FALSE
MiscSlimTabs=FALSE
MiscNewTabAdjacent=FALSE
MiscSearchDialogOpacity=100
MiscShowUnsafePasteDialog=FALSE
TitleMode=TERMINAL_TITLE_HIDE
FontUseSystem=TRUE
ColorForeground=#eeeeeeeeeeee
ColorBackground=#1c1c1c1c1c1c
ColorCursor=#dcdcdc
ColorPalette=rgb(28,28,28);rgb(112,80,80);rgb(96,180,138);rgb(223,175,143);rgb(154,184,215);rgb(220,140,195);rgb(140,208,211);rgb(220,220,220);rgb(238,238,238);rgb(220,163,163);rgb(114,213,163);rgb(240,223,175);rgb(148,191,243);rgb(236,147,211);rgb(147,224,227);rgb(255,255,255)
ColorForeground=#e3e3ea
ColorBackground=#08052b
ColorCursor=#ff7f7f
ColorCursorForeground=#FFFFFF
ColorBold=#7fbaff
TabActivityColor=#81813d3d9c9c
ColorCursorUseDefault=FALSE
ColorBoldIsBright=FALSE
ScrollingUnlimited=TRUE
FontName=Source Code Pro 10
ColorPalette=rgb(0,0,0);rgb(170,0,0);rgb(76,61,170);rgb(170,85,0);rgb(0,0,170);rgb(170,0,170);rgb(0,170,170);rgb(170,170,170);rgb(85,85,85);rgb(255,85,85);rgb(85,255,85);rgb(255,255,85);rgb(85,85,255);rgb(255,85,255);rgb(85,255,255);rgb(255,255,255)
ScrollingBar=TERMINAL_SCROLLBAR_NONE

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="keyboards" version="1.0">
<property name="Default" type="empty">
<property name="KeyRepeat" type="empty">
<property name="Rate" type="int" value="30"/>
<property name="Delay" type="int" value="400"/>
</property>
<property name="Numlock" type="bool" value="false"/>
</property>
</channel>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="ristretto" version="1.0">
<property name="window" type="empty">
<property name="navigationbar" type="empty">
<property name="position" type="string" value="left"/>
</property>
<property name="bgcolor-override" type="bool" value="true"/>
</property>
<property name="desktop" type="empty">
<property name="type" type="string" value="none"/>
</property>
<property name="file" type="empty">
<property name="current-uri" type="string" value=""/>
</property>
</channel>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="thunar-volman" version="1.0">
<property name="automount-drives" type="empty">
<property name="enabled" type="bool" value="true"/>
</property>
<property name="automount-media" type="empty">
<property name="enabled" type="bool" value="true"/>
</property>
</channel>

View File

@ -1,16 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="thunar" version="1.0">
<property name="last-view" type="string" value="ThunarIconView"/>
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_75_PERCENT"/>
<property name="misc-single-click" type="bool" value="false"/>
<property name="last-window-width" type="int" value="1280"/>
<property name="last-view" type="string" value="ThunarDetailsView"/>
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_400_PERCENT"/>
<property name="last-window-width" type="int" value="688"/>
<property name="last-window-height" type="int" value="720"/>
<property name="last-window-maximized" type="bool" value="false"/>
<property name="last-separator-position" type="int" value="181"/>
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_38_PERCENT"/>
<property name="last-details-view-column-widths" type="string" value="50,129,50,50,881,50,50,72,50,113"/>
<property name="last-separator-position" type="int" value="168"/>
<property name="last-show-hidden" type="bool" value="true"/>
<property name="misc-confirm-close-multiple-tabs" type="bool" value="false"/>
<property name="misc-single-click" type="bool" value="false"/>
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_25_PERCENT"/>
<property name="last-details-view-column-widths" type="string" value="50,50,230,120,86,427,50,50,293,50,50,97,50,66"/>
<property name="last-details-view-visible-columns" type="string" value="THUNAR_COLUMN_DATE_MODIFIED,THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE"/>
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
<property name="last-side-pane" type="string" value="ThunarShortcutsPane"/>
<property name="last-location-bar" type="string" value="ThunarLocationEntry"/>
<property name="last-image-preview-visible" type="bool" value="true"/>
<property name="last-details-view-fixed-columns" type="bool" value="true"/>
<property name="default-view" type="string" value="ThunarDetailsView"/>
<property name="misc-folder-item-count" type="string" value="THUNAR_FOLDER_ITEM_COUNT_ONLY_LOCAL"/>
</channel>

View File

@ -1,213 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-keyboard-shortcuts" version="1.0">
<property name="commands" type="empty">
<property name="default" type="empty">
<property name="&lt;Alt&gt;F1" type="empty"/>
<property name="&lt;Alt&gt;F2" type="empty">
<property name="startup-notify" type="empty"/>
</property>
<property name="&lt;Alt&gt;F3" type="empty">
<property name="startup-notify" type="empty"/>
</property>
<property name="XF86LogOff" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Delete" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;l" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;t" type="empty"/>
<property name="XF86Display" type="empty"/>
<property name="&lt;Super&gt;p" type="empty"/>
<property name="&lt;Primary&gt;Escape" type="empty"/>
<property name="XF86WWW" type="empty"/>
<property name="HomePage" type="empty"/>
<property name="XF86Mail" type="empty"/>
<property name="Print" type="empty"/>
<property name="&lt;Alt&gt;Print" type="empty"/>
<property name="&lt;Shift&gt;Print" type="empty"/>
<property name="&lt;Super&gt;e" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;f" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Escape" type="empty"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;Escape" type="empty"/>
<property name="&lt;Super&gt;r" type="empty">
<property name="XF86Calendar" type="empty"/>
<property name="XF86Memo" type="empty"/>
<property name="XF86Terminal" type="empty"/>
<property name="XF86Explorer" type="empty"/>
<property name="XF86AudioMedia" type="empty"/>
<property name="XF86AudioPlay" type="empty"/>
<property name="XF86AudioPrev" type="empty"/>
<property name="XF86AudioNext" type="empty"/>
<property name="XF86Calculator" type="empty"/>
<property name="startup-notify" type="empty"/>
</property>
</property>
<property name="custom" type="empty">
<property name="&lt;Super&gt;r" type="string" value="xfce4-appfinder -c">
<property name="XF86AudioPlay" type="string" value="pragha --pause"/>
<property name="XF86AudioMedia" type="string" value="pragha"/>
<property name="XF86Explorer" type="string" value="Thunar"/>
<property name="XF86AudioNext" type="string" value="pragha --next"/>
<property name="XF86Terminal" type="string" value="xfce4-terminal"/>
<property name="XF86AudioPrev" type="string" value="pragha --prev"/>
<property name="XF86Memo" type="string" value="xfce4-notes"/>
<property name="startup-notify" type="bool" value="true"/>
<property name="XF86Calculator" type="string" value="galculator"/>
<property name="XF86Calendar" type="string" value="orage"/>
</property>
<property name="&lt;Alt&gt;F3" type="string" value="xfce4-appfinder">
<property name="startup-notify" type="bool" value="true"/>
</property>
<property name="&lt;Primary&gt;&lt;Alt&gt;Delete" type="string" value="xfce4-session-logout"/>
<property name="&lt;Alt&gt;F1" type="string" value="xfce4-popup-applicationsmenu"/>
<property name="Print" type="string" value="xfce4-screenshooter"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Escape" type="string" value="xkill"/>
<property name="&lt;Alt&gt;F2" type="string" value="xfce4-appfinder --collapsed">
<property name="startup-notify" type="bool" value="true"/>
</property>
<property name="&lt;Primary&gt;Escape" type="string" value="xfdesktop --menu"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;Escape" type="string" value="xfce4-taskmanager"/>
<property name="XF86LogOff" type="string" value="xfce4-session-logout"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;f" type="string" value="thunar"/>
<property name="&lt;Alt&gt;Print" type="string" value="xfce4-screenshooter -w"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;l" type="string" value="xflock4"/>
<property name="XF86Display" type="string" value="xfce4-display-settings --minimal"/>
<property name="&lt;Shift&gt;Print" type="string" value="xfce4-screenshooter -r"/>
<property name="&lt;Super&gt;p" type="string" value="xfce4-display-settings --minimal"/>
<property name="&lt;Super&gt;e" type="string" value="thunar"/>
<property name="override" type="bool" value="true"/>
<property name="&lt;Super&gt;w" type="string" value="exo-open --launch WebBrowser"/>
<property name="&lt;Super&gt;t" type="string" value="exo-open --launch TerminalEmulator"/>
<property name="&lt;Super&gt;s" type="string" value="xfce4-popup-whiskermenu"/>
</property>
</property>
<property name="xfwm4" type="empty">
<property name="default" type="empty">
<property name="&lt;Alt&gt;Insert" type="empty"/>
<property name="Escape" type="empty"/>
<property name="Left" type="empty"/>
<property name="Right" type="empty"/>
<property name="Up" type="empty"/>
<property name="Down" type="empty"/>
<property name="&lt;Alt&gt;Tab" type="empty"/>
<property name="&lt;Alt&gt;&lt;Shift&gt;Tab" type="empty"/>
<property name="&lt;Alt&gt;Delete" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Down" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Left" type="empty"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Down" type="empty"/>
<property name="&lt;Alt&gt;F4" type="empty"/>
<property name="&lt;Alt&gt;F6" type="empty"/>
<property name="&lt;Alt&gt;F7" type="empty"/>
<property name="&lt;Alt&gt;F8" type="empty"/>
<property name="&lt;Alt&gt;F9" type="empty"/>
<property name="&lt;Alt&gt;F10" type="empty"/>
<property name="&lt;Alt&gt;F11" type="empty"/>
<property name="&lt;Alt&gt;F12" type="empty"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Left" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;End" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Home" type="empty"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Right" type="empty"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Up" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_1" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_2" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_3" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_4" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_5" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_6" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_7" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_8" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_9" type="empty"/>
<property name="&lt;Alt&gt;space" type="empty"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Up" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Right" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;d" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Up" type="empty"/>
<property name="&lt;Super&gt;Tab" type="empty"/>
<property name="&lt;Primary&gt;F1" type="empty"/>
<property name="&lt;Primary&gt;F2" type="empty"/>
<property name="&lt;Primary&gt;F3" type="empty"/>
<property name="&lt;Primary&gt;F4" type="empty"/>
<property name="&lt;Primary&gt;F5" type="empty"/>
<property name="&lt;Primary&gt;F6" type="empty"/>
<property name="&lt;Primary&gt;F7" type="empty"/>
<property name="&lt;Primary&gt;F8" type="empty"/>
<property name="&lt;Primary&gt;F9" type="empty"/>
<property name="&lt;Primary&gt;F10" type="empty"/>
<property name="&lt;Primary&gt;F11" type="empty"/>
<property name="&lt;Primary&gt;F12" type="empty"/>
<property name="&lt;Super&gt;KP_Left" type="empty"/>
<property name="&lt;Super&gt;KP_Right" type="empty"/>
<property name="&lt;Super&gt;KP_Up" type="empty"/>
<property name="&lt;Super&gt;KP_Down" type="empty"/>
<property name="&lt;Super&gt;KP_Page_Up" type="empty"/>
<property name="&lt;Super&gt;KP_Home" type="empty"/>
<property name="&lt;Super&gt;KP_End" type="empty"/>
<property name="&lt;Super&gt;KP_Next" type="empty"/>
</property>
<property name="custom" type="empty">
<property name="&lt;Primary&gt;F12" type="string" value="workspace_12_key"/>
<property name="&lt;Super&gt;KP_Down" type="string" value="tile_up_key"/>
<property name="&lt;Alt&gt;F4" type="string" value="close_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_3" type="string" value="move_window_workspace_3_key"/>
<property name="&lt;Primary&gt;F2" type="string" value="workspace_2_key"/>
<property name="&lt;Primary&gt;F6" type="string" value="workspace_6_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Down" type="string" value="down_workspace_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_9" type="string" value="move_window_workspace_9_key"/>
<property name="&lt;Super&gt;KP_Up" type="string" value="tile_down_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;End" type="string" value="move_window_next_workspace_key"/>
<property name="&lt;Primary&gt;F8" type="string" value="workspace_8_key"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Left" type="string" value="move_window_left_key"/>
<property name="&lt;Super&gt;KP_Right" type="string" value="tile_right_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_4" type="string" value="move_window_workspace_4_key"/>
<property name="Right" type="string" value="right_key"/>
<property name="Down" type="string" value="down_key"/>
<property name="&lt;Primary&gt;F3" type="string" value="workspace_3_key"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Down" type="string" value="lower_window_key"/>
<property name="&lt;Primary&gt;F9" type="string" value="workspace_9_key"/>
<property name="&lt;Alt&gt;Tab" type="string" value="cycle_windows_key"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Right" type="string" value="move_window_right_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Right" type="string" value="right_workspace_key"/>
<property name="&lt;Alt&gt;F6" type="string" value="stick_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_5" type="string" value="move_window_workspace_5_key"/>
<property name="&lt;Primary&gt;F11" type="string" value="workspace_11_key"/>
<property name="&lt;Alt&gt;F10" type="string" value="maximize_window_key"/>
<property name="&lt;Alt&gt;Delete" type="string" value="del_workspace_key"/>
<property name="&lt;Super&gt;Tab" type="string" value="switch_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;d" type="string" value="show_desktop_key"/>
<property name="&lt;Primary&gt;F4" type="string" value="workspace_4_key"/>
<property name="&lt;Super&gt;KP_Page_Up" type="string" value="tile_up_right_key"/>
<property name="&lt;Alt&gt;F7" type="string" value="move_window_key"/>
<property name="Up" type="string" value="up_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_6" type="string" value="move_window_workspace_6_key"/>
<property name="&lt;Alt&gt;F11" type="string" value="fullscreen_key"/>
<property name="&lt;Alt&gt;space" type="string" value="popup_menu_key"/>
<property name="&lt;Super&gt;KP_Home" type="string" value="tile_up_left_key"/>
<property name="Escape" type="string" value="cancel_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_1" type="string" value="move_window_workspace_1_key"/>
<property name="&lt;Super&gt;KP_Next" type="string" value="tile_down_right_key"/>
<property name="&lt;Super&gt;KP_Left" type="string" value="tile_left_key"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Up" type="string" value="raise_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Home" type="string" value="move_window_prev_workspace_key"/>
<property name="&lt;Alt&gt;&lt;Shift&gt;Tab" type="string" value="cycle_reverse_windows_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Left" type="string" value="left_workspace_key"/>
<property name="&lt;Alt&gt;F12" type="string" value="above_key"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Up" type="string" value="move_window_up_key"/>
<property name="&lt;Primary&gt;F5" type="string" value="workspace_5_key"/>
<property name="&lt;Alt&gt;F8" type="string" value="resize_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_7" type="string" value="move_window_workspace_7_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_2" type="string" value="move_window_workspace_2_key"/>
<property name="&lt;Super&gt;KP_End" type="string" value="tile_down_left_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Up" type="string" value="up_workspace_key"/>
<property name="&lt;Alt&gt;F9" type="string" value="hide_window_key"/>
<property name="&lt;Primary&gt;F7" type="string" value="workspace_7_key"/>
<property name="&lt;Primary&gt;F10" type="string" value="workspace_10_key"/>
<property name="Left" type="string" value="left_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_8" type="string" value="move_window_workspace_8_key"/>
<property name="&lt;Alt&gt;Insert" type="string" value="add_workspace_key"/>
<property name="&lt;Primary&gt;F1" type="string" value="workspace_1_key"/>
<property name="override" type="bool" value="true"/>
</property>
</property>
<property name="providers" type="array">
<value type="string" value="xfwm4"/>
<value type="string" value="commands"/>
</property>
</channel>

View File

@ -4,155 +4,327 @@
<property name="configver" type="int" value="2"/>
<property name="panels" type="array">
<value type="int" value="1"/>
<property name="dark-mode" type="bool" value="true"/>
<property name="dark-mode" type="bool" value="false"/>
<property name="panel-1" type="empty">
<property name="autohide-behavior" type="uint" value="1"/>
<property name="background-style" type="uint" value="1"/>
<property name="icon-size" type="uint" value="0"/>
<property name="length" type="uint" value="100"/>
<property name="mode" type="uint" value="0"/>
<property name="position" type="string" value="p=5;x=2040;y=468"/>
<property name="length" type="double" value="100"/>
<property name="position-locked" type="bool" value="true"/>
<property name="icon-size" type="uint" value="16"/>
<property name="size" type="uint" value="38"/>
<property name="plugin-ids" type="array">
<value type="int" value="1"/>
<value type="int" value="20"/>
<value type="int" value="5"/>
<value type="int" value="4"/>
<value type="int" value="13"/>
<value type="int" value="2"/>
<value type="int" value="3"/>
<value type="int" value="10"/>
<value type="int" value="6"/>
<value type="int" value="19"/>
<value type="int" value="9"/>
<value type="int" value="23"/>
<value type="int" value="8"/>
<value type="int" value="4"/>
<value type="int" value="3"/>
<value type="int" value="2"/>
<value type="int" value="5"/>
<value type="int" value="18"/>
<value type="int" value="12"/>
<value type="int" value="11"/>
<value type="int" value="14"/>
<value type="int" value="19"/>
<value type="int" value="6"/>
<value type="int" value="15"/>
<value type="int" value="11"/>
<value type="int" value="16"/>
<value type="int" value="21"/>
<value type="int" value="7"/>
<value type="int" value="13"/>
<value type="int" value="12"/>
</property>
<property name="output-name" type="string" value="Primary"/>
<property name="span-monitors" type="bool" value="false"/>
<property name="length-adjust" type="bool" value="true"/>
<property name="autohide-behavior" type="uint" value="0"/>
<property name="enable-struts" type="bool" value="true"/>
<property name="nrows" type="uint" value="1"/>
<property name="background-style" type="uint" value="1"/>
<property name="background-rgba" type="array">
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="0"/>
</property>
<property name="position" type="string" value="p=8;x=683;y=754"/>
<property name="position-locked" type="bool" value="true"/>
<property name="size" type="uint" value="26"/>
<property name="disable-struts" type="bool" value="false"/>
</property>
</property>
<property name="plugins" type="empty">
<property name="clipman" type="empty">
<property name="tweaks" type="empty">
<property name="paste-on-activate" type="uint" value="0"/>
</property>
</property>
<property name="plugin-10" type="string" value="notification-plugin"/>
<property name="plugin-11" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-12" type="string" value="clock">
<property name="mode" type="uint" value="2"/>
</property>
<property name="plugin-13" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-14" type="string" value="actions"/>
<property name="plugin-2" type="string" value="tasklist">
<property name="flat-buttons" type="bool" value="true"/>
<property name="grouping" type="uint" value="0"/>
<property name="middle-click" type="uint" value="1"/>
<property name="grouping" type="bool" value="false"/>
<property name="flat-buttons" type="bool" value="false"/>
<property name="show-labels" type="bool" value="false"/>
<property name="show-handle" type="bool" value="false"/>
<property name="show-labels" type="bool" value="true"/>
<property name="switch-workspace-on-unminimize" type="bool" value="true"/>
<property name="sort-order" type="uint" value="1"/>
<property name="show-tooltips" type="bool" value="false"/>
<property name="include-all-workspaces" type="bool" value="false"/>
<property name="window-scrolling" type="bool" value="true"/>
<property name="show-wireframes" type="bool" value="false"/>
<property name="sort-order" type="uint" value="0"/>
<property name="include-all-monitors" type="bool" value="true"/>
<property name="show-only-minimized" type="bool" value="false"/>
</property>
<property name="plugin-3" type="string" value="separator">
<property name="expand" type="bool" value="true"/>
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-4" type="string" value="pager">
<property name="rows" type="uint" value="2"/>
<property name="miniature-view" type="bool" value="true"/>
<property name="numbering" type="bool" value="false"/>
<property name="rows" type="uint" value="1"/>
<property name="miniature-view" type="bool" value="false"/>
<property name="wrap-workspaces" type="bool" value="false"/>
<property name="workspace-scrolling" type="bool" value="false"/>
</property>
<property name="plugin-5" type="string" value="separator">
<property name="expand" type="bool" value="false"/>
<property name="style" type="uint" value="0"/>
<property name="expand" type="bool" value="true"/>
</property>
<property name="plugin-6" type="string" value="systray">
<property name="known-items" type="array">
<value type="string" value="ProtonVPN Tray"/>
<value type="string" value="vlc"/>
<value type="string" value="qBittorrent"/>
<value type="string" value="steam"/>
<value type="string" value="redshift"/>
<value type="string" value="kleopatra"/>
<value type="string" value="blueman"/>
<value type="string" value="MEGAsync"/>
<value type="string" value="dnfdragora-updater"/>
</property>
<property name="square-icons" type="bool" value="true"/>
<property name="known-legacy-items" type="array">
<value type="string" value="pragha music player"/>
<value type="string" value="calfjackhost"/>
<value type="string" value="pa-applet"/>
<value type="string" value="sticky.py"/>
<value type="string" value="tomboy-reborn"/>
<value type="string" value="javaembeddedframe"/>
<value type="string" value="redshift-gtk"/>
<value type="string" value="megasync"/>
<value type="string" value="ibus-ui-gtk3"/>
<value type="string" value="thunar"/>
<value type="string" value="seapplet"/>
<value type="string" value="blueberry-tray.py"/>
<value type="string" value="xfce4-power-manager"/>
<value type="string" value="steam"/>
<value type="string" value="no network connection"/>
<value type="string" value="ethernet network connection “wired connection 1” active"/>
<value type="string" value="firewall-applet"/>
<value type="string" value="networkmanager applet"/>
</property>
<property name="square-icons" type="bool" value="true"/>
<property name="menu-is-primary" type="bool" value="false"/>
<property name="symbolic-icons" type="bool" value="false"/>
<property name="hide-new-items" type="bool" value="true"/>
<property name="icon-size" type="int" value="16"/>
<property name="hidden-legacy-items" type="array">
<value type="string" value="sticky.py"/>
<value type="string" value="networkmanager applet"/>
<value type="string" value="firewall-applet"/>
<value type="string" value="steam"/>
<value type="string" value="redshift-gtk"/>
<value type="string" value="javaembeddedframe"/>
<value type="string" value="tomboy-reborn"/>
<value type="string" value="ethernet network connection “wired connection 1” active"/>
<value type="string" value="no network connection"/>
</property>
<property name="known-items" type="array">
<value type="string" value="vlc"/>
<value type="string" value="Sticky Notes"/>
<value type="string" value="znotes"/>
<value type="string" value="xpad"/>
<value type="string" value="obs"/>
<value type="string" value="steam"/>
<value type="string" value="chrome_status_icon_1"/>
<value type="string" value="redshift"/>
<value type="string" value="flameshot"/>
<value type="string" value="firewall-applet"/>
</property>
<property name="single-row" type="bool" value="true"/>
<property name="hidden-items" type="array">
<value type="string" value="Sticky Notes"/>
<value type="string" value="redshift"/>
<value type="string" value="firewall-applet"/>
<value type="string" value="steam"/>
<value type="string" value="chrome_status_icon_1"/>
<value type="string" value="flameshot"/>
<value type="string" value="vlc"/>
<value type="string" value="obs"/>
<value type="string" value="xpad"/>
<value type="string" value="znotes"/>
</property>
</property>
<property name="plugin-7" type="string" value="separator">
<property name="plugin-11" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-9" type="string" value="power-manager-plugin"/>
<property name="plugin-15" type="string" value="separator">
<property name="style" type="uint" value="0"/>
<property name="expand" type="bool" value="false"/>
<property name="plugin-12" type="string" value="clock">
<property name="digital-layout" type="uint" value="2"/>
<property name="digital-date-format" type="string" value="%Y/%m/%d %H:%M"/>
<property name="digital-date-font" type="string" value="Ubuntu 10.5"/>
</property>
<property name="plugin-20" type="string" value="whiskermenu"/>
<property name="plugin-1" type="string" value="separator">
<property name="plugin-13" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-16" type="string" value="systemload">
<property name="network" type="empty">
<property name="enabled" type="bool" value="true"/>
<property name="label" type="string" value=""/>
<property name="plugin-1" type="string" value="whiskermenu">
<property name="favorites" type="array">
</property>
<property name="swap" type="empty">
<property name="enabled" type="bool" value="true"/>
<property name="label" type="string" value=""/>
</property>
<property name="uptime" type="empty">
<property name="enabled" type="bool" value="false"/>
</property>
<property name="cpu" type="empty">
<property name="label" type="string" value=""/>
<property name="color" type="array">
<value type="double" value="0.200000"/>
<value type="double" value="0.819608"/>
<value type="double" value="0.478431"/>
<value type="double" value="1.000000"/>
</property>
</property>
<property name="memory" type="empty">
<property name="label" type="string" value=""/>
<property name="color" type="array">
<value type="double" value="0.000000"/>
<value type="double" value="0.000000"/>
<value type="double" value="0.752941"/>
<value type="double" value="1.000000"/>
</property>
<property name="view-mode" type="int" value="1"/>
<property name="default-category" type="int" value="2"/>
<property name="position-categories-alternate" type="bool" value="true"/>
<property name="recent" type="array">
<value type="string" value="codium.desktop"/>
<value type="string" value="steam.desktop"/>
<value type="string" value="arandr.desktop"/>
<value type="string" value="firefox.desktop"/>
<value type="string" value="thunar.desktop"/>
<value type="string" value="thunar-volman-settings.desktop"/>
<value type="string" value="wine-Programs-Image-Line-FL Studio 10-FL Studio 10.desktop"/>
<value type="string" value="net.lutris.Lutris.desktop"/>
<value type="string" value="stoken-gui-small.desktop"/>
<value type="string" value="reflector-simple.desktop"/>
</property>
<property name="position-profile-alternate" type="bool" value="true"/>
<property name="show-command-profile" type="bool" value="false"/>
<property name="show-command-menueditor" type="bool" value="false"/>
<property name="show-command-logout" type="bool" value="false"/>
<property name="show-command-lockscreen" type="bool" value="false"/>
<property name="show-command-settings" type="bool" value="false"/>
<property name="command-logout" type="string" value="~/.config/i3/scripts/powermenu"/>
<property name="show-button-icon" type="bool" value="true"/>
<property name="show-button-title" type="bool" value="true"/>
<property name="button-icon" type="string" value="endeavouros-icon"/>
<property name="button-title" type="string" value="apps"/>
</property>
<property name="plugin-18" type="string" value="separator">
<property name="plugin-8" type="string" value="separator">
<property name="style" type="uint" value="0"/>
<property name="expand" type="bool" value="false"/>
</property>
<property name="plugin-19" type="string" value="pulseaudio">
<property name="plugin-15" type="string" value="pulseaudio">
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
<property name="mpris-players" type="string" value="firefox.instance128524;firefox.instance1447;firefox.instance1451;firefox.instance1467;firefox.instance1476;firefox.instance1488;firefox.instance1499;firefox.instance1513;firefox.instance15158;firefox.instance1517;firefox.instance1520;firefox.instance1525;firefox.instance1540;firefox.instance155209;firefox.instance1673;firefox.instance1714;firefox.instance2072;firefox.instance2433;firefox.instance28749;firefox.instance55567;firefox.instance97819;firefox.instance97913;pragha;spotify;vlc"/>
<property name="known-players" type="string" value="Chromium;discord-screenaudio;firefox;io.github.celluloid_player.Celluloid;vlc"/>
<property name="persistent-players" type="string" value=""/>
<property name="show-notifications" type="uint" value="0"/>
<property name="play-sound" type="bool" value="false"/>
</property>
<property name="plugin-18" type="string" value="weather">
<property name="location" type="empty">
<property name="name" type="string" value="Tullamore, Ireland"/>
<property name="latitude" type="string" value="51.896700"/>
<property name="longitude" type="string" value="-8.468300"/>
</property>
<property name="msl" type="int" value="6"/>
<property name="timezone" type="string" value="Europe/Dublin"/>
<property name="offset" type="string" value="+00:00"/>
<property name="cache-max-age" type="int" value="172800"/>
<property name="power-saving" type="bool" value="true"/>
<property name="units" type="empty">
<property name="temperature" type="int" value="0"/>
<property name="pressure" type="int" value="2"/>
<property name="windspeed" type="int" value="0"/>
<property name="precipitation" type="int" value="0"/>
<property name="altitude" type="int" value="0"/>
<property name="apparent-temperature" type="int" value="0"/>
</property>
<property name="round" type="bool" value="true"/>
<property name="single-row" type="bool" value="false"/>
<property name="tooltip-style" type="int" value="0"/>
<property name="forecast" type="empty">
<property name="layout" type="int" value="1"/>
<property name="days" type="int" value="5"/>
</property>
<property name="theme-dir" type="string" value="/usr/share/xfce4/weather/icons/simplistic"/>
<property name="scrollbox" type="empty">
<property name="show" type="bool" value="true"/>
<property name="animate" type="bool" value="false"/>
<property name="lines" type="int" value="1"/>
<property name="color" type="string" value="rgba(0,0,0,0)"/>
<property name="use-color" type="bool" value="false"/>
</property>
<property name="labels" type="empty">
<property name="label0" type="int" value="3"/>
</property>
</property>
<property name="plugin-19" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-10" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-16" type="string" value="genmon">
<property name="command" type="string" value="tiny-uptime"/>
<property name="use-label" type="bool" value="false"/>
<property name="text" type="string" value="uptime"/>
<property name="update-period" type="int" value="60000"/>
<property name="enable-single-row" type="bool" value="true"/>
<property name="font" type="string" value="Cantarell 11"/>
</property>
<property name="plugin-21" type="string" value="cpugraph">
<property name="update-interval" type="int" value="2"/>
<property name="time-scale" type="int" value="0"/>
<property name="size" type="int" value="16"/>
<property name="mode" type="int" value="1"/>
<property name="color-mode" type="int" value="0"/>
<property name="frame" type="int" value="0"/>
<property name="border" type="int" value="0"/>
<property name="bars" type="int" value="0"/>
<property name="per-core" type="int" value="0"/>
<property name="tracked-core" type="int" value="0"/>
<property name="in-terminal" type="int" value="1"/>
<property name="startup-notification" type="int" value="0"/>
<property name="load-threshold" type="int" value="0"/>
<property name="smt-stats" type="int" value="1"/>
<property name="smt-issues" type="int" value="1"/>
<property name="per-core-spacing" type="int" value="1"/>
<property name="command" type="string" value=""/>
<property name="background" type="array">
<value type="double" value="1"/>
<value type="double" value="1"/>
<value type="double" value="1"/>
<value type="double" value="0"/>
</property>
<property name="foreground-1" type="array">
<value type="double" value="0"/>
<value type="double" value="1"/>
<value type="double" value="0"/>
<value type="double" value="1"/>
</property>
<property name="foreground-2" type="array">
<value type="double" value="1"/>
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="1"/>
</property>
<property name="foreground-3" type="array">
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="1"/>
<value type="double" value="1"/>
</property>
<property name="smt-issues-color" type="array">
<value type="double" value="0.90000000000000002"/>
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="1"/>
</property>
<property name="foreground-system" type="array">
<value type="double" value="0.90000000000000002"/>
<value type="double" value="0.10000000000000001"/>
<value type="double" value="0.10000000000000001"/>
<value type="double" value="1"/>
</property>
<property name="foreground-user" type="array">
<value type="double" value="0.10000000000000001"/>
<value type="double" value="0.40000000000000002"/>
<value type="double" value="0.90000000000000002"/>
<value type="double" value="1"/>
</property>
<property name="foreground-nice" type="array">
<value type="double" value="0.90000000000000002"/>
<value type="double" value="0.80000000000000004"/>
<value type="double" value="0.20000000000000001"/>
<value type="double" value="1"/>
</property>
<property name="foreground-iowait" type="array">
<value type="double" value="0.20000000000000001"/>
<value type="double" value="0.90000000000000002"/>
<value type="double" value="0.40000000000000002"/>
<value type="double" value="1"/>
</property>
</property>
<property name="plugin-7" type="string" value="genmon">
<property name="command" type="string" value="tiny-temp"/>
<property name="use-label" type="bool" value="false"/>
<property name="text" type="string" value="cpu temperature"/>
<property name="update-period" type="int" value="5000"/>
<property name="enable-single-row" type="bool" value="true"/>
<property name="font" type="string" value="Cantarell 11"/>
</property>
<property name="plugin-23" type="string" value="launcher">
<property name="items" type="array">
<value type="string" value="primary-action.desktop"/>
<value type="string" value="lilascript.desktop"/>
<value type="string" value="todo.desktop"/>
<value type="string" value="monitor shelf.desktop"/>
<value type="string" value="website.desktop"/>
<value type="string" value="moon.desktop"/>
</property>
<property name="show-label" type="bool" value="false"/>
<property name="move-first" type="bool" value="false"/>
<property name="disable-tooltips" type="bool" value="false"/>
<property name="arrow-position" type="uint" value="3"/>
</property>
</property>
</channel>

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-terminal" version="1.0">
<property name="background-mode" type="string" value="TERMINAL_BACKGROUND_TRANSPARENT"/>
<property name="background-darkness" type="double" value="1"/>
<property name="color-foreground" type="string" value="#f6f6f5f5f4f4"/>
<property name="color-background" type="string" value="#111111111111"/>
<property name="color-cursor-foreground" type="string" value=""/>
<property name="color-cursor" type="string" value="#eeeebfbfffff"/>
<property name="color-cursor-use-default" type="bool" value="false"/>
<property name="color-bold" type="string" value=""/>
<property name="color-palette" type="string" value="rgb(17,17,17);rgb(204,0,0);rgb(78,154,6);rgb(196,160,0);rgb(52,101,164);rgb(97,53,131);rgb(6,152,154);rgb(211,215,207);rgb(85,87,83);rgb(239,41,41);rgb(138,226,52);rgb(252,233,79);rgb(115,159,207);rgb(220,138,221);rgb(52,226,226);rgb(246,245,244)"/>
<property name="color-bold-is-bright" type="bool" value="false"/>
<property name="font-name" type="string" value="Source Code Pro 10"/>
<property name="misc-always-show-tabs" type="bool" value="false"/>
<property name="misc-bell" type="bool" value="false"/>
<property name="misc-bell-urgent" type="bool" value="true"/>
<property name="misc-borders-default" type="bool" value="true"/>
<property name="misc-cursor-blinks" type="bool" value="true"/>
<property name="misc-cursor-shape" type="string" value="TERMINAL_CURSOR_SHAPE_BLOCK"/>
<property name="misc-default-geometry" type="string" value="100x30"/>
<property name="misc-inherit-geometry" type="bool" value="false"/>
<property name="misc-menubar-default" type="bool" value="false"/>
<property name="misc-mouse-autohide" type="bool" value="false"/>
<property name="misc-mouse-wheel-zoom" type="bool" value="true"/>
<property name="misc-toolbar-default" type="bool" value="false"/>
<property name="misc-confirm-close" type="bool" value="false"/>
<property name="misc-cycle-tabs" type="bool" value="true"/>
<property name="misc-tab-close-buttons" type="bool" value="true"/>
<property name="misc-tab-close-middle-click" type="bool" value="true"/>
<property name="misc-tab-position" type="string" value="GTK_POS_TOP"/>
<property name="misc-highlight-urls" type="bool" value="true"/>
<property name="misc-middle-click-opens-uri" type="bool" value="true"/>
<property name="misc-copy-on-select" type="bool" value="false"/>
<property name="misc-show-relaunch-dialog" type="bool" value="true"/>
<property name="misc-rewrap-on-resize" type="bool" value="true"/>
<property name="misc-slim-tabs" type="bool" value="false"/>
<property name="misc-new-tab-adjacent" type="bool" value="false"/>
<property name="misc-search-dialog-opacity" type="uint" value="100"/>
<property name="misc-show-unsafe-paste-dialog" type="bool" value="false"/>
<property name="scrolling-bar" type="string" value="TERMINAL_SCROLLBAR_NONE"/>
<property name="scrolling-unlimited" type="bool" value="true"/>
<property name="tab-activity-color" type="string" value="#aa0000"/>
<property name="color-background-vary" type="bool" value="false"/>
<property name="color-selection" type="string" value=""/>
<property name="color-selection-background" type="string" value="#4b174b174b17"/>
<property name="color-selection-use-default" type="bool" value="false"/>
<property name="color-bold-use-default" type="bool" value="true"/>
<property name="color-use-theme" type="bool" value="false"/>
<property name="title-mode" type="string" value="TERMINAL_TITLE_REPLACE"/>
<property name="font-use-system" type="bool" value="true"/>
<property name="command-login-shell" type="bool" value="true"/>
</channel>

5
.gitconfig Normal file
View File

@ -0,0 +1,5 @@
[user]
name = sophie
email = zvava@disroot.org
[credential]
helper = store

View File

@ -0,0 +1,8 @@
[Desktop Entry]
Name=Celeste
Comment=Play this game on Steam
Exec=steam steam://rungameid/504230
Icon=steam_icon_504230
Terminal=false
Type=Application
Categories=Game;

View File

@ -0,0 +1,8 @@
[Desktop Entry]
Name=Need for Speed
Comment=Play this game on Steam
Exec=steam steam://rungameid/1262540
Icon=steam_icon_1262540
Terminal=false
Type=Application
Categories=Game;

View File

@ -0,0 +1,11 @@
[Desktop Entry]
Name=Proton Experimental
Comment=Play this game on Steam
Exec=/home/zvava/.scripts/homewrap steam steam://rungameid/1493710
Icon=steam
Terminal=false
Type=Application
Categories=Game;
Path=
StartupNotify=false
Hidden=true

View File

@ -0,0 +1,12 @@
[Desktop Entry]
Name=ARandR
GenericName=Screen Settings
GenericName[de]=Bildschirmeinstellungen
Icon=display
Exec=/home/zvava/.scripts/homewrap arandr
Terminal=false
Type=Application
Categories=Settings;HardwareSettings;
StartupNotify=true
Comment=
Path=

View File

@ -0,0 +1,89 @@
[Desktop Entry]
Version=1.0
Name=Avahi Zeroconf Browser
Name[bg]=Avahi Zeroconf Browser
Name[ca]=Avahi Zeroconf Browser
Name[cs]=Avahi Zeroconf Browser
Name[da]=Avahi Zeroconf Browser
Name[de]=Avahi Zeroconf Browser
Name[el]=Avahi Zeroconf Browser
Name[en_GB]=Avahi Zeroconf Browser
Name[en_NZ]=Avahi Zeroconf Browser
Name[es]=Avahi Zeroconf Browser
Name[et]=Avahi Zeroconf Browser
Name[fa]=Avahi Zeroconf Browser
Name[fi]=Avahi Zeroconf Browser
Name[fo]=Avahi Zeroconf Browser
Name[fr]=Avahi Zeroconf Browser
Name[gl]=Avahi Zeroconf Browser
Name[he]=Avahi Zeroconf Browser
Name[hr]=Avahi Zeroconf Browser
Name[hu]=Avahi Zeroconf Browser
Name[id]=Avahi Zeroconf Browser
Name[it]=Avahi Zeroconf Browser
Name[ja]=Avahi Zeroconf Browser
Name[ka]=Avahi Zeroconf Browser
Name[lv]=Avahi Zeroconf Browser
Name[nl]=Avahi Zeroconf Browser
Name[oc]=Avahi Zeroconf Browser
Name[pl]=Avahi Zeroconf Browser
Name[pt_BR]=Avahi Zeroconf Browser
Name[ro]=Avahi Zeroconf Browser
Name[ru]=Avahi Zeroconf Browser
Name[sk]=Avahi Zeroconf Browser
Name[sl]=Avahi Zeroconf Browser
Name[sr]=Avahi Zeroconf Browser
Name[sr@latin]=Avahi Zeroconf Browser
Name[sv]=Avahi Zeroconf Browser
Name[tr]=Avahi Zeroconf Browser
Name[uk]=Avahi Zeroconf Browser
Name[zh_CN]=Avahi Zeroconf Browser
Name[zh_TW]=Avahi Zeroconf Browser
Comment=Browse for Zeroconf services available on your network
Comment[ar]=Browse for Zeroconf services available on your network
Comment[bg]=Browse for Zeroconf services available on your network
Comment[ca]=Browse for Zeroconf services available on your network
Comment[cs]=Browse for Zeroconf services available on your network
Comment[da]=Browse for Zeroconf services available on your network
Comment[de]=Browse for Zeroconf services available on your network
Comment[el]=Browse for Zeroconf services available on your network
Comment[en_GB]=Browse for Zeroconf services available on your network
Comment[en_NZ]=Browse for Zeroconf services available on your network
Comment[es]=Browse for Zeroconf services available on your network
Comment[et]=Browse for Zeroconf services available on your network
Comment[fa]=Browse for Zeroconf services available on your network
Comment[fi]=Browse for Zeroconf services available on your network
Comment[fo]=Browse for Zeroconf services available on your network
Comment[fr]=Browse for Zeroconf services available on your network
Comment[gl]=Browse for Zeroconf services available on your network
Comment[he]=Browse for Zeroconf services available on your network
Comment[hr]=Browse for Zeroconf services available on your network
Comment[hu]=Browse for Zeroconf services available on your network
Comment[id]=Browse for Zeroconf services available on your network
Comment[it]=Browse for Zeroconf services available on your network
Comment[ja]=Browse for Zeroconf services available on your network
Comment[ka]=Browse for Zeroconf services available on your network
Comment[lv]=Browse for Zeroconf services available on your network
Comment[nl]=Browse for Zeroconf services available on your network
Comment[oc]=Browse for Zeroconf services available on your network
Comment[pl]=Browse for Zeroconf services available on your network
Comment[pt_BR]=Browse for Zeroconf services available on your network
Comment[ro]=Browse for Zeroconf services available on your network
Comment[ru]=Browse for Zeroconf services available on your network
Comment[sk]=Browse for Zeroconf services available on your network
Comment[sl]=Browse for Zeroconf services available on your network
Comment[sr]=Browse for Zeroconf services available on your network
Comment[sr@latin]=Browse for Zeroconf services available on your network
Comment[sv]=Browse for Zeroconf services available on your network
Comment[tr]=Browse for Zeroconf services available on your network
Comment[uk]=Browse for Zeroconf services available on your network
Comment[zh_CN]=Browse for Zeroconf services available on your network
Comment[zh_TW]=Browse for Zeroconf services available on your network
Exec=/usr/bin/avahi-discover
Terminal=false
Type=Application
Icon=network-wired
Categories=GNOME;System;
StartupNotify=false
Hidden=true

View File

@ -0,0 +1,84 @@
[Desktop Entry]
Version=1.0
Name=Avahi SSH Server Browser
Name[bg]=Avahi SSH Server Browser
Name[ca]=Avahi SSH Server Browser
Name[cs]=Avahi SSH Server Browser
Name[da]=Avahi SSH Server Browser
Name[de]=Avahi SSH Server Browser
Name[el]=Avahi SSH Server Browser
Name[en_GB]=Avahi SSH Server Browser
Name[en_NZ]=Avahi SSH Server Browser
Name[es]=Avahi SSH Server Browser
Name[et]=Avahi SSH Server Browser
Name[fi]=Avahi SSH Server Browser
Name[fo]=Avahi SSH Server Browser
Name[fr]=Avahi SSH Server Browser
Name[gl]=Avahi SSH Server Browser
Name[hr]=Avahi SSH Server Browser
Name[hu]=Avahi SSH Server Browser
Name[id]=Avahi SSH Server Browser
Name[it]=Avahi SSH Server Browser
Name[ja]=Avahi SSH Server Browser
Name[ka]=Avahi SSH Server Browser
Name[lv]=Avahi SSH Server Browser
Name[nl]=Avahi SSH Server Browser
Name[oc]=Avahi SSH Server Browser
Name[pl]=Avahi SSH Server Browser
Name[pt_BR]=Avahi SSH Server Browser
Name[ro]=Avahi SSH Server Browser
Name[ru]=Avahi SSH Server Browser
Name[sk]=Avahi SSH Server Browser
Name[sl]=Avahi SSH Server Browser
Name[sr]=Avahi SSH Server Browser
Name[sr@latin]=Avahi SSH Server Browser
Name[sv]=Avahi SSH Server Browser
Name[tr]=Avahi SSH Server Browser
Name[uk]=Avahi SSH Server Browser
Name[zh_CN]=Avahi SSH Server Browser
Name[zh_TW]=Avahi SSH Server Browser
Comment=Browse for Zeroconf-enabled SSH Servers
Comment[bg]=Browse for Zeroconf-enabled SSH Servers
Comment[ca]=Browse for Zeroconf-enabled SSH Servers
Comment[cs]=Browse for Zeroconf-enabled SSH Servers
Comment[da]=Browse for Zeroconf-enabled SSH Servers
Comment[de]=Browse for Zeroconf-enabled SSH Servers
Comment[el]=Browse for Zeroconf-enabled SSH Servers
Comment[en_GB]=Browse for Zeroconf-enabled SSH Servers
Comment[en_NZ]=Browse for Zeroconf-enabled SSH Servers
Comment[es]=Browse for Zeroconf-enabled SSH Servers
Comment[et]=Browse for Zeroconf-enabled SSH Servers
Comment[fi]=Browse for Zeroconf-enabled SSH Servers
Comment[fo]=Browse for Zeroconf-enabled SSH Servers
Comment[fr]=Browse for Zeroconf-enabled SSH Servers
Comment[gl]=Browse for Zeroconf-enabled SSH Servers
Comment[hr]=Browse for Zeroconf-enabled SSH Servers
Comment[hu]=Browse for Zeroconf-enabled SSH Servers
Comment[id]=Browse for Zeroconf-enabled SSH Servers
Comment[it]=Browse for Zeroconf-enabled SSH Servers
Comment[ja]=Browse for Zeroconf-enabled SSH Servers
Comment[ka]=Browse for Zeroconf-enabled SSH Servers
Comment[lv]=Browse for Zeroconf-enabled SSH Servers
Comment[nl]=Browse for Zeroconf-enabled SSH Servers
Comment[oc]=Browse for Zeroconf-enabled SSH Servers
Comment[pl]=Browse for Zeroconf-enabled SSH Servers
Comment[pt_BR]=Browse for Zeroconf-enabled SSH Servers
Comment[ro]=Browse for Zeroconf-enabled SSH Servers
Comment[ru]=Browse for Zeroconf-enabled SSH Servers
Comment[sk]=Browse for Zeroconf-enabled SSH Servers
Comment[sl]=Browse for Zeroconf-enabled SSH Servers
Comment[sr]=Browse for Zeroconf-enabled SSH Servers
Comment[sr@latin]=Browse for Zeroconf-enabled SSH Servers
Comment[sv]=Browse for Zeroconf-enabled SSH Servers
Comment[tr]=Browse for Zeroconf-enabled SSH Servers
Comment[uk]=Browse for Zeroconf-enabled SSH Servers
Comment[zh_CN]=Browse for Zeroconf-enabled SSH Servers
Comment[zh_TW]=Browse for Zeroconf-enabled SSH Servers
Exec=/usr/bin/bssh
Terminal=false
Type=Application
Icon=network-wired
Categories=GNOME;Network;
StartupNotify=false
Hidden=true

View File

@ -0,0 +1,84 @@
[Desktop Entry]
Version=1.0
Name=Avahi VNC Server Browser
Name[bg]=Avahi VNC Server Browser
Name[ca]=Avahi VNC Server Browser
Name[cs]=Avahi VNC Server Browser
Name[da]=Avahi VNC Server Browser
Name[de]=Avahi VNC Server Browser
Name[el]=Avahi VNC Server Browser
Name[en_GB]=Avahi VNC Server Browser
Name[en_NZ]=Avahi VNC Server Browser
Name[es]=Avahi VNC Server Browser
Name[et]=Avahi VNC Server Browser
Name[fi]=Avahi VNC Server Browser
Name[fo]=Avahi VNC Server Browser
Name[fr]=Avahi VNC Server Browser
Name[gl]=Avahi VNC Server Browser
Name[hr]=Avahi VNC Server Browser
Name[hu]=Avahi VNC Server Browser
Name[id]=Avahi VNC Server Browser
Name[it]=Avahi VNC Server Browser
Name[ja]=Avahi VNC Server Browser
Name[ka]=Avahi VNC Server Browser
Name[lv]=Avahi VNC Server Browser
Name[nl]=Avahi VNC Server Browser
Name[oc]=Avahi VNC Server Browser
Name[pl]=Avahi VNC Server Browser
Name[pt_BR]=Avahi VNC Server Browser
Name[ro]=Avahi VNC Server Browser
Name[ru]=Avahi VNC Server Browser
Name[sk]=Avahi VNC Server Browser
Name[sl]=Avahi VNC Server Browser
Name[sr]=Avahi VNC Server Browser
Name[sr@latin]=Avahi VNC Server Browser
Name[sv]=Avahi VNC Server Browser
Name[tr]=Avahi VNC Server Browser
Name[uk]=Avahi VNC Server Browser
Name[zh_CN]=Avahi VNC Server Browser
Name[zh_TW]=Avahi VNC Server Browser
Comment=Browse for Zeroconf-enabled VNC Servers
Comment[bg]=Browse for Zeroconf-enabled VNC Servers
Comment[ca]=Browse for Zeroconf-enabled VNC Servers
Comment[cs]=Browse for Zeroconf-enabled VNC Servers
Comment[da]=Browse for Zeroconf-enabled VNC Servers
Comment[de]=Browse for Zeroconf-enabled VNC Servers
Comment[el]=Browse for Zeroconf-enabled VNC Servers
Comment[en_GB]=Browse for Zeroconf-enabled VNC Servers
Comment[en_NZ]=Browse for Zeroconf-enabled VNC Servers
Comment[es]=Browse for Zeroconf-enabled VNC Servers
Comment[et]=Browse for Zeroconf-enabled VNC Servers
Comment[fi]=Browse for Zeroconf-enabled VNC Servers
Comment[fo]=Browse for Zeroconf-enabled VNC Servers
Comment[fr]=Browse for Zeroconf-enabled VNC Servers
Comment[gl]=Browse for Zeroconf-enabled VNC Servers
Comment[hr]=Browse for Zeroconf-enabled VNC Servers
Comment[hu]=Browse for Zeroconf-enabled VNC Servers
Comment[id]=Browse for Zeroconf-enabled VNC Servers
Comment[it]=Browse for Zeroconf-enabled VNC Servers
Comment[ja]=Browse for Zeroconf-enabled VNC Servers
Comment[ka]=Browse for Zeroconf-enabled VNC Servers
Comment[lv]=Browse for Zeroconf-enabled VNC Servers
Comment[nl]=Browse for Zeroconf-enabled VNC Servers
Comment[oc]=Browse for Zeroconf-enabled VNC Servers
Comment[pl]=Browse for Zeroconf-enabled VNC Servers
Comment[pt_BR]=Browse for Zeroconf-enabled VNC Servers
Comment[ro]=Browse for Zeroconf-enabled VNC Servers
Comment[ru]=Browse for Zeroconf-enabled VNC Servers
Comment[sk]=Browse for Zeroconf-enabled VNC Servers
Comment[sl]=Browse for Zeroconf-enabled VNC Servers
Comment[sr]=Browse for Zeroconf-enabled VNC Servers
Comment[sr@latin]=Browse for Zeroconf-enabled VNC Servers
Comment[sv]=Browse for Zeroconf-enabled VNC Servers
Comment[tr]=Browse for Zeroconf-enabled VNC Servers
Comment[uk]=Browse for Zeroconf-enabled VNC Servers
Comment[zh_CN]=Browse for Zeroconf-enabled VNC Servers
Comment[zh_TW]=Browse for Zeroconf-enabled VNC Servers
Exec=/usr/bin/bvnc
Terminal=false
Type=Application
Icon=network-wired
Categories=GNOME;Network;
StartupNotify=false
Hidden=true

View File

@ -0,0 +1,20 @@
[Desktop Entry]
Name=VSCodium - Wayland
Comment=Code Editing. Redefined.
GenericName=Text Editor
Exec=/usr/bin/codium --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform=wayland --unity-launch %F
Icon=vscodium
Type=Application
StartupNotify=false
StartupWMClass=codium-url-handler
Categories=Utility;Development;IDE;
MimeType=text/plain;inode/directory;
Actions=new-empty-window;
Keywords=vscode;
Hidden=true
[Desktop Action new-empty-window]
Name=New Empty Window
Exec=/usr/bin/codium --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform=wayland --new-window %F
Icon=vscodium

View File

@ -0,0 +1,20 @@
[Desktop Entry]
Name=VSCodium
Comment=Code Editing. Redefined.
GenericName=Text Editor
Exec=/home/zvava/.scripts/homewrap /usr/bin/codium --unity-launch %F
Icon=vscodium
Type=Application
StartupNotify=false
StartupWMClass=VSCodium
Categories=Utility;Development;IDE;
MimeType=text/plain;inode/directory;
Actions=new-empty-window;
Keywords=vscode;
Path=
Terminal=false
[Desktop Action new-empty-window]
Name=New Empty Window
Exec=/usr/bin/codium --new-window %F
Icon=vscodium

View File

@ -0,0 +1,387 @@
[Desktop Entry]
Version=1.0
Name=Firefox Web Browser
Name[ar]=متصفح الويب فَيَرفُكْس
Name[ast]=Restolador web Firefox
Name[bn]=
Name[ca]=Navegador web Firefox
Name[cs]=Firefox Webový prohlížeč
Name[da]=Firefox - internetbrowser
Name[el]=Περιηγητής Firefox
Name[es]=Navegador web Firefox
Name[et]=Firefoxi veebibrauser
Name[fa]=مرورگر اینترنتی Firefox
Name[fi]=Firefox-selain
Name[fr]=Navigateur Web Firefox
Name[gl]=Navegador web Firefox
Name[he]=דפדפן האינטרנט Firefox
Name[hr]=Firefox web preglednik
Name[hu]=Firefox webböngésző
Name[it]=Firefox Browser Web
Name[ja]=Firefox
Name[ko]=Firefox
Name[ku]=Geroka torê Firefox
Name[lt]=Firefox interneto naršyklė
Name[nb]=Firefox Nettleser
Name[nl]=Firefox webbrowser
Name[nn]=Firefox Nettlesar
Name[no]=Firefox Nettleser
Name[pl]=Przeglądarka WWW Firefox
Name[pt]=Firefox Navegador Web
Name[pt_BR]=Navegador Web Firefox
Name[ro]=Firefox Navigator Internet
Name[ru]=Веб-браузер Firefox
Name[sk]=Firefox - internetový prehliadač
Name[sl]=Firefox spletni brskalnik
Name[sv]=Firefox webbläsare
Name[tr]=Firefox Web Tarayıcısı
Name[ug]=Firefox توركۆرگۈ
Name[uk]=Веб-браузер Firefox
Name[vi]=Trình duyt web Firefox
Name[zh_CN]=Firefox
Name[zh_TW]=Firefox
Comment=Browse the World Wide Web
Comment[ar]=تصفح الشبكة العنكبوتية العالمية
Comment[ast]=Restola pela Rede
Comment[bn]=
Comment[ca]=Navegueu per la web
Comment[cs]=Prohlížení stránek World Wide Webu
Comment[da]=Surf på internettet
Comment[de]=Im Internet surfen
Comment[el]=Μπορείτε να περιηγηθείτε στο διαδίκτυο (Web)
Comment[es]=Navegue por la web
Comment[et]=Lehitse veebi
Comment[fa]=صفحات شبکه جهانی اینترنت را مرور نمایید
Comment[fi]=Selaa Internetin WWW-sivuja
Comment[fr]=Naviguer sur le Web
Comment[gl]=Navegar pola rede
Comment[he]=גלישה ברחבי האינטרנט
Comment[hr]=Pretražite web
Comment[hu]=A világháló böngészése
Comment[it]=Esplora il web
Comment[ja]=
Comment[ko]=
Comment[ku]=Li torê bigere
Comment[lt]=Naršykite internete
Comment[nb]=Surf på nettet
Comment[nl]=Verken het internet
Comment[nn]=Surf på nettet
Comment[no]=Surf på nettet
Comment[pl]=Przeglądanie stron WWW
Comment[pt]=Navegue na Internet
Comment[pt_BR]=Navegue na Internet
Comment[ro]=Navigați pe Internet
Comment[ru]=Доступ в Интернет
Comment[sk]=Prehliadanie internetu
Comment[sl]=Brskajte po spletu
Comment[sv]=Surfa på webben
Comment[tr]=İnternet'te Gezinin
Comment[ug]=دۇنيادىكى توربەتلەرنى كۆرگىلى بولىدۇ
Comment[uk]=Перегляд сторінок Інтернету
Comment[vi]=Đ duyt các trang web
Comment[zh_CN]=
Comment[zh_TW]=
GenericName=Web Browser
GenericName[ar]=متصفح ويب
GenericName[ast]=Restolador Web
GenericName[bn]=
GenericName[ca]=Navegador web
GenericName[cs]=Webový prohlížeč
GenericName[da]=Webbrowser
GenericName[el]=Περιηγητής διαδικτύου
GenericName[es]=Navegador web
GenericName[et]=Veebibrauser
GenericName[fa]=مرورگر اینترنتی
GenericName[fi]=WWW-selain
GenericName[fr]=Navigateur Web
GenericName[gl]=Navegador Web
GenericName[he]=דפדפן אינטרנט
GenericName[hr]=Web preglednik
GenericName[hu]=Webböngésző
GenericName[it]=Browser web
GenericName[ja]=
GenericName[ko]=
GenericName[ku]=Geroka torê
GenericName[lt]=Interneto naršyklė
GenericName[nb]=Nettleser
GenericName[nl]=Webbrowser
GenericName[nn]=Nettlesar
GenericName[no]=Nettleser
GenericName[pl]=Przeglądarka WWW
GenericName[pt]=Navegador Web
GenericName[pt_BR]=Navegador Web
GenericName[ro]=Navigator Internet
GenericName[ru]=Веб-браузер
GenericName[sk]=Internetový prehliadač
GenericName[sl]=Spletni brskalnik
GenericName[sv]=Webbläsare
GenericName[tr]=Web Tarayıcı
GenericName[ug]=توركۆرگۈ
GenericName[uk]=Веб-браузер
GenericName[vi]=Trình duyt Web
GenericName[zh_CN]=
GenericName[zh_TW]=
Keywords=Internet;WWW;Browser;Web;Explorer
Keywords[ar]=انترنت;إنترنت;متصفح;ويب;وب
Keywords[ast]=Internet;WWW;Restolador;Web;Esplorador
Keywords[ca]=Internet;WWW;Navegador;Web;Explorador;Explorer
Keywords[cs]=Internet;WWW;Prohlížeč;Web;Explorer
Keywords[da]=Internet;Internettet;WWW;Browser;Browse;Web;Surf;Nettet
Keywords[de]=Internet;WWW;Browser;Web;Explorer;Webseite;Site;surfen;online;browsen
Keywords[el]=Internet;WWW;Browser;Web;Explorer;Διαδίκτυο;Περιηγητής;Firefox;Φιρεφοχ;Ιντερνετ
Keywords[es]=Explorador;Internet;WWW
Keywords[fi]=Internet;WWW;Browser;Web;Explorer;selain;Internet-selain;internetselain;verkkoselain;netti;surffaa
Keywords[fr]=Internet;WWW;Browser;Web;Explorer;Fureteur;Surfer;Navigateur
Keywords[he]=דפדפן;אינטרנט;רשת;אתרים;אתר;פיירפוקס;מוזילה;
Keywords[hr]=Internet;WWW;preglednik;Web
Keywords[hu]=Internet;WWW;Böngésző;Web;Háló;Net;Explorer
Keywords[it]=Internet;WWW;Browser;Web;Navigatore
Keywords[is]=Internet;WWW;Vafri;Vefur;Netvafri;Flakk
Keywords[ja]=Internet;WWW;Web;;;;
Keywords[nb]=Internett;WWW;Nettleser;Explorer;Web;Browser;Nettside
Keywords[nl]=Internet;WWW;Browser;Web;Explorer;Verkenner;Website;Surfen;Online
Keywords[pt]=Internet;WWW;Browser;Web;Explorador;Navegador
Keywords[pt_BR]=Internet;WWW;Browser;Web;Explorador;Navegador
Keywords[ru]=Internet;WWW;Browser;Web;Explorer;интернет;браузер;веб;файрфокс;огнелис
Keywords[sk]=Internet;WWW;Prehliadač;Web;Explorer
Keywords[sl]=Internet;WWW;Browser;Web;Explorer;Brskalnik;Splet
Keywords[tr]=İnternet;WWW;Tarayıcı;Web;Gezgin;Web sitesi;Site;sörf;çevrimiçi;tara
Keywords[uk]=Internet;WWW;Browser;Web;Explorer;Інтернет;мережа;переглядач;оглядач;браузер;веб;файрфокс;вогнелис;перегляд
Keywords[vi]=Internet;WWW;Browser;Web;Explorer;Trình duyt;Trang web
Keywords[zh_CN]=Internet;WWW;Browser;Web;Explorer;;;;;Firefox;ff;;;
Keywords[zh_TW]=Internet;WWW;Browser;Web;Explorer;;;;;;
Exec=/home/zvava/.scripts/homewrap /usr/lib/firefox/firefox %u
Icon=firefox
Terminal=false
Type=Application
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;application/x-xpinstall;application/pdf;application/json;
StartupNotify=true
Categories=Network;WebBrowser;
Actions=new-window;new-private-window;profile-manager-window;
StartupWMClass=firefox
Path=
[Desktop Action new-window]
Name=Open a New Window
Name[ach]=Dirica manyen
Name[af]=Nuwe venster
Name[an]=Nueva finestra
Name[ar]=نافذة جديدة
Name[as]=
Name[ast]=Ventana nueva
Name[az]=Yeni Pəncərə
Name[be]=Новае акно
Name[bg]=Нов прозорец
Name[bn_BD]= (N)
Name[bn_IN]=
Name[br]=Prenestr nevez
Name[brx]= '(N)
Name[bs]=Novi prozor
Name[ca]=Finestra nova
Name[cak]=K'ak'a' tzuwäch
Name[cs]=Nové okno
Name[cy]=Ffenestr Newydd
Name[da]=Nyt vindue
Name[de]=Neues Fenster
Name[dsb]=Nowe wokno
Name[el]=Νέο παράθυρο
Name[en_GB]=New Window
Name[en_US]=New Window
Name[en_ZA]=New Window
Name[eo]=Nova fenestro
Name[es_AR]=Nueva ventana
Name[es_CL]=Nueva ventana
Name[es_ES]=Nueva ventana
Name[es_MX]=Nueva ventana
Name[et]=Uus aken
Name[eu]=Leiho berria
Name[fa]=پنجره جدید
Name[ff]=Henorde Hesere
Name[fi]=Uusi ikkuna
Name[fr]=Nouvelle fenêtre
Name[fy_NL]=Nij finster
Name[ga_IE]=Fuinneog Nua
Name[gd]=Uinneag ùr
Name[gl]=Nova xanela
Name[gn]=Ovetã pyahu
Name[gu_IN]= િ
Name[he]=חלון חדש
Name[hi_IN]= ि
Name[hr]=Novi prozor
Name[hsb]=Nowe wokno
Name[hu]=Új ablak
Name[hy_AM]=Նոր Պատուհան
Name[id]=Jendela Baru
Name[is]=Nýr gluggi
Name[it]=Nuova finestra
Name[ja]=
Name[ja_JP]=
Name[ka]=
Name[kk]=Жаңа терезе
Name[km]=
Name[kn]= ಿಿ
Name[ko]=
Name[kok]=
Name[ks]=نئئ وِنڈو
Name[lij]=Neuvo barcon
Name[lo]=
Name[lt]=Naujas langas
Name[ltg]=Jauns lūgs
Name[lv]=Jauns logs
Name[mai]= ि
Name[mk]=Нов прозорец
Name[ml]=ി
Name[mr]=
Name[ms]=Tetingkap Baru
Name[my]=
Name[nb_NO]=Nytt vindu
Name[ne_NP]=
Name[nl]=Nieuw venster
Name[nn_NO]=Nytt vindauge
Name[or]= ି
Name[pa_IN]= ਿ
Name[pl]=Nowe okno
Name[pt_BR]=Nova janela
Name[pt_PT]=Nova janela
Name[rm]=Nova fanestra
Name[ro]=Fereastră nouă
Name[ru]=Новое окно
Name[sat]= ि (N)
Name[si]=
Name[sk]=Nové okno
Name[sl]=Novo okno
Name[son]=Zanfun taaga
Name[sq]=Dritare e Re
Name[sr]=Нови прозор
Name[sv_SE]=Nytt fönster
Name[ta]=ி
Name[te]= ి
Name[th]=
Name[tr]=Yeni pencere
Name[tsz]=Eraatarakua jimpani
Name[uk]=Нове вікно
Name[ur]=نیا دریچہ
Name[uz]=Yangi oyna
Name[vi]=Ca s mi
Name[wo]=Palanteer bu bees
Name[xh]=Ifestile entsha
Name[zh_CN]=
Name[zh_TW]=
Exec=/usr/lib/firefox/firefox --new-window %u
[Desktop Action new-private-window]
Name=Open a New Private Window
Name[ach]=Dirica manyen me mung
Name[af]=Nuwe privaatvenster
Name[an]=Nueva finestra privada
Name[ar]=نافذة خاصة جديدة
Name[as]= ি
Name[ast]=Ventana privada nueva
Name[az]=Yeni Məxfi Pəncərə
Name[be]=Новае акно адасаблення
Name[bg]=Нов прозорец за поверително сърфиране
Name[bn_BD]= ি
Name[bn_IN]= ি
Name[br]=Prenestr merdeiñ prevez nevez
Name[brx]= '
Name[bs]=Novi privatni prozor
Name[ca]=Finestra privada nova
Name[cak]=K'ak'a' ichinan tzuwäch
Name[cs]=Nové anonymní okno
Name[cy]=Ffenestr Breifat Newydd
Name[da]=Nyt privat vindue
Name[de]=Neues privates Fenster
Name[dsb]=Nowe priwatne wokno
Name[el]=Νέο παράθυρο ιδιωτικής περιήγησης
Name[en_GB]=New Private Window
Name[en_US]=New Private Window
Name[en_ZA]=New Private Window
Name[eo]=Nova privata fenestro
Name[es_AR]=Nueva ventana privada
Name[es_CL]=Nueva ventana privada
Name[es_ES]=Nueva ventana privada
Name[es_MX]=Nueva ventana privada
Name[et]=Uus privaatne aken
Name[eu]=Leiho pribatu berria
Name[fa]=پنجره ناشناس جدید
Name[ff]=Henorde Suturo Hesere
Name[fi]=Uusi yksityinen ikkuna
Name[fr]=Nouvelle fenêtre de navigation privée
Name[fy_NL]=Nij priveefinster
Name[ga_IE]=Fuinneog Nua Phríobháideach
Name[gd]=Uinneag phrìobhaideach ùr
Name[gl]=Nova xanela privada
Name[gn]=Ovetã ñemi pyahu
Name[gu_IN]= િ
Name[he]=חלון פרטי חדש
Name[hi_IN]= ि ि
Name[hr]=Novi privatni prozor
Name[hsb]=Nowe priwatne wokno
Name[hu]=Új privát ablak
Name[hy_AM]=Սկսել Գաղտնի դիտարկում
Name[id]=Jendela Mode Pribadi Baru
Name[is]=Nýr huliðsgluggi
Name[it]=Nuova finestra anonima
Name[ja]=
Name[ja_JP]=
Name[ka]=
Name[kk]=Жаңа жекелік терезе
Name[km]=
Name[kn]= ಿ ಿಿ
Name[ko]=
Name[kok]= ि
Name[ks]=نْو پرایوٹ وینڈو&amp;
Name[lij]=Neuvo barcon privou
Name[lo]=
Name[lt]=Naujas privataus naršymo langas
Name[ltg]=Jauns privatais lūgs
Name[lv]=Jauns privātais logs
Name[mai]= ि ि (W)
Name[mk]=Нов приватен прозорец
Name[ml]=ി
Name[mr]= ि
Name[ms]=Tetingkap Persendirian Baharu
Name[my]=New Private Window
Name[nb_NO]=Nytt privat vindu
Name[ne_NP]= ि
Name[nl]=Nieuw privévenster
Name[nn_NO]=Nytt privat vindauge
Name[or]= ି ି
Name[pa_IN]= ਿ
Name[pl]=Nowe okno prywatne
Name[pt_BR]=Nova janela privativa
Name[pt_PT]=Nova janela privada
Name[rm]=Nova fanestra privata
Name[ro]=Fereastră privată nouă
Name[ru]=Новое приватное окно
Name[sat]= ि ि (W )
Name[si]= (W)
Name[sk]=Nové okno v režime Súkromné prehliadanie
Name[sl]=Novo zasebno okno
Name[son]=Sutura zanfun taaga
Name[sq]=Dritare e Re Private
Name[sr]=Нови приватан прозор
Name[sv_SE]=Nytt privat fönster
Name[ta]=ி ி
Name[te]= ి ి
Name[th]=
Name[tr]=Yeni gizli pencere
Name[tsz]=Juchiiti eraatarakua jimpani
Name[uk]=Приватне вікно
Name[ur]=نیا نجی دریچہ
Name[uz]=Yangi maxfiy oyna
Name[vi]=Ca s riêng tư mi
Name[wo]=Panlanteeru biir bu bees
Name[xh]=Ifestile yangasese entsha
Name[zh_CN]=
Name[zh_TW]=
Exec=/usr/lib/firefox/firefox --private-window %u
[Desktop Action profile-manager-window]
Name=Open the Profile Manager
Name[cs]=Správa profilů
Name[de]=Profilverwaltung öffnen
Name[es]=Abrir el Gestor de Perfiles
Name[fr]=Ouvrir le gestionnaire de profils
Exec=/usr/lib/firefox/firefox --ProfileManager

View File

@ -0,0 +1,14 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=A/B Tester x2 Mono
GenericName=A/B Tester
Comment=Mono plugin that allows to perform quick A/B test of two channels with blind option
Exec=lsp-plugins-ab-tester-x2-mono
Icon=lsp-plugins
Terminal=false
StartupNotify=false
Keywords=audio;sound;jackd;lsp-plugins;
Categories=X-LSP-Plugins;
NotShowIn=GNOME;
Hidden=true

View File

@ -0,0 +1,15 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=A/B Tester x2 Stereo
GenericName=A/B Tester
Comment=Stereo plugin that allows to perform quick A/B test of two channels with blind option
Exec=lsp-plugins-ab-tester-x2-stereo
Icon=lsp-plugins
Terminal=false
StartupNotify=false
Keywords=audio;sound;jackd;lsp-plugins;
Categories=X-LSP-Plugins;
NotShowIn=GNOME;Hidden=true
Hidden=true

View File

@ -0,0 +1,14 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=A/B Tester x4 Mono
GenericName=A/B Tester
Comment=Mono plugin that allows to perform quick A/B test of four channels with blind option
Exec=lsp-plugins-ab-tester-x4-mono
Icon=lsp-plugins
Terminal=false
StartupNotify=false
Keywords=audio;sound;jackd;lsp-plugins;
Categories=X-LSP-Plugins;
NotShowIn=GNOME;
Hidden=true

View File

@ -0,0 +1,15 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=A/B Tester x4 Stereo
GenericName=A/B Tester
Comment=Stereo plugin that allows to perform quick A/B test of four channels with blind option
Exec=lsp-plugins-ab-tester-x4-stereo
Icon=lsp-plugins
Terminal=false
StartupNotify=false
Keywords=audio;sound;jackd;lsp-plugins;
Categories=X-LSP-Plugins;
NotShowIn=GNOME;Hidden=true
Hidden=true

View File

@ -0,0 +1,14 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=A/B Tester x8 Mono
GenericName=A/B Tester
Comment=Mono plugin that allows to perform quick A/B test of eight channels with blind option
Exec=lsp-plugins-ab-tester-x8-mono
Icon=lsp-plugins
Terminal=false
StartupNotify=false
Keywords=audio;sound;jackd;lsp-plugins;
Categories=X-LSP-Plugins;
NotShowIn=GNOME;
Hidden=true

View File

@ -0,0 +1,15 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=A/B Tester x8 Stereo
GenericName=A/B Tester
Comment=Stereo plugin that allows to perform quick A/B test of eight channels with blind option
Exec=lsp-plugins-ab-tester-x8-stereo
Icon=lsp-plugins
Terminal=false
StartupNotify=false
Keywords=audio;sound;jackd;lsp-plugins;
Categories=X-LSP-Plugins;
NotShowIn=GNOME;Hidden=true
Hidden=true

View File

@ -0,0 +1,16 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=Artistic Delay Mono
GenericName=Delay effect
GenericName[ru]=Эффект задержки
Comment=Allows to construct the custom delay effect from 8 tempos and 16 delay lines.
Comment[ru]=Позволяет сконструировать индивидуальный эффект задержки из 8 темпов и 16 линий задержки.
Exec=lsp-plugins-art-delay-mono
Icon=lsp-plugins
Terminal=false
StartupNotify=false
Keywords=audio;sound;jackd;lsp-plugins;
Categories=X-LSP-Plugins;
NotShowIn=GNOME;
Hidden=true

Some files were not shown because too many files have changed in this diff Show More