Update .bashrc, config.jsonc, and 27 more files...
This commit is contained in:
commit
c038a2bb4b
99
.bashrc
Normal file
99
.bashrc
Normal file
|
@ -0,0 +1,99 @@
|
|||
#
|
||||
# ~/.bashrc
|
||||
#
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
[[ -f ~/.welcome_screen ]] && . ~/.welcome_screen
|
||||
|
||||
_set_liveuser_PS1() {
|
||||
PS1='[\u@\h \W]\$ '
|
||||
if [ "$(whoami)" = "liveuser" ] ; then
|
||||
local iso_version="$(grep ^VERSION= /usr/lib/endeavouros-release 2>/dev/null | cut -d '=' -f 2)"
|
||||
if [ -n "$iso_version" ] ; then
|
||||
local prefix="eos-"
|
||||
local iso_info="$prefix$iso_version"
|
||||
PS1="[\u@$iso_info \W]\$ "
|
||||
fi
|
||||
fi
|
||||
}
|
||||
_set_liveuser_PS1
|
||||
unset -f _set_liveuser_PS1
|
||||
|
||||
ShowInstallerIsoInfo() {
|
||||
local file=/usr/lib/endeavouros-release
|
||||
if [ -r $file ] ; then
|
||||
cat $file
|
||||
else
|
||||
echo "Sorry, installer ISO info is not available." >&2
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
alias ls='ls --color=auto'
|
||||
alias ll='ls -lav --ignore=..' # show long listing of all except ".."
|
||||
alias l='ls -lav --ignore=.?*' # show long listing but no hidden dotfiles except "."
|
||||
|
||||
[[ "$(whoami)" = "root" ]] && return
|
||||
|
||||
[[ -z "$FUNCNEST" ]] && export FUNCNEST=100 # limits recursive functions, see 'man bash'
|
||||
|
||||
## 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'
|
||||
|
||||
################################################################################
|
||||
## Some generally useful functions.
|
||||
## Consider uncommenting aliases below to start using these functions.
|
||||
##
|
||||
## October 2021: removed many obsolete functions. If you still need them, please look at
|
||||
## https://github.com/EndeavourOS-archive/EndeavourOS-archiso/raw/master/airootfs/etc/skel/.bashrc
|
||||
|
||||
_open_files_for_editing() {
|
||||
# Open any given document file(s) for editing (or just viewing).
|
||||
# Note1:
|
||||
# - Do not use for executable files!
|
||||
# Note2:
|
||||
# - Uses 'mime' bindings, so you may need to use
|
||||
# e.g. a file manager to make proper file bindings.
|
||||
|
||||
if [ -x /usr/bin/exo-open ] ; then
|
||||
echo "exo-open $@" >&2
|
||||
setsid exo-open "$@" >& /dev/null
|
||||
return
|
||||
fi
|
||||
if [ -x /usr/bin/xdg-open ] ; then
|
||||
for file in "$@" ; do
|
||||
echo "xdg-open $file" >&2
|
||||
setsid xdg-open "$file" >& /dev/null
|
||||
done
|
||||
return
|
||||
fi
|
||||
|
||||
echo "$FUNCNAME: package 'xdg-utils' or 'exo' is required." >&2
|
||||
}
|
||||
|
||||
#------------------------------------------------------------
|
||||
|
||||
## Aliases for the functions above.
|
||||
## Uncomment an alias if you want to use it.
|
||||
##
|
||||
|
||||
# alias ef='_open_files_for_editing' # 'ef' opens given file(s) for editing
|
||||
# alias pacdiff=eos-pacdiff
|
||||
################################################################################
|
||||
|
||||
#neofetch
|
||||
|
||||
# AG SYSTEMS
|
||||
#fastfetch --logo /home/bonkyboo/agsys_wo3_tp2.png --logo-height 18
|
||||
|
||||
# ISEUL-T
|
||||
fastfetch --logo /home/bonkyboo/iseul-t_256_200-218.png --logo-height 20
|
||||
|
||||
eval "$(starship init bash)"
|
||||
|
||||
export VITASDK=/usr/local/vitasdk
|
||||
export PATH=$VITASDK/bin:$PATH
|
119
.config/fastfetch/config.jsonc
Normal file
119
.config/fastfetch/config.jsonc
Normal file
|
@ -0,0 +1,119 @@
|
|||
// Designed for Arch Linux
|
||||
// Modified from: https://github.com/fastfetch-cli/fastfetch/pull/1025#issuecomment-2177566138
|
||||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||
"logo": {
|
||||
"source": "xenia",
|
||||
"color": {
|
||||
"1": "34:",
|
||||
"2": "35:"
|
||||
}
|
||||
},
|
||||
"display": {
|
||||
"color": {
|
||||
"separator": "34:"
|
||||
},
|
||||
"separator": " | ",
|
||||
"constants": [
|
||||
"[================]#[========================================]"
|
||||
]
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ISEUL-T: THE BIAS WRECKER",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "host",
|
||||
"key": " Motherboard ",
|
||||
"keyColor": "35:",
|
||||
"format": "ASRock {2}"
|
||||
},
|
||||
{
|
||||
"type": "cpu",
|
||||
"key": " Processor ",
|
||||
"keyColor": "35:",
|
||||
"temp": false,
|
||||
"type": false,
|
||||
"showPeCoreCount": false,
|
||||
"format": "{1}"
|
||||
},
|
||||
{
|
||||
"type": "gpu",
|
||||
"key": " Video Card ",
|
||||
"keyColor": "35:",
|
||||
"format": "{1} {2}"
|
||||
},
|
||||
{
|
||||
"type": "memory",
|
||||
"key": " Real Memory ",
|
||||
"keyColor": "35:"
|
||||
},
|
||||
{
|
||||
"type": "swap",
|
||||
"key": " Swap Memory ",
|
||||
"keyColor": "35:"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "os",
|
||||
"key": " Distribution ",
|
||||
"keyColor": "35:",
|
||||
"format": "{3} Linux"
|
||||
},
|
||||
{
|
||||
"type": "kernel",
|
||||
"key": " Kernel Version",
|
||||
"keyColor": "35:",
|
||||
"format": "{2} {4}"
|
||||
},
|
||||
{
|
||||
"type": "de",
|
||||
"key": " User Interface",
|
||||
"keyColor": "35:"
|
||||
},
|
||||
{
|
||||
"type": "wm",
|
||||
"key": " Window System ",
|
||||
"keyColor": "35:"
|
||||
},
|
||||
{
|
||||
"type": "display",
|
||||
"key": " Video Output ",
|
||||
"keyColor": "35:",
|
||||
"format": "{6} {1}x{2} @ {3}Hz"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "uptime",
|
||||
"key": " Time Alive ",
|
||||
"keyColor": "35:",
|
||||
"format": "{1} days, {2} hours and {3} minutes"
|
||||
},
|
||||
{
|
||||
"type": "localip",
|
||||
"key": " Local Address ",
|
||||
"keyColor": "35:"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
"break"
|
||||
]
|
||||
}
|
119
.config/fastfetch/config.jsonc.agsys.old
Normal file
119
.config/fastfetch/config.jsonc.agsys.old
Normal file
|
@ -0,0 +1,119 @@
|
|||
// Designed for Arch Linux
|
||||
// Modified from: https://github.com/fastfetch-cli/fastfetch/pull/1025#issuecomment-2177566138
|
||||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||
"logo": {
|
||||
"source": "xenia",
|
||||
"color": {
|
||||
"1": "red",
|
||||
"2": "white"
|
||||
}
|
||||
},
|
||||
"display": {
|
||||
"color": {
|
||||
"separator": "red"
|
||||
},
|
||||
"separator": " | ",
|
||||
"constants": [
|
||||
"[================]#[========================================]"
|
||||
]
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " anti-gravity systems",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "host",
|
||||
"key": " Motherboard ",
|
||||
"keyColor": "red",
|
||||
"format": "ASRock {2}"
|
||||
},
|
||||
{
|
||||
"type": "cpu",
|
||||
"key": " Processor ",
|
||||
"keyColor": "red",
|
||||
"temp": false,
|
||||
"type": false,
|
||||
"showPeCoreCount": false,
|
||||
"format": "{1}"
|
||||
},
|
||||
{
|
||||
"type": "gpu",
|
||||
"key": " Video Card ",
|
||||
"keyColor": "red",
|
||||
"format": "{1} {2}"
|
||||
},
|
||||
{
|
||||
"type": "memory",
|
||||
"key": " Real Memory ",
|
||||
"keyColor": "red"
|
||||
},
|
||||
{
|
||||
"type": "swap",
|
||||
"key": " Swap Memory ",
|
||||
"keyColor": "red"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "os",
|
||||
"key": " Distribution ",
|
||||
"keyColor": "red",
|
||||
"format": "{3} Linux"
|
||||
},
|
||||
{
|
||||
"type": "kernel",
|
||||
"key": " Kernel Version",
|
||||
"keyColor": "red",
|
||||
"format": "{2} {4}"
|
||||
},
|
||||
{
|
||||
"type": "de",
|
||||
"key": " User Interface",
|
||||
"keyColor": "red"
|
||||
},
|
||||
{
|
||||
"type": "wm",
|
||||
"key": " Window System ",
|
||||
"keyColor": "red"
|
||||
},
|
||||
{
|
||||
"type": "display",
|
||||
"key": " Video Output ",
|
||||
"keyColor": "red",
|
||||
"format": "{6} {1}x{2} @ {3}Hz"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "uptime",
|
||||
"key": " Time Alive ",
|
||||
"keyColor": "red",
|
||||
"format": "{1} days, {2} hours and {3} minutes"
|
||||
},
|
||||
{
|
||||
"type": "localip",
|
||||
"key": " Local Address ",
|
||||
"keyColor": "red"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
"break"
|
||||
]
|
||||
}
|
119
.config/fastfetch/config.jsonc.iseult2.old
Normal file
119
.config/fastfetch/config.jsonc.iseult2.old
Normal file
|
@ -0,0 +1,119 @@
|
|||
// Designed for Arch Linux
|
||||
// Modified from: https://github.com/fastfetch-cli/fastfetch/pull/1025#issuecomment-2177566138
|
||||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||
"logo": {
|
||||
"source": "xenia",
|
||||
"color": {
|
||||
"1": "39:",
|
||||
"2": "162:"
|
||||
}
|
||||
},
|
||||
"display": {
|
||||
"color": {
|
||||
"separator": "39:"
|
||||
},
|
||||
"separator": " | ",
|
||||
"constants": [
|
||||
"[================]#[========================================]"
|
||||
]
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ISEUL-T: THE BIAS WRECKER",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "host",
|
||||
"key": " Motherboard ",
|
||||
"keyColor": "162:",
|
||||
"format": "ASRock {2}"
|
||||
},
|
||||
{
|
||||
"type": "cpu",
|
||||
"key": " Processor ",
|
||||
"keyColor": "162:",
|
||||
"temp": false,
|
||||
"type": false,
|
||||
"showPeCoreCount": false,
|
||||
"format": "{1}"
|
||||
},
|
||||
{
|
||||
"type": "gpu",
|
||||
"key": " Video Card ",
|
||||
"keyColor": "162:",
|
||||
"format": "{1} {2}"
|
||||
},
|
||||
{
|
||||
"type": "memory",
|
||||
"key": " Real Memory ",
|
||||
"keyColor": "162:"
|
||||
},
|
||||
{
|
||||
"type": "swap",
|
||||
"key": " Swap Memory ",
|
||||
"keyColor": "162:"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "os",
|
||||
"key": " Distribution ",
|
||||
"keyColor": "162:",
|
||||
"format": "{3} Linux"
|
||||
},
|
||||
{
|
||||
"type": "kernel",
|
||||
"key": " Kernel Version",
|
||||
"keyColor": "162:",
|
||||
"format": "{2} {4}"
|
||||
},
|
||||
{
|
||||
"type": "de",
|
||||
"key": " User Interface",
|
||||
"keyColor": "162:"
|
||||
},
|
||||
{
|
||||
"type": "wm",
|
||||
"key": " Window System ",
|
||||
"keyColor": "162:"
|
||||
},
|
||||
{
|
||||
"type": "display",
|
||||
"key": " Video Output ",
|
||||
"keyColor": "162:",
|
||||
"format": "{6} {1}x{2} @ {3}Hz"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
{
|
||||
"type": "uptime",
|
||||
"key": " Time Alive ",
|
||||
"keyColor": "162:",
|
||||
"format": "{1} days, {2} hours and {3} minutes"
|
||||
},
|
||||
{
|
||||
"type": "localip",
|
||||
"key": " Local Address ",
|
||||
"keyColor": "162:"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}",
|
||||
"outputColor": "separator"
|
||||
},
|
||||
"break"
|
||||
]
|
||||
}
|
40
.config/gpu-screen-recorder/config
Normal file
40
.config/gpu-screen-recorder/config
Normal file
|
@ -0,0 +1,40 @@
|
|||
main.advanced_view true
|
||||
main.audio_codec opus
|
||||
main.audio_input Default output
|
||||
main.audio_input Default input
|
||||
main.av1_amd_bug_warning_shown false
|
||||
main.codec hevc
|
||||
main.color_range limited
|
||||
main.fps 60
|
||||
main.framerate_mode cfr
|
||||
main.hevc_amd_bug_warning_shown false
|
||||
main.hide_window_when_recording false
|
||||
main.merge_audio_tracks false
|
||||
main.overclock true
|
||||
main.quality high
|
||||
main.record_area_height 1080
|
||||
main.record_area_option DP-2
|
||||
main.record_area_width 1920
|
||||
main.record_cursor true
|
||||
main.restore_portal_session true
|
||||
main.show_recording_saved_notifications true
|
||||
main.show_recording_started_notifications true
|
||||
main.show_recording_stopped_notifications true
|
||||
main.software_encoding_warning_shown false
|
||||
main.steam_deck_warning_shown false
|
||||
main.video_bitrate 5000
|
||||
record.container mp4
|
||||
record.pause_unpause_recording_hotkey 0 0
|
||||
record.save_directory /home/bonkyboo/Videos
|
||||
record.start_stop_recording_hotkey 65478 256
|
||||
replay.container matroska
|
||||
replay.save_directory /home/bonkyboo/Videos
|
||||
replay.save_recording_hotkey 65471 4
|
||||
replay.start_stop_recording_hotkey 65479 257
|
||||
replay.time 60
|
||||
streaming.custom.container flv
|
||||
streaming.custom.url
|
||||
streaming.service twitch
|
||||
streaming.start_stop_recording_hotkey 0 0
|
||||
streaming.twitch.key
|
||||
streaming.youtube.key
|
2512
.config/kitty/kitty.conf
Normal file
2512
.config/kitty/kitty.conf
Normal file
File diff suppressed because it is too large
Load Diff
851
.config/neofetch/config.conf
Normal file
851
.config/neofetch/config.conf
Normal file
|
@ -0,0 +1,851 @@
|
|||
# See this wiki page for more info:
|
||||
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
|
||||
print_info() {
|
||||
info title
|
||||
info underline
|
||||
|
||||
info "Motherboard" model
|
||||
info "CPU" cpu
|
||||
info "GPU" gpu
|
||||
info "Memory" memory
|
||||
info "Display" resolution
|
||||
prin
|
||||
info "OS" distro
|
||||
info "Kernel" kernel
|
||||
#info "Shell" shell
|
||||
info "Desktop" de
|
||||
info "Window Manager" wm
|
||||
prin
|
||||
info "Uptime" uptime
|
||||
info "Local IP" local_ip
|
||||
#info "Public IP" public_ip
|
||||
|
||||
info cols
|
||||
}
|
||||
|
||||
# Title
|
||||
|
||||
|
||||
# Hide/Show Fully qualified domain name.
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --title_fqdn
|
||||
title_fqdn="off"
|
||||
|
||||
|
||||
# Kernel
|
||||
|
||||
|
||||
# Shorten the output of the kernel function.
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --kernel_shorthand
|
||||
# Supports: Everything except *BSDs (except PacBSD and PC-BSD)
|
||||
#
|
||||
# Example:
|
||||
# on: '4.8.9-1-ARCH'
|
||||
# off: 'Linux 4.8.9-1-ARCH'
|
||||
kernel_shorthand="off"
|
||||
|
||||
|
||||
# Distro
|
||||
|
||||
|
||||
# Shorten the output of the distro function
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'tiny', 'off'
|
||||
# Flag: --distro_shorthand
|
||||
# Supports: Everything except Windows and Haiku
|
||||
distro_shorthand="on"
|
||||
|
||||
# Show/Hide OS Architecture.
|
||||
# Show 'x86_64', 'x86' and etc in 'Distro:' output.
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --os_arch
|
||||
#
|
||||
# Example:
|
||||
# on: 'Arch Linux x86_64'
|
||||
# off: 'Arch Linux'
|
||||
os_arch="on"
|
||||
|
||||
|
||||
# Uptime
|
||||
|
||||
|
||||
# Shorten the output of the uptime function
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'tiny', 'off'
|
||||
# Flag: --uptime_shorthand
|
||||
#
|
||||
# Example:
|
||||
# on: '2 days, 10 hours, 3 mins'
|
||||
# tiny: '2d 10h 3m'
|
||||
# off: '2 days, 10 hours, 3 minutes'
|
||||
uptime_shorthand="on"
|
||||
|
||||
|
||||
# Memory
|
||||
|
||||
|
||||
# Show memory pecentage in output.
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --memory_percent
|
||||
#
|
||||
# Example:
|
||||
# on: '1801MiB / 7881MiB (22%)'
|
||||
# off: '1801MiB / 7881MiB'
|
||||
memory_percent="on"
|
||||
|
||||
# Change memory output unit.
|
||||
#
|
||||
# Default: 'mib'
|
||||
# Values: 'kib', 'mib', 'gib'
|
||||
# Flag: --memory_unit
|
||||
#
|
||||
# Example:
|
||||
# kib '1020928KiB / 7117824KiB'
|
||||
# mib '1042MiB / 6951MiB'
|
||||
# gib: ' 0.98GiB / 6.79GiB'
|
||||
memory_unit="gib"
|
||||
|
||||
|
||||
# Packages
|
||||
|
||||
|
||||
# Show/Hide Package Manager names.
|
||||
#
|
||||
# Default: 'tiny'
|
||||
# Values: 'on', 'tiny' 'off'
|
||||
# Flag: --package_managers
|
||||
#
|
||||
# Example:
|
||||
# on: '998 (pacman), 8 (flatpak), 4 (snap)'
|
||||
# tiny: '908 (pacman, flatpak, snap)'
|
||||
# off: '908'
|
||||
package_managers="on"
|
||||
|
||||
|
||||
# Shell
|
||||
|
||||
|
||||
# Show the path to $SHELL
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --shell_path
|
||||
#
|
||||
# Example:
|
||||
# on: '/bin/bash'
|
||||
# off: 'bash'
|
||||
shell_path="off"
|
||||
|
||||
# Show $SHELL version
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --shell_version
|
||||
#
|
||||
# Example:
|
||||
# on: 'bash 4.4.5'
|
||||
# off: 'bash'
|
||||
shell_version="off"
|
||||
|
||||
|
||||
# CPU
|
||||
|
||||
|
||||
# CPU speed type
|
||||
#
|
||||
# Default: 'bios_limit'
|
||||
# Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'.
|
||||
# Flag: --speed_type
|
||||
# Supports: Linux with 'cpufreq'
|
||||
# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value.
|
||||
speed_type="bios_limit"
|
||||
|
||||
# CPU speed shorthand
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'.
|
||||
# Flag: --speed_shorthand
|
||||
# NOTE: This flag is not supported in systems with CPU speed less than 1 GHz
|
||||
#
|
||||
# Example:
|
||||
# on: 'i7-6500U (4) @ 3.1GHz'
|
||||
# off: 'i7-6500U (4) @ 3.100GHz'
|
||||
speed_shorthand="on"
|
||||
|
||||
# Enable/Disable CPU brand in output.
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --cpu_brand
|
||||
#
|
||||
# Example:
|
||||
# on: 'Intel i7-6500U'
|
||||
# off: 'i7-6500U (4)'
|
||||
cpu_brand="on"
|
||||
|
||||
# CPU Speed
|
||||
# Hide/Show CPU speed.
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --cpu_speed
|
||||
#
|
||||
# Example:
|
||||
# on: 'Intel i7-6500U (4) @ 3.1GHz'
|
||||
# off: 'Intel i7-6500U (4)'
|
||||
cpu_speed="on"
|
||||
|
||||
# CPU Cores
|
||||
# Display CPU cores in output
|
||||
#
|
||||
# Default: 'logical'
|
||||
# Values: 'logical', 'physical', 'off'
|
||||
# Flag: --cpu_cores
|
||||
# Support: 'physical' doesn't work on BSD.
|
||||
#
|
||||
# Example:
|
||||
# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores)
|
||||
# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores)
|
||||
# off: 'Intel i7-6500U @ 3.1GHz'
|
||||
cpu_cores="logical"
|
||||
|
||||
# CPU Temperature
|
||||
# Hide/Show CPU temperature.
|
||||
# Note the temperature is added to the regular CPU function.
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'C', 'F', 'off'
|
||||
# Flag: --cpu_temp
|
||||
# Supports: Linux, BSD
|
||||
# NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable
|
||||
# coretemp kernel module. This only supports newer Intel processors.
|
||||
#
|
||||
# Example:
|
||||
# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]'
|
||||
# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]'
|
||||
# off: 'Intel i7-6500U (4) @ 3.1GHz'
|
||||
cpu_temp="C"
|
||||
|
||||
|
||||
# GPU
|
||||
|
||||
|
||||
# Enable/Disable GPU Brand
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --gpu_brand
|
||||
#
|
||||
# Example:
|
||||
# on: 'AMD HD 7950'
|
||||
# off: 'HD 7950'
|
||||
gpu_brand="on"
|
||||
|
||||
# Which GPU to display
|
||||
#
|
||||
# Default: 'all'
|
||||
# Values: 'all', 'dedicated', 'integrated'
|
||||
# Flag: --gpu_type
|
||||
# Supports: Linux
|
||||
#
|
||||
# Example:
|
||||
# all:
|
||||
# GPU1: AMD HD 7950
|
||||
# GPU2: Intel Integrated Graphics
|
||||
#
|
||||
# dedicated:
|
||||
# GPU1: AMD HD 7950
|
||||
#
|
||||
# integrated:
|
||||
# GPU1: Intel Integrated Graphics
|
||||
gpu_type="all"
|
||||
|
||||
|
||||
# Resolution
|
||||
|
||||
|
||||
# Display refresh rate next to each monitor
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --refresh_rate
|
||||
# Supports: Doesn't work on Windows.
|
||||
#
|
||||
# Example:
|
||||
# on: '1920x1080 @ 60Hz'
|
||||
# off: '1920x1080'
|
||||
refresh_rate="on"
|
||||
|
||||
|
||||
# Gtk Theme / Icons / Font
|
||||
|
||||
|
||||
# Shorten output of GTK Theme / Icons / Font
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --gtk_shorthand
|
||||
#
|
||||
# Example:
|
||||
# on: 'Numix, Adwaita'
|
||||
# off: 'Numix [GTK2], Adwaita [GTK3]'
|
||||
gtk_shorthand="on"
|
||||
|
||||
|
||||
# Enable/Disable gtk2 Theme / Icons / Font
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --gtk2
|
||||
#
|
||||
# Example:
|
||||
# on: 'Numix [GTK2], Adwaita [GTK3]'
|
||||
# off: 'Adwaita [GTK3]'
|
||||
gtk2="on"
|
||||
|
||||
# Enable/Disable gtk3 Theme / Icons / Font
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --gtk3
|
||||
#
|
||||
# Example:
|
||||
# on: 'Numix [GTK2], Adwaita [GTK3]'
|
||||
# off: 'Numix [GTK2]'
|
||||
gtk3="on"
|
||||
|
||||
|
||||
# IP Address
|
||||
|
||||
|
||||
# Website to ping for the public IP
|
||||
#
|
||||
# Default: 'http://ident.me'
|
||||
# Values: 'url'
|
||||
# Flag: --ip_host
|
||||
public_ip_host="http://ident.me"
|
||||
|
||||
# Public IP timeout.
|
||||
#
|
||||
# Default: '2'
|
||||
# Values: 'int'
|
||||
# Flag: --ip_timeout
|
||||
public_ip_timeout=2
|
||||
|
||||
|
||||
# Desktop Environment
|
||||
|
||||
|
||||
# Show Desktop Environment version
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --de_version
|
||||
de_version="on"
|
||||
|
||||
|
||||
# Disk
|
||||
|
||||
|
||||
# Which disks to display.
|
||||
# The values can be any /dev/sdXX, mount point or directory.
|
||||
# NOTE: By default we only show the disk info for '/'.
|
||||
#
|
||||
# Default: '/'
|
||||
# Values: '/', '/dev/sdXX', '/path/to/drive'.
|
||||
# Flag: --disk_show
|
||||
#
|
||||
# Example:
|
||||
# disk_show=('/' '/dev/sdb1'):
|
||||
# 'Disk (/): 74G / 118G (66%)'
|
||||
# 'Disk (/mnt/Videos): 823G / 893G (93%)'
|
||||
#
|
||||
# disk_show=('/'):
|
||||
# 'Disk (/): 74G / 118G (66%)'
|
||||
#
|
||||
disk_show=('/')
|
||||
|
||||
# Disk subtitle.
|
||||
# What to append to the Disk subtitle.
|
||||
#
|
||||
# Default: 'mount'
|
||||
# Values: 'mount', 'name', 'dir', 'none'
|
||||
# Flag: --disk_subtitle
|
||||
#
|
||||
# Example:
|
||||
# name: 'Disk (/dev/sda1): 74G / 118G (66%)'
|
||||
# 'Disk (/dev/sdb2): 74G / 118G (66%)'
|
||||
#
|
||||
# mount: 'Disk (/): 74G / 118G (66%)'
|
||||
# 'Disk (/mnt/Local Disk): 74G / 118G (66%)'
|
||||
# 'Disk (/mnt/Videos): 74G / 118G (66%)'
|
||||
#
|
||||
# dir: 'Disk (/): 74G / 118G (66%)'
|
||||
# 'Disk (Local Disk): 74G / 118G (66%)'
|
||||
# 'Disk (Videos): 74G / 118G (66%)'
|
||||
#
|
||||
# none: 'Disk: 74G / 118G (66%)'
|
||||
# 'Disk: 74G / 118G (66%)'
|
||||
# 'Disk: 74G / 118G (66%)'
|
||||
disk_subtitle="mount"
|
||||
|
||||
# Disk percent.
|
||||
# Show/Hide disk percent.
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --disk_percent
|
||||
#
|
||||
# Example:
|
||||
# on: 'Disk (/): 74G / 118G (66%)'
|
||||
# off: 'Disk (/): 74G / 118G'
|
||||
disk_percent="on"
|
||||
|
||||
|
||||
# Song
|
||||
|
||||
|
||||
# Manually specify a music player.
|
||||
#
|
||||
# Default: 'auto'
|
||||
# Values: 'auto', 'player-name'
|
||||
# Flag: --music_player
|
||||
#
|
||||
# Available values for 'player-name':
|
||||
#
|
||||
# amarok
|
||||
# audacious
|
||||
# banshee
|
||||
# bluemindo
|
||||
# clementine
|
||||
# cmus
|
||||
# deadbeef
|
||||
# deepin-music
|
||||
# dragon
|
||||
# elisa
|
||||
# exaile
|
||||
# gnome-music
|
||||
# gmusicbrowser
|
||||
# gogglesmm
|
||||
# guayadeque
|
||||
# io.elementary.music
|
||||
# iTunes
|
||||
# juk
|
||||
# lollypop
|
||||
# mocp
|
||||
# mopidy
|
||||
# mpd
|
||||
# muine
|
||||
# netease-cloud-music
|
||||
# olivia
|
||||
# playerctl
|
||||
# pogo
|
||||
# pragha
|
||||
# qmmp
|
||||
# quodlibet
|
||||
# rhythmbox
|
||||
# sayonara
|
||||
# smplayer
|
||||
# spotify
|
||||
# strawberry
|
||||
# tauonmb
|
||||
# tomahawk
|
||||
# vlc
|
||||
# xmms2d
|
||||
# xnoise
|
||||
# yarock
|
||||
music_player="auto"
|
||||
|
||||
# Format to display song information.
|
||||
#
|
||||
# Default: '%artist% - %album% - %title%'
|
||||
# Values: '%artist%', '%album%', '%title%'
|
||||
# Flag: --song_format
|
||||
#
|
||||
# Example:
|
||||
# default: 'Song: Jet - Get Born - Sgt Major'
|
||||
song_format="%artist% - %album% - %title%"
|
||||
|
||||
# Print the Artist, Album and Title on separate lines
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --song_shorthand
|
||||
#
|
||||
# Example:
|
||||
# on: 'Artist: The Fratellis'
|
||||
# 'Album: Costello Music'
|
||||
# 'Song: Chelsea Dagger'
|
||||
#
|
||||
# off: 'Song: The Fratellis - Costello Music - Chelsea Dagger'
|
||||
song_shorthand="off"
|
||||
|
||||
# 'mpc' arguments (specify a host, password etc).
|
||||
#
|
||||
# Default: ''
|
||||
# Example: mpc_args=(-h HOST -P PASSWORD)
|
||||
mpc_args=()
|
||||
|
||||
|
||||
# Text Colors
|
||||
|
||||
|
||||
# Text Colors
|
||||
#
|
||||
# Default: 'distro'
|
||||
# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num'
|
||||
# Flag: --colors
|
||||
#
|
||||
# Each number represents a different part of the text in
|
||||
# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info'
|
||||
#
|
||||
# Example:
|
||||
# colors=(distro) - Text is colored based on Distro colors.
|
||||
# colors=(4 6 1 8 8 6) - Text is colored in the order above.
|
||||
colors=(distro)
|
||||
|
||||
|
||||
# Text Options
|
||||
|
||||
|
||||
# Toggle bold text
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --bold
|
||||
bold="on"
|
||||
|
||||
# Enable/Disable Underline
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --underline
|
||||
underline_enabled="on"
|
||||
|
||||
# Underline character
|
||||
#
|
||||
# Default: '-'
|
||||
# Values: 'string'
|
||||
# Flag: --underline_char
|
||||
underline_char="-"
|
||||
|
||||
|
||||
# Info Separator
|
||||
# Replace the default separator with the specified string.
|
||||
#
|
||||
# Default: ':'
|
||||
# Flag: --separator
|
||||
#
|
||||
# Example:
|
||||
# separator="->": 'Shell-> bash'
|
||||
# separator=" =": 'WM = dwm'
|
||||
separator=":"
|
||||
|
||||
|
||||
# Color Blocks
|
||||
|
||||
|
||||
# Color block range
|
||||
# The range of colors to print.
|
||||
#
|
||||
# Default: '0', '15'
|
||||
# Values: 'num'
|
||||
# Flag: --block_range
|
||||
#
|
||||
# Example:
|
||||
#
|
||||
# Display colors 0-7 in the blocks. (8 colors)
|
||||
# neofetch --block_range 0 7
|
||||
#
|
||||
# Display colors 0-15 in the blocks. (16 colors)
|
||||
# neofetch --block_range 0 15
|
||||
block_range=(0 15)
|
||||
|
||||
# Toggle color blocks
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --color_blocks
|
||||
color_blocks="on"
|
||||
|
||||
# Color block width in spaces
|
||||
#
|
||||
# Default: '3'
|
||||
# Values: 'num'
|
||||
# Flag: --block_width
|
||||
block_width=3
|
||||
|
||||
# Color block height in lines
|
||||
#
|
||||
# Default: '1'
|
||||
# Values: 'num'
|
||||
# Flag: --block_height
|
||||
block_height=1
|
||||
|
||||
# Color Alignment
|
||||
#
|
||||
# Default: 'auto'
|
||||
# Values: 'auto', 'num'
|
||||
# Flag: --col_offset
|
||||
#
|
||||
# Number specifies how far from the left side of the terminal (in spaces) to
|
||||
# begin printing the columns, in case you want to e.g. center them under your
|
||||
# text.
|
||||
# Example:
|
||||
# col_offset="auto" - Default behavior of neofetch
|
||||
# col_offset=7 - Leave 7 spaces then print the colors
|
||||
col_offset="auto"
|
||||
|
||||
# Progress Bars
|
||||
|
||||
|
||||
# Bar characters
|
||||
#
|
||||
# Default: '-', '='
|
||||
# Values: 'string', 'string'
|
||||
# Flag: --bar_char
|
||||
#
|
||||
# Example:
|
||||
# neofetch --bar_char 'elapsed' 'total'
|
||||
# neofetch --bar_char '-' '='
|
||||
bar_char_elapsed="-"
|
||||
bar_char_total="="
|
||||
|
||||
# Toggle Bar border
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --bar_border
|
||||
bar_border="on"
|
||||
|
||||
# Progress bar length in spaces
|
||||
# Number of chars long to make the progress bars.
|
||||
#
|
||||
# Default: '15'
|
||||
# Values: 'num'
|
||||
# Flag: --bar_length
|
||||
bar_length=15
|
||||
|
||||
# Progress bar colors
|
||||
# When set to distro, uses your distro's logo colors.
|
||||
#
|
||||
# Default: 'distro', 'distro'
|
||||
# Values: 'distro', 'num'
|
||||
# Flag: --bar_colors
|
||||
#
|
||||
# Example:
|
||||
# neofetch --bar_colors 3 4
|
||||
# neofetch --bar_colors distro 5
|
||||
bar_color_elapsed="distro"
|
||||
bar_color_total="distro"
|
||||
|
||||
|
||||
# Info display
|
||||
# Display a bar with the info.
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'bar', 'infobar', 'barinfo', 'off'
|
||||
# Flags: --cpu_display
|
||||
# --memory_display
|
||||
# --battery_display
|
||||
# --disk_display
|
||||
#
|
||||
# Example:
|
||||
# bar: '[---=======]'
|
||||
# infobar: 'info [---=======]'
|
||||
# barinfo: '[---=======] info'
|
||||
# off: 'info'
|
||||
cpu_display="off"
|
||||
memory_display="off"
|
||||
battery_display="off"
|
||||
disk_display="off"
|
||||
|
||||
|
||||
# Backend Settings
|
||||
|
||||
|
||||
# Image backend.
|
||||
#
|
||||
# Default: 'ascii'
|
||||
# Values: 'ascii', 'caca', 'chafa', 'jp2a', 'iterm2', 'off',
|
||||
# 'pot', 'termpix', 'pixterm', 'tycat', 'w3m', 'kitty'
|
||||
# Flag: --backend
|
||||
image_backend="kitty"
|
||||
|
||||
# Image Source
|
||||
#
|
||||
# Which image or ascii file to display.
|
||||
#
|
||||
# Default: 'auto'
|
||||
# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
|
||||
# 'command output (neofetch --ascii "$(fortune | cowsay -W 30)")'
|
||||
# Flag: --source
|
||||
#
|
||||
# NOTE: 'auto' will pick the best image source for whatever image backend is used.
|
||||
# In ascii mode, distro ascii art will be used and in an image mode, your
|
||||
# wallpaper will be used.
|
||||
image_source="/home/bonkyboo/agsys_wo3_tp2.png"
|
||||
|
||||
|
||||
# Ascii Options
|
||||
|
||||
|
||||
# Ascii distro
|
||||
# Which distro's ascii art to display.
|
||||
#
|
||||
# Default: 'auto'
|
||||
# Values: 'auto', 'distro_name'
|
||||
# Flag: --ascii_distro
|
||||
# NOTE: AIX, Alpine, Anarchy, Android, Antergos, antiX, "AOSC OS",
|
||||
# "AOSC OS/Retro", Apricity, ArcoLinux, ArchBox, ARCHlabs,
|
||||
# ArchStrike, XFerience, ArchMerge, Arch, Artix, Arya, Bedrock,
|
||||
# Bitrig, BlackArch, BLAG, BlankOn, BlueLight, bonsai, BSD,
|
||||
# BunsenLabs, Calculate, Carbs, CentOS, Chakra, ChaletOS,
|
||||
# Chapeau, Chrom*, Cleanjaro, ClearOS, Clear_Linux, Clover,
|
||||
# Condres, Container_Linux, CRUX, Cucumber, Debian, Deepin,
|
||||
# DesaOS, Devuan, DracOS, DarkOs, DragonFly, Drauger, Elementary,
|
||||
# EndeavourOS, Endless, EuroLinux, Exherbo, Fedora, Feren, FreeBSD,
|
||||
# FreeMiNT, Frugalware, Funtoo, GalliumOS, Garuda, Gentoo, Pentoo,
|
||||
# gNewSense, GNOME, GNU, GoboLinux, Grombyang, Guix, Haiku, Huayra,
|
||||
# Hyperbola, janus, Kali, KaOS, KDE_neon, Kibojoe, Kogaion,
|
||||
# Korora, KSLinux, Kubuntu, LEDE, LFS, Linux_Lite,
|
||||
# LMDE, Lubuntu, Lunar, macos, Mageia, MagpieOS, Mandriva,
|
||||
# Manjaro, Maui, Mer, Minix, LinuxMint, MX_Linux, Namib,
|
||||
# Neptune, NetBSD, Netrunner, Nitrux, NixOS, Nurunner,
|
||||
# NuTyX, OBRevenge, OpenBSD, openEuler, OpenIndiana, openmamba,
|
||||
# OpenMandriva, OpenStage, OpenWrt, osmc, Oracle, OS Elbrus, PacBSD,
|
||||
# Parabola, Pardus, Parrot, Parsix, TrueOS, PCLinuxOS, Peppermint,
|
||||
# popos, Porteus, PostMarketOS, Proxmox, Puppy, PureOS, Qubes, Radix,
|
||||
# Raspbian, Reborn_OS, Redstar, Redcore, Redhat, Refracted_Devuan,
|
||||
# Regata, Rosa, sabotage, Sabayon, Sailfish, SalentOS, Scientific,
|
||||
# Septor, SereneLinux, SharkLinux, Siduction, Slackware, SliTaz,
|
||||
# SmartOS, Solus, Source_Mage, Sparky, Star, SteamOS, SunOS,
|
||||
# openSUSE_Leap, openSUSE_Tumbleweed, openSUSE, SwagArch, Tails,
|
||||
# Trisquel, Ubuntu-Budgie, Ubuntu-GNOME, Ubuntu-MATE, Ubuntu-Studio,
|
||||
# Ubuntu, Venom, Void, Obarun, windows10, Windows7, Xubuntu, Zorin,
|
||||
# and IRIX have ascii logos
|
||||
# NOTE: Arch, Ubuntu, Redhat, and Dragonfly have 'old' logo variants.
|
||||
# Use '{distro name}_old' to use the old logos.
|
||||
# NOTE: Ubuntu has flavor variants.
|
||||
# Change this to Lubuntu, Kubuntu, Xubuntu, Ubuntu-GNOME,
|
||||
# Ubuntu-Studio, Ubuntu-Mate or Ubuntu-Budgie to use the flavors.
|
||||
# NOTE: Arcolinux, Dragonfly, Fedora, Alpine, Arch, Ubuntu,
|
||||
# CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, OpenBSD, android,
|
||||
# Antrix, CentOS, Cleanjaro, ElementaryOS, GUIX, Hyperbola,
|
||||
# Manjaro, MXLinux, NetBSD, Parabola, POP_OS, PureOS,
|
||||
# Slackware, SunOS, LinuxLite, OpenSUSE, Raspbian,
|
||||
# postmarketOS, and Void have a smaller logo variant.
|
||||
# Use '{distro name}_small' to use the small variants.
|
||||
#ascii_distro="linux"
|
||||
ascii_distro="Minix"
|
||||
|
||||
# Ascii Colors
|
||||
#
|
||||
# Default: 'distro'
|
||||
# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num'
|
||||
# Flag: --ascii_colors
|
||||
#
|
||||
# Example:
|
||||
# ascii_colors=(distro) - Ascii is colored based on Distro colors.
|
||||
# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors.
|
||||
ascii_colors=(distro)
|
||||
|
||||
# Bold ascii logo
|
||||
# Whether or not to bold the ascii logo.
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --ascii_bold
|
||||
ascii_bold="on"
|
||||
|
||||
|
||||
# Image Options
|
||||
|
||||
|
||||
# Image loop
|
||||
# Setting this to on will make neofetch redraw the image constantly until
|
||||
# Ctrl+C is pressed. This fixes display issues in some terminal emulators.
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --loop
|
||||
image_loop="off"
|
||||
|
||||
# Thumbnail directory
|
||||
#
|
||||
# Default: '~/.cache/thumbnails/neofetch'
|
||||
# Values: 'dir'
|
||||
thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch"
|
||||
|
||||
# Crop mode
|
||||
#
|
||||
# Default: 'normal'
|
||||
# Values: 'normal', 'fit', 'fill'
|
||||
# Flag: --crop_mode
|
||||
#
|
||||
# See this wiki page to learn about the fit and fill options.
|
||||
# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F
|
||||
crop_mode="normal"
|
||||
|
||||
# Crop offset
|
||||
# Note: Only affects 'normal' crop mode.
|
||||
#
|
||||
# Default: 'center'
|
||||
# Values: 'northwest', 'north', 'northeast', 'west', 'center'
|
||||
# 'east', 'southwest', 'south', 'southeast'
|
||||
# Flag: --crop_offset
|
||||
crop_offset="center"
|
||||
|
||||
# Image size
|
||||
# The image is half the terminal width by default.
|
||||
#
|
||||
# Default: 'auto'
|
||||
# Values: 'auto', '00px', '00%', 'none'
|
||||
# Flags: --image_size
|
||||
# --size
|
||||
image_size="auto"
|
||||
|
||||
# Gap between image and text
|
||||
#
|
||||
# Default: '3'
|
||||
# Values: 'num', '-num'
|
||||
# Flag: --gap
|
||||
gap=3
|
||||
|
||||
# Image offsets
|
||||
# Only works with the w3m backend.
|
||||
#
|
||||
# Default: '0'
|
||||
# Values: 'px'
|
||||
# Flags: --xoffset
|
||||
# --yoffset
|
||||
yoffset=0
|
||||
xoffset=0
|
||||
|
||||
# Image background color
|
||||
# Only works with the w3m backend.
|
||||
#
|
||||
# Default: ''
|
||||
# Values: 'color', 'blue'
|
||||
# Flag: --bg_color
|
||||
background_color=
|
||||
|
||||
|
||||
# Misc Options
|
||||
|
||||
# Stdout mode
|
||||
# Turn off all colors and disables image backend (ASCII/Image).
|
||||
# Useful for piping into another command.
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
stdout="off"
|
46
.config/starship.toml
Normal file
46
.config/starship.toml
Normal file
|
@ -0,0 +1,46 @@
|
|||
add_newline = false
|
||||
scan_timeout = 10
|
||||
format = '$all$username$hostname$directory$character'
|
||||
|
||||
[gradle]
|
||||
symbol = ' '
|
||||
|
||||
[nodejs]
|
||||
disabled = true
|
||||
|
||||
[username]
|
||||
show_always = true
|
||||
format = '[ $user ]($style)'
|
||||
style_user = 'bg:#ff47ae fg:#ffffff'
|
||||
style_root = 'bg:#ff47ae fg:#ffffff'
|
||||
|
||||
[hostname]
|
||||
ssh_only = true
|
||||
format = '[$ssh_symbol](bold blue) on [$hostname](bold red) '
|
||||
|
||||
[directory]
|
||||
format = '[](bg:#ea75df fg:#ff47ae)[ $path$read_only ]($style)[](fg:#ea75df)'
|
||||
truncation_symbol = ''
|
||||
style = 'bg:#ea75df fg:#ffffff'
|
||||
read_only = ' '
|
||||
|
||||
[git_branch]
|
||||
format = '[ $symbol$branch(:$remote_branch) ]($style)[](bg:#0056fc fg:#0094df)'
|
||||
style = 'bg:#0094df'
|
||||
|
||||
[git_commit]
|
||||
only_detached = false
|
||||
format = '[ $hash$tag ]($style)[](bg:#ffffff fg:#0056fc)'
|
||||
style = 'bg:#0056fc'
|
||||
|
||||
[git_status]
|
||||
format = '([ $all_status$ahead_behind ]($style))[](fg:#ffffff) '
|
||||
style = 'bg:#ffffff fg:#000000'
|
||||
|
||||
#[git_status]
|
||||
#format = '([ $all_status$ahead_behind ]($style))[](fg:#819acd)'
|
||||
#style = 'bg:#819acd'
|
||||
|
||||
[character]
|
||||
success_symbol = ' [❯](#ffffff)'
|
||||
error_symbol = ' [❯](#f7bb2b)'
|
16
.xinitrc
Executable file
16
.xinitrc
Executable file
|
@ -0,0 +1,16 @@
|
|||
# Global settings
|
||||
xinput set-prop 'SteelSeries SteelSeries Rival 3' 'Coordinate Transformation Matrix' 0.430 0 0 0 0.430 0 0 0 1 &
|
||||
sleep 1
|
||||
kmix &
|
||||
|
||||
# Trinity desktop (disabled)
|
||||
#yakuake & kmix & kmixctrl & xscreensaver
|
||||
|
||||
# Windowmaker
|
||||
# Screen, dockapps
|
||||
xscreensaver & wmclock & wmsystemtray -w 2 --arrows vertical &
|
||||
# Compositor
|
||||
picom -b &
|
||||
#feh --bg-tile ~/.wp_raccoons.jpg &
|
||||
# Programs
|
||||
sleep 1; vesktop & steam & psi-plus & ckb-next -b & protonmail-bridge-core -c
|
319
.xscreensaver
Normal file
319
.xscreensaver
Normal file
|
@ -0,0 +1,319 @@
|
|||
# XScreenSaver Preferences File
|
||||
# Written by xscreensaver-settings 6.09 for bonkyboo on Tue Oct 8 17:34:58 2024.
|
||||
# https://www.jwz.org/xscreensaver/
|
||||
|
||||
timeout: 0:05:00
|
||||
cycle: 0:10:00
|
||||
lock: True
|
||||
lockTimeout: 0:05:00
|
||||
passwdTimeout: 0:00:30
|
||||
visualID: default
|
||||
installColormap: True
|
||||
verbose: False
|
||||
splash: True
|
||||
splashDuration: 0:00:05
|
||||
demoCommand: xscreensaver-settings
|
||||
nice: 10
|
||||
fade: False
|
||||
unfade: False
|
||||
fadeSeconds: 0:00:03
|
||||
ignoreUninstalledPrograms:False
|
||||
dpmsEnabled: False
|
||||
dpmsQuickOff: False
|
||||
dpmsStandby: 2:00:00
|
||||
dpmsSuspend: 2:00:00
|
||||
dpmsOff: 4:00:00
|
||||
grabDesktopImages: True
|
||||
grabVideoFrames: False
|
||||
chooseRandomImages: False
|
||||
imageDirectory:
|
||||
|
||||
mode: one
|
||||
selected: 238
|
||||
|
||||
textMode: url
|
||||
textLiteral: XScreenSaver
|
||||
textFile:
|
||||
textProgram: fortune
|
||||
textURL: https://en.wikipedia.org/w/index.php?title=Special:NewPages&feed=rss
|
||||
dialogTheme: blue
|
||||
settingsGeom: 3239,364 2558,585
|
||||
|
||||
programs: \
|
||||
maze --root \n\
|
||||
GL: superquadrics --root \n\
|
||||
attraction --root \n\
|
||||
blitspin --root \n\
|
||||
greynetic --root \n\
|
||||
helix --root \n\
|
||||
hopalong --root \n\
|
||||
imsmap --root \n\
|
||||
- noseguy --root \n\
|
||||
- pyro --root \n\
|
||||
qix --root \n\
|
||||
- rocks --root \n\
|
||||
rorschach --root \n\
|
||||
decayscreen --root \n\
|
||||
flame --root \n\
|
||||
halo --root \n\
|
||||
slidescreen --root \n\
|
||||
pedal --root \n\
|
||||
bouboule --root \n\
|
||||
- braid --root \n\
|
||||
coral --root \n\
|
||||
deco --root \n\
|
||||
drift --root \n\
|
||||
- fadeplot --root \n\
|
||||
galaxy --root \n\
|
||||
goop --root --planes 42 \n\
|
||||
grav --root \n\
|
||||
ifs --root \n\
|
||||
GL: jigsaw --root \n\
|
||||
julia --root \n\
|
||||
- kaleidescope --root \n\
|
||||
GL: moebius --root \n\
|
||||
moire --root \n\
|
||||
GL: morph3d --root \n\
|
||||
mountain --root \n\
|
||||
munch --root \n\
|
||||
penrose --root \n\
|
||||
GL: pipes --root \n\
|
||||
rdbomb --root \n\
|
||||
GL: rubik --root \n\
|
||||
- sierpinski --root \n\
|
||||
slip --root \n\
|
||||
GL: sproingies --root \n\
|
||||
starfish --root \n\
|
||||
strange --root \n\
|
||||
swirl --root \n\
|
||||
triangle --root \n\
|
||||
xjack --root \n\
|
||||
xlyap --root \n\
|
||||
GL: atlantis --root \n\
|
||||
bsod --root \n\
|
||||
GL: bubble3d --root \n\
|
||||
GL: cage --root \n\
|
||||
- crystal --root \n\
|
||||
cynosure --root \n\
|
||||
discrete --root \n\
|
||||
distort --root \n\
|
||||
epicycle --root \n\
|
||||
flow --root --cycles 281967 --ncolors 55 \
|
||||
--size -20 --no-rotate --no-ride \
|
||||
--no-box \n\
|
||||
GL: glplanet --root \n\
|
||||
interference --root \n\
|
||||
kumppa --root \n\
|
||||
GL: lament --root \n\
|
||||
moire2 --root \n\
|
||||
GL: sonar --root \n\
|
||||
GL: stairs --root \n\
|
||||
truchet --root \n\
|
||||
- vidwhacker --root \n\
|
||||
- webcollage --root \n\
|
||||
blaster --root \n\
|
||||
bumps --root \n\
|
||||
ccurve --root \n\
|
||||
compass --root \n\
|
||||
deluxe --root \n\
|
||||
- demon --root \n\
|
||||
- GL: extrusion --root \n\
|
||||
- loop --root \n\
|
||||
penetrate --root \n\
|
||||
petri --root \n\
|
||||
phosphor --root \n\
|
||||
GL: pulsar --root \n\
|
||||
ripples --root --delay 39344 --duration \
|
||||
63 --fluidity 12 \n\
|
||||
shadebobs --root \n\
|
||||
GL: sierpinski3d --root \n\
|
||||
spotlight --root \n\
|
||||
squiral --root --disorder 0.145 --count 5 \
|
||||
--fill 66 --ncolors 255 \n\
|
||||
wander --root \n\
|
||||
xflame --root \n\
|
||||
xmatrix --root \n\
|
||||
GL: gflux --root --speed 0.05 --squares 40 \
|
||||
--waves 10 --mode wire \n\
|
||||
- nerverot --root \n\
|
||||
xrayswarm --root \n\
|
||||
xspirograph --root \n\
|
||||
GL: circuit --root \n\
|
||||
GL: dangerball --root \n\
|
||||
- GL: dnalogo --root \n\
|
||||
GL: engine --root \n\
|
||||
GL: flipscreen3d --root \n\
|
||||
GL: gltext --root \n\
|
||||
GL: menger --root \n\
|
||||
GL: molecule --root \n\
|
||||
rotzoomer --root \n\
|
||||
scooter --root --delay 15574 --count 40 \
|
||||
--size 200 \n\
|
||||
speedmine --root \n\
|
||||
GL: starwars --root \n\
|
||||
GL: stonerview --root \n\
|
||||
vermiculate --root \n\
|
||||
whirlwindwarp --root \n\
|
||||
zoom --root \n\
|
||||
anemone --root \n\
|
||||
apollonian --root \n\
|
||||
GL: boxed --root \n\
|
||||
GL: cubenetic --root \n\
|
||||
GL: endgame --root \n\
|
||||
euler2d --root \n\
|
||||
fluidballs --root \n\
|
||||
GL: flurry --root \n\
|
||||
- GL: glblur --root --blursize 25 \n\
|
||||
GL: glsnake --root \n\
|
||||
halftone --root --count 26 --spacing 6 \
|
||||
--sizefactor 1.901 --maxspeed 0.009 \
|
||||
--maxmass 0.012 \n\
|
||||
GL: juggler3d --root \n\
|
||||
GL: lavalite --root \n\
|
||||
- polyominoes --root \n\
|
||||
GL: queens --root \n\
|
||||
- GL: sballs --root \n\
|
||||
GL: spheremonics --root \n\
|
||||
twang --root \n\
|
||||
- GL: antspotlight --root \n\
|
||||
apple2 --root \n\
|
||||
GL: atunnel --root \n\
|
||||
barcode --root \n\
|
||||
GL: blinkbox --root \n\
|
||||
GL: blocktube --root \n\
|
||||
GL: bouncingcow --root \n\
|
||||
cloudlife --root \n\
|
||||
GL: cubestorm --root \n\
|
||||
eruption --root \n\
|
||||
GL: flipflop --root \n\
|
||||
GL: flyingtoasters --root \n\
|
||||
fontglide --root \n\
|
||||
GL: gleidescope --root \n\
|
||||
GL: glknots --root \n\
|
||||
GL: glmatrix --root --density 58 --speed 4.098 \n\
|
||||
- GL: glslideshow --root \n\
|
||||
GL: hypertorus --root \n\
|
||||
- GL: jigglypuff --root \n\
|
||||
metaballs --root \n\
|
||||
GL: mirrorblob --root \n\
|
||||
piecewise --root --count 25 --colorspeed \
|
||||
22 --minradius 0.01 --maxradius 0.135 \n\
|
||||
GL: polytopes --root \n\
|
||||
pong --root \n\
|
||||
popsquares --root \n\
|
||||
GL: surfaces --root \n\
|
||||
xanalogtv --root \n\
|
||||
abstractile --root \n\
|
||||
anemotaxis --root \n\
|
||||
- GL: antinspect --root \n\
|
||||
fireworkx --root --shoot \n\
|
||||
fuzzyflakes --root --delay 4918 --speed 6 \
|
||||
--layers 6 --arms 8 --thickness 4 \
|
||||
--bthickness 2 --radius 1 \n\
|
||||
interaggregate --root \n\
|
||||
intermomentary --root \n\
|
||||
memscroller --root \n\
|
||||
GL: noof --root \n\
|
||||
pacman --root \n\
|
||||
GL: pinion --root \n\
|
||||
GL: polyhedra --root \n\
|
||||
- GL: providence --root \n\
|
||||
substrate --root \n\
|
||||
wormhole --root \n\
|
||||
- GL: antmaze --root \n\
|
||||
GL: boing --root \n\
|
||||
boxfit --root \n\
|
||||
GL: carousel --root \n\
|
||||
celtic --root \n\
|
||||
GL: crackberg --root \n\
|
||||
GL: cube21 --root \n\
|
||||
fiberlamp --root \n\
|
||||
GL: fliptext --root \n\
|
||||
GL: glhanoi --root \n\
|
||||
GL: tangram --root \n\
|
||||
GL: timetunnel --root \n\
|
||||
GL: glschool --root \n\
|
||||
GL: topblock --root \n\
|
||||
GL: cubicgrid --root \n\
|
||||
cwaves --root \n\
|
||||
GL: gears --root \n\
|
||||
GL: glcells --root \n\
|
||||
GL: lockward --root --delay 0 \n\
|
||||
m6502 --root \n\
|
||||
GL: moebiusgears --root \n\
|
||||
GL: voronoi --root \n\
|
||||
GL: hypnowheel --root \n\
|
||||
GL: klein --root --klein-bottle lawson \
|
||||
--view-mode walk --mode transparent \
|
||||
--appearance solid --colors depth \
|
||||
--projection-3d perspective \
|
||||
--projection-4d perspective --delay 0 \n\
|
||||
- lcdscrub --root \n\
|
||||
GL: photopile --root \n\
|
||||
GL: skytentacles --root \n\
|
||||
GL: rubikblocks --root \n\
|
||||
GL: companioncube --root \n\
|
||||
GL: hilbert --root \n\
|
||||
GL: tronbit --root \n\
|
||||
GL: geodesic --root \n\
|
||||
hexadrop --root \n\
|
||||
GL: kaleidocycle --root \n\
|
||||
GL: quasicrystal --root \n\
|
||||
GL: unknownpleasures --root \n\
|
||||
binaryring --root \n\
|
||||
GL: cityflow --root \n\
|
||||
GL: geodesicgears --root \n\
|
||||
GL: projectiveplane --root \n\
|
||||
GL: romanboy --root \n\
|
||||
tessellimage --root \n\
|
||||
GL: winduprobot --root \n\
|
||||
GL: splitflap --root \n\
|
||||
GL: cubestack --root \n\
|
||||
GL: cubetwist --root \n\
|
||||
GL: discoball --root \n\
|
||||
GL: dymaxionmap --root \n\
|
||||
GL: energystream --root \n\
|
||||
GL: hexstrut --root \n\
|
||||
GL: hydrostat --root \n\
|
||||
GL: raverhoop --root \n\
|
||||
GL: splodesic --root \n\
|
||||
GL: unicrud --root \n\
|
||||
GL: esper --root \n\
|
||||
GL: vigilance --root \n\
|
||||
GL: crumbler --root \n\
|
||||
filmleader --root \n\
|
||||
glitchpeg --root \n\
|
||||
GL: handsy --root \n\
|
||||
GL: maze3d --root \n\
|
||||
GL: peepers --root \n\
|
||||
GL: razzledazzle --root \n\
|
||||
vfeedback --root \n\
|
||||
GL: deepstars --root \n\
|
||||
GL: gravitywell --root \n\
|
||||
GL: beats --root \n\
|
||||
GL: covid19 --root \n\
|
||||
GL: etruscanvenus --root \n\
|
||||
GL: gibson --root --delay 0 --speed 0.587 \
|
||||
--grid-width 8 --grid-depth 8 --spacing \
|
||||
1 --columns 3 \n\
|
||||
GL: headroom --root \n\
|
||||
GL: sphereeversion --root \n\
|
||||
binaryhorizon --root \n\
|
||||
marbling --root --delay 25410 --gridsize \
|
||||
1 --scale 6 --iterations 3 \n\
|
||||
GL: chompytower --root \n\
|
||||
GL: hextrail --root \n\
|
||||
GL: mapscroller --root \n\
|
||||
GL: nakagin --root \n\
|
||||
GL: squirtorus --root \n\
|
||||
GL: cubocteversion --root \n\
|
||||
droste --root \n\
|
||||
GL: papercube --root \n\
|
||||
GL: skulloop --root \n\
|
||||
GL: highvoltage --root \n\
|
||||
GL: kallisti --root \n\
|
||||
|
||||
|
||||
pointerHysteresis: 10
|
||||
authWarningSlack: 20
|
||||
|
4
GNUstep/Defaults/WMGLOBAL
Normal file
4
GNUstep/Defaults/WMGLOBAL
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
BoldSystemFont = "sans serif:weight=200:pixelsize=12";
|
||||
SystemFont = "sans serif:pixelsize=12";
|
||||
}
|
259
GNUstep/Defaults/WMRootMenu
Normal file
259
GNUstep/Defaults/WMRootMenu
Normal file
|
@ -0,0 +1,259 @@
|
|||
(
|
||||
"Window Maker",
|
||||
(
|
||||
Applications,
|
||||
(
|
||||
System,
|
||||
("ALSA Mixer", EXEC, "kitty alsamixer"),
|
||||
("System Monitor", EXEC, "xterm -e top"),
|
||||
("VM Manager", EXEC, "virt-manager"),
|
||||
(GParted, EXEC, gparted),
|
||||
("WINE Settings", (Winecfg, EXEC, winecfg)),
|
||||
("Plasma Settings", EXEC, systemsettings)
|
||||
),
|
||||
(
|
||||
"File Managers",
|
||||
(Thunar, EXEC, thunar),
|
||||
(PathFinder, EXEC, PathFinder),
|
||||
(Rox, EXEC, rox)
|
||||
),
|
||||
(
|
||||
Terminals,
|
||||
(xterm, EXEC, xterm),
|
||||
(kitty, SHORTCUT, "Mod4+t", EXEC, kitty),
|
||||
(Konsole, EXEC, konsole)
|
||||
),
|
||||
(
|
||||
Internet,
|
||||
(
|
||||
Browsers,
|
||||
(SeaMonkey, EXEC, "seamonkey -browser"),
|
||||
(Firefox, EXEC, firefox),
|
||||
(Chromium, EXEC, chromium),
|
||||
(Dillo, EXEC, dillo)
|
||||
),
|
||||
(
|
||||
Email,
|
||||
(SeaMonkey, EXEC, "seamonkey -mail"),
|
||||
(Thunderbird, EXEC, thunderbird)
|
||||
),
|
||||
(
|
||||
"IM & Voice",
|
||||
("Psi+", EXEC, "psi-plus"),
|
||||
(Pidgin, EXEC, pidgin),
|
||||
(Mumble, EXEC, mumble),
|
||||
("Discord (vesktop)", EXEC, vesktop)
|
||||
),
|
||||
(
|
||||
WorldsPlayer,
|
||||
SHEXEC,
|
||||
"env WINEPREFIX=\"/home/bonkyboo/.local/share/wineprefixes/worldsonline\" wine /mnt/worlds/1904/run.exe"
|
||||
),
|
||||
(Filezilla, EXEC, filezilla),
|
||||
(qBittorrent, EXEC, qbittorrent)
|
||||
),
|
||||
(
|
||||
Games,
|
||||
(Emulators, (RPCS3, EXEC, rpcs3), (PCSX2, EXEC, pcsx2)),
|
||||
(Launchers, (Steam, EXEC, steam), (Lutris, EXEC, lutris)),
|
||||
(Chess, EXEC, xboard)
|
||||
),
|
||||
(
|
||||
Graphics,
|
||||
(Phototonic, EXEC, phototonic),
|
||||
(DigiKam, EXEC, digikam),
|
||||
(GIMP, EXEC, gimp),
|
||||
(
|
||||
"Photoshop CS 5.1",
|
||||
SHEXEC,
|
||||
"env WINEPREFIX=\"/home/bonkyboo/.wine\" wine C:\\\\\\\\ProgramData\\\\\\\\Microsoft\\\\\\\\Windows\\\\\\\\Start\\\\ Menu\\\\\\\\Programs\\\\\\\\Adobe\\\\ Photoshop\\\\ CS5.1\\\\ \\\\(64\\\\ Bit\\\\).lnk"
|
||||
),
|
||||
(Inkscape, EXEC, inkscape),
|
||||
("ImageMagick Display", EXEC, display)
|
||||
),
|
||||
(
|
||||
Video,
|
||||
("GPU Screen Recorder", EXEC, "gpu-screen-recorder-gtk"),
|
||||
(Handbrake, EXEC, ghb),
|
||||
(Kdenlive, EXEC, kdenlive),
|
||||
("Davinci Resolve", EXEC, "/opt/resolve/bin/resolve")
|
||||
),
|
||||
(
|
||||
Sound,
|
||||
(Clementine, EXEC, clementine),
|
||||
(Audacity, EXEC, audacity),
|
||||
(
|
||||
OpenMPT,
|
||||
SHEXEC,
|
||||
"env WINEPREFIX=\"/home/bonkyboo/.wine\" wine C:\\\\\\\\ProgramData\\\\\\\\Microsoft\\\\\\\\Windows\\\\\\\\Start\\\\ Menu\\\\\\\\Programs\\\\\\\\OpenMPT\\\\\\\\OpenMPT.lnk"
|
||||
)
|
||||
),
|
||||
(
|
||||
"Text Editors",
|
||||
(Howl, EXEC, howl),
|
||||
(Adie, EXEC, adie),
|
||||
(GEdit, EXEC, gedit),
|
||||
(Nano, EXEC, "xterm -e nano"),
|
||||
(ElVIs, EXEC, "xterm -e vim")
|
||||
),
|
||||
(
|
||||
Development,
|
||||
(GitAhead, EXEC, gitahead),
|
||||
("Visual Studio Code", EXEC, code),
|
||||
("Intellij IDEA", EXEC, idea),
|
||||
(KDevelop, EXEC, kdevelop),
|
||||
("Qt Designer", EXEC, designer),
|
||||
("GNU Debugger", EXEC, "xterm -e gdb")
|
||||
),
|
||||
(
|
||||
Miscellaneous,
|
||||
(KAudioCreator, EXEC, "/opt/trinity/bin/kaudiocreator"),
|
||||
("K3B CD Copier", EXEC, k3b)
|
||||
)
|
||||
),
|
||||
("Run Command", SHORTCUT, "Mod4+r", EXEC, "%A(Run, Type command:)"),
|
||||
(Workspaces, WORKSPACE_MENU),
|
||||
(
|
||||
"This Workspace",
|
||||
("Hide Others", HIDE_OTHERS),
|
||||
("Show All", SHOW_ALL),
|
||||
("Arrange Icons", ARRANGE_ICONS),
|
||||
(Refresh, REFRESH),
|
||||
("Save Session", SAVE_SESSION),
|
||||
("Clear Session", CLEAR_SESSION)
|
||||
),
|
||||
(
|
||||
"Window Maker",
|
||||
(
|
||||
"Change Appearance",
|
||||
(
|
||||
Themes,
|
||||
OPEN_MENU,
|
||||
"-noext /usr/share/WindowMaker/Themes $HOME/GNUstep/Library/WindowMaker/Themes WITH setstyle"
|
||||
),
|
||||
(
|
||||
Styles,
|
||||
OPEN_MENU,
|
||||
"-noext /usr/share/WindowMaker/Styles $HOME/GNUstep/Library/WindowMaker/Styles WITH setstyle"
|
||||
),
|
||||
(
|
||||
"Icon Sets",
|
||||
OPEN_MENU,
|
||||
"-noext /usr/share/WindowMaker/IconSets $HOME/GNUstep/Library/WindowMaker/IconSets WITH seticons"
|
||||
),
|
||||
(
|
||||
Background,
|
||||
(
|
||||
Solid,
|
||||
(
|
||||
Black,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(solid, \"black\")'"
|
||||
),
|
||||
(
|
||||
Blue,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(solid, \"#505075\")'"
|
||||
),
|
||||
(
|
||||
Indigo,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(solid, \"#243e6c\")'"
|
||||
),
|
||||
(
|
||||
Bluemarine,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(solid, \"#243e6c\")'"
|
||||
),
|
||||
(
|
||||
Purple,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(solid, \"#554466\")'"
|
||||
),
|
||||
(
|
||||
Wheat,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(solid, \"wheat4\")'"
|
||||
),
|
||||
(
|
||||
"Dark Gray",
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(solid, \"#333340\")'"
|
||||
),
|
||||
(
|
||||
Wine,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(solid, \"#400020\")'"
|
||||
)
|
||||
),
|
||||
(
|
||||
Gradient,
|
||||
(
|
||||
Sunset,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(mvgradient, deepskyblue4, black, deepskyblue4, tomato4)'"
|
||||
),
|
||||
(
|
||||
Sky,
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(vgradient, \"blue4\", \"white\"'"
|
||||
),
|
||||
(
|
||||
"Blue Shades",
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(vgradient, \"#7080a5\", \"#101020\"'"
|
||||
),
|
||||
(
|
||||
"Indigo Shades",
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(vgradient, \"#746ebc\", \"#242e4c\"'"
|
||||
),
|
||||
(
|
||||
"Purple Shades",
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(vgradient, \"#654c66\", \"#151426\"'"
|
||||
),
|
||||
(
|
||||
"Wheat Shades",
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(vgradient, \"#a09060\", \"#302010\"'"
|
||||
),
|
||||
(
|
||||
"Grey Shades",
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(vgradient, \"#636380\", \"#131318\"'"
|
||||
),
|
||||
(
|
||||
"Wine Shades",
|
||||
EXEC,
|
||||
"wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\"'"
|
||||
)
|
||||
),
|
||||
(
|
||||
Images,
|
||||
OPEN_MENU,
|
||||
"-noext $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t"
|
||||
)
|
||||
),
|
||||
(
|
||||
"Save Theme",
|
||||
EXEC,
|
||||
"getstyle -p \"%a(Theme name, Name to save theme as)\""
|
||||
),
|
||||
(
|
||||
"Save IconSet",
|
||||
SHEXEC,
|
||||
"geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/\"%a(IconSet name,Name to save icon set as)\""
|
||||
)
|
||||
),
|
||||
("Change Screensaver", EXEC, "xscreensaver-settings"),
|
||||
(
|
||||
"Configure Window Maker",
|
||||
EXEC,
|
||||
"/usr/lib/GNUstep/Applications/WPrefs.app/WPrefs"
|
||||
),
|
||||
("About Window Maker", INFO_PANEL),
|
||||
("Restart Window Maker", RESTART),
|
||||
("Exit Window Maker", EXIT)
|
||||
)
|
||||
)
|
140
GNUstep/Defaults/WMState
Normal file
140
GNUstep/Defaults/WMState
Normal file
|
@ -0,0 +1,140 @@
|
|||
{
|
||||
Dock = {
|
||||
Applications1448 = (
|
||||
{
|
||||
Forced = No;
|
||||
Name = Logo.WMDock;
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Position = "0,0";
|
||||
Lock = No;
|
||||
Command = xosview;
|
||||
},
|
||||
{
|
||||
Forced = No;
|
||||
Name = wmclock.WMClock;
|
||||
DropCommand = "wmclock %d";
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Position = "0,2";
|
||||
Lock = No;
|
||||
PasteCommand = "wmclock %s";
|
||||
Command = wmclock;
|
||||
},
|
||||
{
|
||||
Forced = No;
|
||||
Name = wmsystemtray0.wmsystemtray;
|
||||
DropCommand = "wmsystemtray %d";
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Position = "0,3";
|
||||
Lock = No;
|
||||
PasteCommand = "wmsystemtray %s";
|
||||
Command = wmsystemtray;
|
||||
},
|
||||
{
|
||||
Forced = No;
|
||||
Name = wmsystemtray1.wmsystemtray;
|
||||
DropCommand = "wmsystemtray -w 2 %d";
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Position = "0,4";
|
||||
Lock = No;
|
||||
PasteCommand = "wmsystemtray -w 2 %s";
|
||||
Command = "wmsystemtray -w 2";
|
||||
}
|
||||
);
|
||||
AutoRaiseLower = No;
|
||||
Applications = (
|
||||
{
|
||||
Forced = No;
|
||||
Name = Logo.WMDock;
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Position = "0,0";
|
||||
Lock = No;
|
||||
Command = xosview;
|
||||
},
|
||||
{
|
||||
Forced = No;
|
||||
Name = wmclock.WMClock;
|
||||
DropCommand = "wmclock %d";
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Position = "0,2";
|
||||
Lock = No;
|
||||
PasteCommand = "wmclock %s";
|
||||
Command = wmclock;
|
||||
},
|
||||
{
|
||||
Forced = No;
|
||||
Name = wmsystemtray0.wmsystemtray;
|
||||
DropCommand = "wmsystemtray %d";
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Position = "0,3";
|
||||
Lock = No;
|
||||
PasteCommand = "wmsystemtray %s";
|
||||
Command = wmsystemtray;
|
||||
},
|
||||
{
|
||||
Forced = No;
|
||||
Name = wmsystemtray1.wmsystemtray;
|
||||
DropCommand = "wmsystemtray -w 2 %d";
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Position = "0,4";
|
||||
Lock = No;
|
||||
PasteCommand = "wmsystemtray -w 2 %s";
|
||||
Command = "wmsystemtray -w 2";
|
||||
}
|
||||
);
|
||||
Lowered = Yes;
|
||||
Position = "5296,0";
|
||||
};
|
||||
Clip = {
|
||||
Forced = No;
|
||||
Name = Logo.WMClip;
|
||||
BuggyApplication = No;
|
||||
AutoLaunch = No;
|
||||
Lock = No;
|
||||
Position = "1920,0";
|
||||
Command = "-";
|
||||
};
|
||||
Drawers = (
|
||||
{
|
||||
Dock = {
|
||||
AutoCollapse = No;
|
||||
Applications = ();
|
||||
Collapsed = Yes;
|
||||
AutoAttractIcons = Yes;
|
||||
};
|
||||
Name = Drawer0;
|
||||
Position = "5296,64";
|
||||
}
|
||||
);
|
||||
Workspaces = (
|
||||
{
|
||||
Clip = {
|
||||
AutoRaiseLower = No;
|
||||
Applications = ();
|
||||
AutoCollapse = No;
|
||||
Collapsed = No;
|
||||
AutoAttractIcons = No;
|
||||
Lowered = Yes;
|
||||
};
|
||||
Name = Main;
|
||||
},
|
||||
{
|
||||
Clip = {
|
||||
AutoRaiseLower = No;
|
||||
Applications = ();
|
||||
AutoCollapse = No;
|
||||
Collapsed = No;
|
||||
AutoAttractIcons = No;
|
||||
Lowered = Yes;
|
||||
};
|
||||
Name = Sub;
|
||||
}
|
||||
);
|
||||
}
|
0
GNUstep/Defaults/WMState.W9CEJy
Normal file
0
GNUstep/Defaults/WMState.W9CEJy
Normal file
61
GNUstep/Defaults/WMWindowAttributes
Normal file
61
GNUstep/Defaults/WMWindowAttributes
Normal file
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
xosview.XOsview = {
|
||||
NoMiniaturizeButton = Yes;
|
||||
AlwaysUserIcon = Yes;
|
||||
Icon = inspect.xpm;
|
||||
};
|
||||
clementine.Clementine = {
|
||||
Icon = clementine.Clementine.xpm;
|
||||
};
|
||||
default.default = {
|
||||
NoAppIcon = Yes;
|
||||
};
|
||||
kitty.kitty = {
|
||||
AlwaysUserIcon = Yes;
|
||||
Icon = Shell.png;
|
||||
};
|
||||
"ckb-next.ckb-next" = {
|
||||
NoAppIcon = Yes;
|
||||
AlwaysUserIcon = No;
|
||||
Icon = "ckb-next.ckb-next.xpm";
|
||||
};
|
||||
inkscape.Inkscape = {
|
||||
Icon = draw.xpm;
|
||||
};
|
||||
qbittorrent.qBittorrent = {
|
||||
NoAppIcon = Yes;
|
||||
AlwaysUserIcon = No;
|
||||
};
|
||||
org.inkscape.Inkscape.Inkscape = {
|
||||
AlwaysUserIcon = Yes;
|
||||
Icon = draw.xpm;
|
||||
};
|
||||
"main.Psi+" = {
|
||||
AlwaysUserIcon = No;
|
||||
};
|
||||
Drawer0.WMDrawer = {
|
||||
Icon = Bookshelf.xpm;
|
||||
};
|
||||
steamwebhelper.steam = {
|
||||
NoTitlebar = Yes;
|
||||
NoMiniaturizeButton = Yes;
|
||||
NoBorder = Yes;
|
||||
AlwaysUserIcon = No;
|
||||
NoResizebar = Yes;
|
||||
NoCloseButton = Yes;
|
||||
};
|
||||
kitty = {
|
||||
AlwaysUserIcon = Yes;
|
||||
Icon = Shell.png;
|
||||
};
|
||||
PathFinder. = {
|
||||
NoAppIcon = Yes;
|
||||
AlwaysUserIcon = No;
|
||||
};
|
||||
"psi-plus.Psi+" = {
|
||||
NoAppIcon = Yes;
|
||||
};
|
||||
Logo.WMDock = {
|
||||
Icon = linuxterm.tiff;
|
||||
};
|
||||
}
|
31
GNUstep/Defaults/WPrefs
Normal file
31
GNUstep/Defaults/WPrefs
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
TextureList = ();
|
||||
NoXSetStuff = NO;
|
||||
ColorList = (
|
||||
"#000000",
|
||||
"#292929",
|
||||
"#525252",
|
||||
"#151110",
|
||||
"#a2a2a2",
|
||||
"#cbcbcb",
|
||||
"#f5f5f5",
|
||||
"#cbcb81",
|
||||
"#cb9d7b",
|
||||
"#81cb81",
|
||||
"#81cbc3",
|
||||
"#cb8181",
|
||||
"#8195cb",
|
||||
"#b280cb",
|
||||
"#cb81b2",
|
||||
"#cb4a4a",
|
||||
"#4a5acb",
|
||||
"#4acbc3",
|
||||
"#4acb5a",
|
||||
"#c3cb4a",
|
||||
"#cb804a",
|
||||
"#80cb31",
|
||||
"#c329bb",
|
||||
"#c32973"
|
||||
);
|
||||
BalloonHelp = YES;
|
||||
}
|
113
GNUstep/Defaults/WindowMaker
Normal file
113
GNUstep/Defaults/WindowMaker
Normal file
|
@ -0,0 +1,113 @@
|
|||
{
|
||||
FrameBorderColor = "#b6b6b3";
|
||||
ScreenCaptureKey = "Mod4+Print";
|
||||
MenuDisabledColor = gray60;
|
||||
PixmapPath = (
|
||||
"/home/bonkyboo/GNUstep/Library/WindowMaker/Pixmaps",
|
||||
"/home/bonkyboo/GNUstep/Library/WindowMaker/Backgrounds",
|
||||
"/home/bonkyboo/GNUstep/Library/WindowMaker/CachedPixmaps",
|
||||
"~/pixmaps",
|
||||
"/usr/share/WindowMaker/Pixmaps",
|
||||
"/usr/share/WindowMaker/Backgrounds",
|
||||
"/usr/share/pixmaps"
|
||||
);
|
||||
HotCornerEdge = 2;
|
||||
IconTitleBack = "#18191f";
|
||||
FTitleBack = (
|
||||
mdgradient,
|
||||
"#18191f",
|
||||
"#939abd",
|
||||
"#616185",
|
||||
"#616185",
|
||||
"#5f5f83",
|
||||
"#555575",
|
||||
"#59597a",
|
||||
"#555575",
|
||||
"#939abd"
|
||||
);
|
||||
MiniwindowPreviewBalloons = YES;
|
||||
ClipTitleFont = "Verdana:bold:pixelsize=10";
|
||||
HideKey = "Mod4+H";
|
||||
MaximizeKey = "Mod4+Up";
|
||||
IconTitleFont = "Arial,sans serif:pixelsize=9";
|
||||
LargeDisplayFont = "Trebuchet MS,sans serif:pixelsize=24";
|
||||
PartialCaptureKey = Print;
|
||||
DisableClip = YES;
|
||||
CenterKey = None;
|
||||
HotCorners = NO;
|
||||
MenuTitleFont = "Trebuchet MS,sans serif:bold:pixelsize=12";
|
||||
MoveTo6to12Head = None;
|
||||
SmoothWorkspaceBack = YES;
|
||||
DbClickFullScreen = YES;
|
||||
IconPosition = trh;
|
||||
NoWindowOverDock = YES;
|
||||
WorkspaceBack = (mvgradient, "rgb:50/50/75", "#6a6f9e", "#4b4f70", "#28293c");
|
||||
EdgeResistance = 15;
|
||||
EnforceIconMargin = YES;
|
||||
WindowSnapping = YES;
|
||||
MoveResizeKey = "Mod4+M";
|
||||
AutoArrangeIcons = YES;
|
||||
ClipTitleColor = white;
|
||||
MoveTo12to6Head = None;
|
||||
HotCornerActions = (None, None, None, None);
|
||||
FrameFocusedBorderColor = "#b6b6b3";
|
||||
WindowTitleFont = "Trebuchet MS,sans serif:bold:pixelsize=12";
|
||||
WindowPlaceOrigin = (2759, 798);
|
||||
LHMaximizeKey = "Mod4+Left";
|
||||
RootMenuKey = "Control+Escape";
|
||||
ResizebarBack = (solid, "#989aa6");
|
||||
MiniPreviewSize = 184;
|
||||
DisplayFont = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*";
|
||||
KbdModeLock = NO;
|
||||
OpenTransientOnOwnerWorkspace = YES;
|
||||
CloseRootMenuByLeftOrRightMouseClick = NO;
|
||||
RHMaximizeKey = "Mod4+Right";
|
||||
FrameSelectedBorderColor = "#ffffff";
|
||||
MiniaturizeKey = "Mod4+Down";
|
||||
ToggleKbdModeKey = None;
|
||||
WindowMenuKey = "Mod4+Escape";
|
||||
DragMaximizedWindow = RestoreGeometry;
|
||||
OpaqueResize = YES;
|
||||
MenuTextBack = (mhgradient, "#384246", "#707080", "#4a4a61");
|
||||
WindowPlacement = center;
|
||||
HotCornerDelay = 250;
|
||||
CycleWorkspaces = YES;
|
||||
Attraction = YES;
|
||||
SingleClickLaunch = YES;
|
||||
MenuTextColor = white;
|
||||
IconBack = (
|
||||
mdgradient,
|
||||
gray40,
|
||||
"#6d6aa4",
|
||||
"#564e8c",
|
||||
"#41436c",
|
||||
"#464771",
|
||||
"#595090"
|
||||
);
|
||||
AntialiasedText = YES;
|
||||
LowerKey = None;
|
||||
WindowListKey = None;
|
||||
MenuTextFont = "Trebuchet MS,sans serif:pixelsize=12";
|
||||
MenuTitleBack = (mvgradient, "#18191f", "#474967", "#413b6d");
|
||||
SnapToTopMaximizesFullscreen = YES;
|
||||
CloseKey = "Mod1+F4";
|
||||
WindowCaptureKey = "Mod1+Mod4+Print";
|
||||
WrapMenus = YES;
|
||||
CClipTitleColor = gray60;
|
||||
IconPath = (
|
||||
"/home/bonkyboo/GNUstep/Library/Icons",
|
||||
"/home/bonkyboo/GNUstep/Library/WindowMaker/Pixmaps",
|
||||
"/home/bonkyboo/GNUstep/Library/WindowMaker/CachedPixmaps",
|
||||
"~/pixmaps",
|
||||
"/usr/share/WindowMaker/Icons",
|
||||
"/usr/share/WindowMaker/Pixmaps",
|
||||
"/usr/share/pixmaps"
|
||||
);
|
||||
RaiseKey = None;
|
||||
ModifierKey = Mod4;
|
||||
PTitleBack = (mhgradient, "#5a5c66", "rgb:70/72/7e", "rgb:45/47/4e");
|
||||
UTitleColor = gray20;
|
||||
CirculateRaise = YES;
|
||||
UTitleBack = (mhgradient, "#989aa6", "#9fa1b5", "#86879b");
|
||||
ResizeDisplay = floating;
|
||||
}
|
29
GNUstep/Library/WindowMaker/IconSets/Custom
Normal file
29
GNUstep/Library/WindowMaker/IconSets/Custom
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
xosview.XOsview = {
|
||||
Icon = inspect.xpm;
|
||||
};
|
||||
clementine.Clementine = {
|
||||
Icon = clementine.Clementine.xpm;
|
||||
};
|
||||
kitty.kitty = {
|
||||
Icon = Shell.png;
|
||||
};
|
||||
"ckb-next.ckb-next" = {
|
||||
Icon = "ckb-next.ckb-next.xpm";
|
||||
};
|
||||
inkscape.Inkscape = {
|
||||
Icon = draw.xpm;
|
||||
};
|
||||
org.inkscape.Inkscape.Inkscape = {
|
||||
Icon = draw.xpm;
|
||||
};
|
||||
Drawer0.WMDrawer = {
|
||||
Icon = Bookshelf.xpm;
|
||||
};
|
||||
kitty = {
|
||||
Icon = Shell.png;
|
||||
};
|
||||
Logo.WMDock = {
|
||||
Icon = linuxterm.tiff;
|
||||
};
|
||||
}
|
83
GNUstep/Library/WindowMaker/README
Normal file
83
GNUstep/Library/WindowMaker/README
Normal file
|
@ -0,0 +1,83 @@
|
|||
|
||||
|
||||
The file named menu is the menu in the plain text file format. The files
|
||||
named menu.?? (?? are 2 characters, such as pt) are translations of the
|
||||
same menu. Plain text menus are preprocessed using cpp (the C Pre-Processor),
|
||||
so you can use cpp macros in it.
|
||||
|
||||
The plmenu file is the same menu, but in the property list format.
|
||||
This menu can be edited with WPrefs.app, but since WPrefs.app does not
|
||||
support XIM, it will not allow you to make menus in languages such as
|
||||
Japanese.
|
||||
|
||||
To use the menu in the property list format (plmenu), just replace the
|
||||
~/GNUstep/Defaults/WMRootMenu with it. To use the plain text menu,
|
||||
place the path for the menu in ~/GNUstep/Defaults/WMRootMenu, enclosed
|
||||
in double quotes ("). Ex: "~/GNUstep/Library/WindowMaker/menu"
|
||||
|
||||
Instructions for editing the plain text menus can be found in the menu
|
||||
file itself, kindly translated to your tongue for your convenience, by
|
||||
the translation contributors.
|
||||
|
||||
There is a script to convert plain text menus to property list menus
|
||||
in the utils directory, named wm-oldmenu2new.
|
||||
|
||||
If you are unsure to wich format to use, stick with the plain text menus
|
||||
as they are more flexible. If for some psychological reason you are
|
||||
scared by text based configuration, use the property list menu.
|
||||
|
||||
|
||||
Localized menu file translators:
|
||||
--------------------------------
|
||||
|
||||
File Language Maintainer
|
||||
------------------------------------------------------------------------------
|
||||
menu.ja Japanese MANOME Tomonori <manome@itlb.te.noda.sut.ac.jp>
|
||||
ABE Shige <sabe@ibm.net>
|
||||
menu.pt Portuguese Alfredo K. Kojima <kojima@inf.ufrgs.br>
|
||||
menu.de German Carsten Schaar <nhadcasc@fs-maphy.uni-hannover.de>
|
||||
menu.cz Czech David ©auer <xsauer@hwlab.felk.cvut.cz>
|
||||
menu.ko Korean Chae-Yong Chong <cychong@metro.telecom.samsung.co.kr>
|
||||
Byeong-Chan Kim <redhands@linux.sarang.net>
|
||||
menu.gl Galician Xose Vazquez <xose@arrakis.es>
|
||||
menu.fr French ObiTuarY <obituary@freshmeat.net>
|
||||
menu.it Italian Roberto Checozzo <croberto@aerre.it>
|
||||
menu.ru Russian August S.Sigov <freedomain@actor.ru>
|
||||
menu.es Spanish Rodrigo Hornos Prados <tnetrhp@ctv.es>
|
||||
José Luis Rivas López <jrivas@ares.ipf.uvigo.es>
|
||||
menu.he Hebrew Please send me your name/email if you wrote this
|
||||
We unfortunately lost that info :(
|
||||
menu.tr Turkish F. Kagan Gurkaynak <kgf@wpi.edu>
|
||||
menu.fi Finnish Ville Hautamaki <villeh@photon.joensuu.fi>
|
||||
menu.se Swdish Andreas Persenius <andreas@alfaskop.net>
|
||||
menu.hr Croatian Toni Bilic <tbilic@efos.hr>
|
||||
menu.el Greek Nikolaos Papagrigoriou <papanikos@usa.net>
|
||||
menu.dk Danish John M. Lockard <jlockard@math.lsa.umich.edu>
|
||||
Jacob Sparre Andersen <sparre@cats.nbi.dk>
|
||||
menu.sl Slovene Alen Salamun <snowman@hal9000.medinet.si>
|
||||
menu.hu Hungarian Csanaki Csaba <prew@mail.matav.hu>
|
||||
menu.ca Català Carles Amig<F3> dj_fr3nd@hotmail.com
|
||||
menu.zh_TW.Big5 Chinese Li Wei Jih <lwj83@cs.ccu.edu.tw>
|
||||
menu.zh_CN Chinese Wang Jian <wangjian2@asiainfo.com>
|
||||
menu.pl Polish Maciej Friedel <tytus@tytus.itma.pwr.wroc.pl>
|
||||
menu.bg Bulgarian Slavei Karadjov <slaff@exco.net>
|
||||
menu.sk Slovak judas@hell <tomka@oalevice.sk>
|
||||
menu.nl Dutch Alwin <translations@ziggo.nl>
|
||||
menu.fy Frisian Alwin <translations@ziggo.nl>
|
||||
|
||||
|
||||
|
||||
plmenu.da Danish Birger Langkjer <birger.langkjer@image.dk>
|
||||
plmenu.zh_CN Chinese Wang Jian <wangjian2@asiainfo.com>
|
||||
plmenu.hr Croatian Toni Bilic <tbilic@efos.hr>
|
||||
plmenu.it Italian Michele Campeotto <micampe@tv.record.unipd.it>
|
||||
plmenu.de German Matthias Warkus <mawarkus@t-online.de>
|
||||
plmenu.pl Polish Maciej Friedel <tytus@tytus.itma.pwr.wroc.pl>
|
||||
plmenu.ko Korean Byeong-Chan Kim <redhands@linux.sarang.net>
|
||||
plemnu.es Spanish David A. Schekaiban <nb@zaz.net>
|
||||
plmenu.bg Bulgarian Slavei Karadjov <slaff@exco.net>
|
||||
plmenu.sk Slovak judas@hell <tomka@oalevice.sk>
|
||||
plmenu.ja Japanese Seiichi SATO <sato@cvs-net.co.jp>
|
||||
plmenu.nl Dutch Alwin <translations@ziggo.nl>
|
||||
plmenu.fy Frisian Alwin <translations@ziggo.nl>
|
||||
|
95
GNUstep/Library/WindowMaker/README.themes
Normal file
95
GNUstep/Library/WindowMaker/README.themes
Normal file
|
@ -0,0 +1,95 @@
|
|||
|
||||
|
||||
|
||||
Themes For Window Maker
|
||||
=======================
|
||||
|
||||
Note: the information contained in this file is only valid for themes
|
||||
in the .themed (for theme directory) format, supported in
|
||||
Window Maker 0.20.4 or newer.
|
||||
|
||||
|
||||
How To Install a Theme Pack
|
||||
===========================
|
||||
|
||||
To install a theme, unpack your theme into your WindowMaker directory
|
||||
(the same as old-style themes), usually ~/GNUstep/Library/WindowMaker
|
||||
|
||||
cd ~/GNUstep/Library/WindowMaker
|
||||
gzip -dc "xyztheme.tar.gz" | tar xvf -
|
||||
|
||||
You can also do this in your system-wide WindowMaker directory (usually
|
||||
/usr/local/share/WindowMaker) to have the themes be available to all
|
||||
your users. This will probably need to be done with root access.
|
||||
|
||||
|
||||
How To Load a Theme
|
||||
===================
|
||||
|
||||
Use the setstyle command to load a theme. Example:
|
||||
|
||||
setstyle xyztheme.themed
|
||||
|
||||
Note that if you move the directory of the theme (for example, from
|
||||
~/GNUstep/Library/WindowMaker/Themes to /usr/local/share/WindowMaker/Themes)
|
||||
you will have to reload that theme so that path information is updated.
|
||||
|
||||
|
||||
How To Make a Theme Pack
|
||||
========================
|
||||
|
||||
To create a theme pack from your current configuration, use the getstyle
|
||||
utility with the -p flag. Example:
|
||||
|
||||
getstyle -p ~/GNUstep/Library/WindowMaker/Themes/MyTheme
|
||||
|
||||
This will create a theme pack (a new directory in either the current
|
||||
directory or a directory you specify) named MyTheme.themed, containing
|
||||
everything it requires, including all pixmap files. In this example,
|
||||
the new theme pack would be made in your themes directory and be
|
||||
immediately available in your Themes menu.
|
||||
|
||||
Additionally, you can put a text file named MyTheme.lsm in the MyTheme.themed
|
||||
directory. This file can contain info like copyrights, credits or whatever.
|
||||
|
||||
To distribute your theme, just make a .tar.gz of the .themed directory.
|
||||
This is preferably done from the same directory that you unpack the themes
|
||||
from to maintain consistancy with the old theme format.
|
||||
|
||||
Example:
|
||||
|
||||
cd ~/GNUstep/Library/WindowMaker
|
||||
tar cvf MyTheme.tar Themes/MyTheme.themed
|
||||
gzip MyTheme.tar
|
||||
|
||||
|
||||
How To Delete a Theme Pack
|
||||
==========================
|
||||
|
||||
Just remove the .themed directory. Example:
|
||||
|
||||
cd ~/GNUstep/Library/WindowMaker/Themes
|
||||
rm -fr themename.themed
|
||||
|
||||
|
||||
How To Save Disk Space
|
||||
======================
|
||||
|
||||
If you have more than 1 theme that use the same huge background image,
|
||||
you can delete all the duplicated files and then create hard links in
|
||||
place of them. For example, if you have:
|
||||
|
||||
theme1.themed/back.jpg
|
||||
|
||||
theme2.themed/backimage.jpg
|
||||
|
||||
theme3.themed/back.jpg
|
||||
|
||||
and all three files contain the same image, you can do:
|
||||
|
||||
rm theme2.themed/backimage.jpg
|
||||
rm theme3.themed/back.jpg
|
||||
ln theme1.themed/back.jpg theme2.themed/backimage.jpg
|
||||
ln theme1.themed/back.jpg theme3.themed/back.jpg
|
||||
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 7.5 MiB |
51
GNUstep/Library/WindowMaker/Themes/Raccoons!.themed/style
Normal file
51
GNUstep/Library/WindowMaker/Themes/Raccoons!.themed/style
Normal file
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
FTitleColor = "#ffffff";
|
||||
FrameBorderColor = "#b0b0ad";
|
||||
SelectCursor = (builtin, cross);
|
||||
QuestionCursor = (builtin, question_arrow);
|
||||
MenuDisabledColor = "#999999";
|
||||
IconTitleBack = "#18191f";
|
||||
FTitleBack = (dgradient, "#b59a8f", "#151110");
|
||||
BottomLeftResizeCursor = (builtin, bottom_left_corner);
|
||||
TopLeftResizeCursor = (builtin, top_left_corner);
|
||||
ClipTitleFont = "Verdana:bold:pixelsize=10";
|
||||
IconTitleFont = "Arial,sans serif:pixelsize=9";
|
||||
MenuTextBack = (tdgradient, "2021-08-09_Plandetravail1.jpg", 255, "#6f6460", "#d9cec8");
|
||||
LargeDisplayFont = "Trebuchet MS,sans serif:pixelsize=24";
|
||||
ResizeCursor = (builtin, sizing);
|
||||
TextCursor = (builtin, xterm);
|
||||
TitleJustify = left;
|
||||
IconTitleColor = "#ffffff";
|
||||
MenuTextColor = "#ffffff";
|
||||
IconBack = (tdgradient, "2021-08-09_Plandetravail1.jpg", 76, "#6f6460", "#dacfc9");
|
||||
MenuTitleColor = "#ffffff";
|
||||
MenuTitleFont = "Trebuchet MS,sans serif:bold:pixelsize=12";
|
||||
WindowTitleExtendSpace = 0;
|
||||
NormalCursor = (builtin, left_ptr);
|
||||
ArrowCursor = (builtin, top_left_arrow);
|
||||
MenuTextFont = "Trebuchet MS,sans serif:pixelsize=12";
|
||||
WorkspaceBack = (tpixmap, "2021-08-09_Plandetravail1.jpg", "#505075");
|
||||
VerticalResizeCursor = (builtin, sb_v_double_arrow);
|
||||
HighlightTextColor = "#000000";
|
||||
MenuTitleBack = (dgradient, "#b59a8f", "#151110");
|
||||
ClipTitleColor = "#ffffff";
|
||||
TopRightResizeCursor = (builtin, top_right_corner);
|
||||
WaitCursor = (builtin, watch);
|
||||
HighlightColor = "#ffffff";
|
||||
FrameFocusedBorderColor = "#b0b0ad";
|
||||
BottomRightResizeCursor = (builtin, bottom_right_corner);
|
||||
WindowTitleFont = "Trebuchet MS,sans serif:bold:pixelsize=12";
|
||||
CClipTitleColor = "#999999";
|
||||
MoveCursor = (builtin, fleur);
|
||||
ResizebarBack = (tdgradient, "2021-08-09_Plandetravail1.jpg", 255, "#6f6460", "#d9cec8");
|
||||
MenuStyle = singletexture;
|
||||
HorizontalResizeCursor = (builtin, sb_h_double_arrow);
|
||||
FrameBorderWidth = 1;
|
||||
PTitleBack = (dgradient, "#b59a8f", "#151110");
|
||||
MenuTextExtendSpace = 0;
|
||||
UTitleColor = "#fdf6f6";
|
||||
UTitleBack = (tdgradient, "2021-08-09_Plandetravail1.jpg", 255, "#6f6460", "#d9cec8");
|
||||
PTitleColor = "#ffffff";
|
||||
MenuTitleExtendSpace = 0;
|
||||
FrameSelectedBorderColor = "#f9f9f9";
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
FTitleColor = "#fcfcfc";
|
||||
FrameBorderColor = "#b3b3b0";
|
||||
SelectCursor = (builtin, cross);
|
||||
QuestionCursor = (builtin, question_arrow);
|
||||
MenuDisabledColor = "#ababab";
|
||||
IconTitleBack = "#18191f";
|
||||
FTitleBack = (mdgradient, "#415979", "#051626", "#7391bb");
|
||||
BottomLeftResizeCursor = (builtin, bottom_left_corner);
|
||||
TopLeftResizeCursor = (builtin, top_left_corner);
|
||||
ClipTitleFont = "Verdana:bold:pixelsize=10";
|
||||
IconTitleFont = "Arial,sans serif:pixelsize=9";
|
||||
MenuTextBack = (mdgradient, "#386569", "#051c26", "#59999f");
|
||||
LargeDisplayFont = "Trebuchet MS,sans serif:pixelsize=24";
|
||||
ResizeCursor = (builtin, sizing);
|
||||
TextCursor = (builtin, xterm);
|
||||
TitleJustify = left;
|
||||
IconTitleColor = "#fdfdfd";
|
||||
MenuTextColor = "#fcfcfc";
|
||||
IconBack = (mdgradient, "#384161", "#212526", "#474a70");
|
||||
MenuTitleColor = "#fcfcfc";
|
||||
MenuTitleFont = "Trebuchet MS,sans serif:bold:pixelsize=12";
|
||||
WindowTitleExtendSpace = 0;
|
||||
NormalCursor = (builtin, left_ptr);
|
||||
ArrowCursor = (builtin, top_left_arrow);
|
||||
MenuTextFont = "Trebuchet MS,sans serif:pixelsize=12";
|
||||
WorkspaceBack = (spixmap, SeaNight.jpeg, black);
|
||||
VerticalResizeCursor = (builtin, sb_v_double_arrow);
|
||||
HighlightTextColor = "#71b3d4";
|
||||
MenuTitleBack = (mdgradient, "#415979", "#051626", "#7391bb");
|
||||
ClipTitleColor = "#fdfdfd";
|
||||
TopRightResizeCursor = (builtin, top_right_corner);
|
||||
WaitCursor = (builtin, watch);
|
||||
HighlightColor = "#595d8b";
|
||||
FrameFocusedBorderColor = "#b3b3b0";
|
||||
BottomRightResizeCursor = (builtin, bottom_right_corner);
|
||||
WindowTitleFont = "DejaVu Serif:slant=0:weight=80:width=100:pixelsize=12";
|
||||
CClipTitleColor = "#979797";
|
||||
MoveCursor = (builtin, fleur);
|
||||
ResizebarBack = (mdgradient, "#386569", "#051c26", "#59999f");
|
||||
MenuStyle = normal;
|
||||
HorizontalResizeCursor = (builtin, sb_h_double_arrow);
|
||||
FrameBorderWidth = 1;
|
||||
PTitleBack = (mdgradient, "#384161", "#212526", "#474a70");
|
||||
MenuTextExtendSpace = 0;
|
||||
UTitleColor = "#d4d4d4";
|
||||
UTitleBack = (mdgradient, "#386569", "#051c26", "#59999f");
|
||||
PTitleColor = "#fcfcfc";
|
||||
MenuTitleExtendSpace = 0;
|
||||
FrameSelectedBorderColor = "#fcfcfc";
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 962 KiB |
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
FTitleColor = "#fafafa";
|
||||
FrameBorderColor = "#b1b1ae";
|
||||
SelectCursor = (builtin, cross);
|
||||
QuestionCursor = (builtin, question_arrow);
|
||||
MenuDisabledColor = "#a9a9a9";
|
||||
IconTitleBack = "#18191f";
|
||||
FTitleBack = (dgradient, "#983e71", "#fe47ad");
|
||||
BottomLeftResizeCursor = (builtin, bottom_left_corner);
|
||||
TopLeftResizeCursor = (builtin, top_left_corner);
|
||||
ClipTitleFont = "Verdana:bold:pixelsize=10";
|
||||
IconTitleFont = "Arial,sans serif:pixelsize=9";
|
||||
MenuTextBack = (dgradient, "#23526a", "#0093de");
|
||||
LargeDisplayFont = "Trebuchet MS,sans serif:pixelsize=24";
|
||||
ResizeCursor = (builtin, sizing);
|
||||
TextCursor = (builtin, xterm);
|
||||
TitleJustify = left;
|
||||
IconTitleColor = "#fbfbfb";
|
||||
MenuTextColor = "#fafafa";
|
||||
IconBack = (dgradient, "#23526a", "#0093de");
|
||||
MenuTitleColor = "#fafafa";
|
||||
MenuTitleFont = "Trebuchet MS,sans serif:bold:pixelsize=12";
|
||||
WindowTitleExtendSpace = 0;
|
||||
NormalCursor = (builtin, left_ptr);
|
||||
ArrowCursor = (builtin, top_left_arrow);
|
||||
MenuTextFont = "Trebuchet MS,sans serif:pixelsize=12";
|
||||
WorkspaceBack = (spixmap, BIASWREC.png, "#000000");
|
||||
VerticalResizeCursor = (builtin, sb_v_double_arrow);
|
||||
HighlightTextColor = "#71b1d2";
|
||||
MenuTitleBack = (dgradient, "#983e71", "#fe47ad");
|
||||
ClipTitleColor = "#fbfbfb";
|
||||
TopRightResizeCursor = (builtin, top_right_corner);
|
||||
WaitCursor = (builtin, watch);
|
||||
HighlightColor = "#595d89";
|
||||
FrameFocusedBorderColor = "#b1b1ae";
|
||||
BottomRightResizeCursor = (builtin, bottom_right_corner);
|
||||
WindowTitleFont = "DejaVu Serif:slant=0:weight=80:width=100:pixelsize=12";
|
||||
CClipTitleColor = "#959595";
|
||||
MoveCursor = (builtin, fleur);
|
||||
ResizebarBack = (hgradient, "#973e71", "#fd47ac");
|
||||
MenuStyle = normal;
|
||||
HorizontalResizeCursor = (builtin, sb_h_double_arrow);
|
||||
FrameBorderWidth = 1;
|
||||
PTitleBack = (dgradient, "#983e71", "#fe47ad");
|
||||
MenuTextExtendSpace = 0;
|
||||
UTitleColor = "#d2d2d2";
|
||||
UTitleBack = (dgradient, "#23526a", "#0093de");
|
||||
PTitleColor = "#fafafa";
|
||||
MenuTitleExtendSpace = 0;
|
||||
FrameSelectedBorderColor = "#fafafa";
|
||||
}
|
18
GNUstep/Library/WindowMaker/autostart
Executable file
18
GNUstep/Library/WindowMaker/autostart
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Place applications to be executed when WindowMaker is started here.
|
||||
# This should only be used for non-X applications or applications that
|
||||
# do not support session management. Other applications should be restarted
|
||||
# by the WindowMaker session restoring mechanism. For that, you should
|
||||
# either set SaveSessionOnExit=YES or select "Save Session" in the Workspace
|
||||
# submenu of the root menu when all applications you want started are
|
||||
# running.
|
||||
#
|
||||
# WindowMaker will wait until this script finishes, so if you run any
|
||||
# commands that take long to execute (like a xterm), put a ``&'' in the
|
||||
# end of the command line.
|
||||
#
|
||||
# This file must be executable.
|
||||
#
|
||||
xset m 10/10 1
|
||||
|
11
GNUstep/Library/WindowMaker/exitscript
Executable file
11
GNUstep/Library/WindowMaker/exitscript
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Place commands to be executed when WindowMaker is exited here.
|
||||
#
|
||||
# WindowMaker will wait until this script finishes, so if you run any
|
||||
# commands that take long to execute (like a xterm), put a ``&'' in the
|
||||
# end of the command line.
|
||||
#
|
||||
# This file must be executable.
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user