├── .bashrc ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .xinitrc ├── 50-synaptics.conf ├── 60-unicorn.conf ├── LICENSE ├── README.md ├── applications ├── uniApps.desktop ├── uniDesktop.desktop └── uniLauncher.desktop ├── autostart ├── cortile.desktop ├── plank_dock.desktop ├── plank_theme.desktop └── ulauncher.desktop ├── cortile └── config.toml ├── docks.ini ├── failsafe └── xfce4 │ ├── desktop │ └── icons.screen.latest.rc │ ├── panel │ └── launcher-15 │ │ └── uniOut.desktop │ ├── terminal │ └── terminalrc │ └── xfconf │ └── xfce-perchannel-xml │ ├── displays.xml │ ├── keyboards.xml │ ├── thunar.xml │ ├── xfce4-desktop.xml │ ├── xfce4-keyboard-shortcuts.xml │ ├── xfce4-notifyd.xml │ ├── xfce4-panel.xml │ ├── xfce4-power-manager.xml │ ├── xfce4-session.xml │ ├── xfce4-settings-manager.xml │ ├── xfdashboard.xml │ ├── xfwm4.xml │ └── xsettings.xml ├── gtk-3.0 └── gtk.css ├── gtk-4.0 └── gtk.css ├── icons ├── duckduckgo.png ├── github-logo.png ├── uniApps.png ├── uniDesktop.png ├── uniLauncher.png └── uniOut.png ├── lightpad └── background.png ├── logo.png ├── logo.svg ├── plank └── dock1 │ └── launchers │ ├── 00-uniLauncher.dockitem │ ├── 01-uniApps.dockitem │ ├── 02-uniDesktop.dockitem │ ├── 03-firefox.dockitem │ ├── 04-FileManager.dockitem │ ├── 05-codium.dockitem │ ├── 06-xfce4-terminal.dockitem │ └── 07-org.rhinolinux.system.dockitem ├── rhino ├── geo.png ├── moon.png ├── mountains.png ├── remix.png ├── rolling-rhino-default.png ├── simple.png └── waves.png ├── rhinoplank └── dock.theme ├── startunicorn ├── ulauncher ├── settings.json ├── shortcuts.json └── user-themes │ └── rhino │ ├── generated.css │ ├── manifest.json │ ├── theme-gtk-3.20.css │ └── theme.css ├── unicorn-dashboard └── xfdashboard-1.0 │ ├── animations.xml │ ├── effects.xml │ ├── minimal.png │ ├── xfdashboard-minimal.css │ ├── xfdashboard-secondary.xml │ ├── xfdashboard.css │ ├── xfdashboard.theme │ └── xfdashboard.xml ├── unicorn-session ├── unicorn.desktop ├── unicorn_badge-symbolic.svg ├── xfce4 ├── desktop │ ├── icons.screen.latest.rc │ ├── icons.screen0-1904x1024.rc │ ├── icons.screen0-1904x1025.rc │ ├── icons.screen0-1904x1064.rc │ └── icons.screen0-1904x990.rc ├── helpers.rc ├── panel │ └── launcher-15 │ │ └── uniOut.desktop ├── terminal │ └── terminalrc └── xfconf │ └── xfce-perchannel-xml │ ├── displays.xml │ ├── keyboards.xml │ ├── thunar.xml │ ├── xfce4-desktop.xml │ ├── xfce4-keyboard-shortcuts.xml │ ├── xfce4-notifyd.xml │ ├── xfce4-panel.xml │ ├── xfce4-power-manager.xml │ ├── xfce4-session.xml │ ├── xfce4-settings-manager.xml │ ├── xfdashboard.xml │ ├── xfwm4.xml │ └── xsettings.xml └── xinitrc /.bashrc: -------------------------------------------------------------------------------- 1 | # ~/.bashrc: executed by bash(1) for non-login shells. 2 | # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) 3 | # for examples 4 | 5 | # If not running interactively, don't do anything 6 | case $- in 7 | *i*) ;; 8 | *) return ;; 9 | esac 10 | 11 | # don't put duplicate lines or lines starting with space in the history. 12 | # See bash(1) for more options 13 | HISTCONTROL=ignoreboth 14 | 15 | # append to the history file, don't overwrite it 16 | shopt -s histappend 17 | 18 | # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) 19 | HISTSIZE=1000 20 | HISTFILESIZE=2000 21 | 22 | # check the window size after each command and, if necessary, 23 | # update the values of LINES and COLUMNS. 24 | shopt -s checkwinsize 25 | 26 | # If set, the pattern "**" used in a pathname expansion context will 27 | # match all files and zero or more directories and subdirectories. 28 | #shopt -s globstar 29 | 30 | # make less more friendly for non-text input files, see lesspipe(1) 31 | [[ -x /usr/bin/lesspipe ]] && eval "$(SHELL=/bin/sh lesspipe)" 32 | 33 | # set variable identifying the chroot you work in (used in the prompt below) 34 | if [[ -z ${debian_chroot:-} ]] && [[ -r /etc/debian_chroot ]]; then 35 | debian_chroot=$(< /etc/debian_chroot) 36 | fi 37 | 38 | # set a fancy prompt (non-color, unless we know we "want" color) 39 | case "$TERM" in 40 | xterm-color | *-256color) color_prompt=yes ;; 41 | esac 42 | 43 | # uncomment for a colored prompt, if the terminal has the capability; turned 44 | # off by default to not distract the user: the focus in a terminal window 45 | # should be on the output of commands, not on the prompt 46 | #force_color_prompt=yes 47 | 48 | if [[ -n $force_color_prompt ]]; then 49 | if [[ -x /usr/bin/tput ]] && tput setaf 1 >&/dev/null; then 50 | # We have color support; assume it's compliant with Ecma-48 51 | # (ISO/IEC-6429). (Lack of such support is extremely rare, and such 52 | # a case would tend to support setf rather than setaf.) 53 | color_prompt=yes 54 | else 55 | color_prompt= 56 | fi 57 | fi 58 | 59 | # comment to remove the `git status` checking '*' and '+' text in the prompt 60 | export GIT_PS1_SHOWDIRTYSTATE=1 61 | 62 | if [[ $color_prompt == yes ]]; then 63 | PS1='${debian_chroot:+($debian_chroot) }$(__git_ps1 "(%s) ")\[\e[1m\][\[\e[38;5;82m\]\w\[\e[39m\]] \[\e[38;5;219m\]\u\[\e[38;5;231m\]@\[\e[38;5;199m\]\h \[\e[38;5;255m\]\$ \[\e[0m\]' 64 | else 65 | PS1='${debian_chroot:+($debian_chroot) }$(__git_ps1 "(%s) ")[\w] \u@\h \$ ' 66 | fi 67 | unset color_prompt force_color_prompt 68 | 69 | # If this is an xterm set the title to user@host:dir 70 | case "$TERM" in 71 | xterm* | rxvt*) 72 | PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" 73 | ;; 74 | *) ;; 75 | esac 76 | 77 | # enable color support of ls and also add handy aliases 78 | if [[ -x /usr/bin/dircolors ]]; then 79 | [[ -r ~/.dircolors ]] && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" 80 | alias ls='ls --color=auto' 81 | #alias dir='dir --color=auto' 82 | #alias vdir='vdir --color=auto' 83 | 84 | alias grep='grep --color=auto' 85 | alias fgrep='fgrep --color=auto' 86 | alias egrep='egrep --color=auto' 87 | fi 88 | 89 | # colored GCC warnings and errors 90 | #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' 91 | 92 | # some more ls aliases 93 | alias ll='ls -alF' 94 | alias la='ls -A' 95 | alias l='ls -CF' 96 | 97 | # Add an "alert" alias for long running commands. Use like so: 98 | # sleep 10; alert 99 | alias alert='notify-send --urgency=low -i "$( (($? == 0)) && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' 100 | 101 | # Alias definitions. 102 | # You may want to put all your additions into a separate file like 103 | # ~/.bash_aliases, instead of adding them here directly. 104 | # See /usr/share/doc/bash-doc/examples in the bash-doc package. 105 | 106 | if [[ -f ~/.bash_aliases ]]; then 107 | source ~/.bash_aliases 108 | fi 109 | 110 | # enable programmable completion features (you don't need to enable 111 | # this, if it's already enabled in /etc/bash.bashrc and /etc/profile 112 | # sources /etc/bash.bashrc). 113 | if ! shopt -oq posix; then 114 | if [[ -f /usr/share/bash-completion/bash_completion ]]; then 115 | source /usr/share/bash-completion/bash_completion 116 | elif [[ -f /etc/bash_completion ]]; then 117 | source /etc/bash_completion 118 | fi 119 | fi 120 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: 'BUG: [Title]' 5 | labels: bug 6 | assignees: ajstrongdev 7 | 8 | --- 9 | 10 | **Rhino Linux Version:** 11 | A numerical version for Rhino Linux. Example: `2023.1`, - Version number can be found by running `neofetch` (preinstalled) or with the "Your System" application. 12 | 13 | **Platform:** 14 | [CPU Architecture / Device] 15 | 16 | **Describe the bug** 17 | A clear and concise description of what the bug is. 18 | 19 | **To Reproduce** 20 | Steps to reproduce the behavior: 21 | 1. Go to '...' 22 | 2. Click on '....' 23 | 3. Scroll down to '....' 24 | 4. See error 25 | 26 | **Expected behavior** 27 | A clear and concise description of what you expected to happen. 28 | 29 | **Screenshots** 30 | If applicable, add screenshots to help explain your problem. 31 | 32 | **Additional context** 33 | Add any other context about the problem here. 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.xinitrc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec /usr/bin/unicorn-session 3 | -------------------------------------------------------------------------------- /50-synaptics.conf: -------------------------------------------------------------------------------- 1 | Section "InputClass" 2 | Identifier "Default clickpad buttons" 3 | MatchDriver "synaptics" 4 | Option "FingerLow" "5" 5 | Option "FingerHigh" "10" 6 | EndSection 7 | -------------------------------------------------------------------------------- /60-unicorn.conf: -------------------------------------------------------------------------------- 1 | [Seat:*] 2 | user-session=unicorn 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Issues Tracker 2 | 3 | To report issues or propose new features for this repository, visit [our tracker](https://github.com/rhino-linux/tracker). 4 | 5 | # Rhino Linux XFCE4 Dotfiles 6 | Here are the XFCE4 Dotfiles. These files customize the interface to best suit your needs as a Rhino Linux user. Enjoy a start menu that lets you easily read man pages, search the web using DuckDuckGo, search for your files, read Wikipedia, run programs in a Teriminal, and open webpages at the press of the ENTER key. Use a terminal that is eye-catching. Experience a XFCE experience like never before! 7 | 8 | If you'd like more information and tutorials, consider [checking out our wiki](https://wiki.rhinolinux.org). 9 | 10 | ## Directory Structure 11 | Here is a directory structure of the dotfiles. 12 | 13 | . 14 | ├── logo.png 15 | ├── logo.svg 16 | ├── README.md 17 | ├── rhino 18 | │   ├── geo.png 19 | │   ├── moon.png 20 | │   ├── mountains.png 21 | │   ├── remix.png 22 | │   ├── rolling-rhino-default.png 23 | │   ├── simple.png 24 | │   └── waves.png 25 | └── xfce4 26 | ├── desktop 27 | │   ├── icons.screen0-1904x990.rc 28 | │   └── icons.screen.latest.rc -> /home/httpllamaz/.config/xfce4/desktop/icons.screen0-1904x990.rc 29 | ├── panel 30 | │   └── whiskermenu-1.rc 31 | ├── terminal 32 | │   └── terminalrc 33 | └── xfconf 34 | └── xfce-perchannel-xml 35 | ├── displays.xml 36 | ├── keyboards.xml 37 | ├── thunar.xml 38 | ├── xfce4-desktop.xml 39 | ├── xfce4-keyboard-shortcuts.xml 40 | ├── xfce4-notifyd.xml 41 | ├── xfce4-panel.xml 42 | ├── xfce4-power-manager.xml 43 | ├── xfce4-session.xml 44 | ├── xfce4-settings-manager.xml 45 | ├── xfwm4.xml 46 | └── xsettings.xml 47 | 48 | - **README.md** — You are here. 49 | - **rhino** — Our logo assets and desktop backgrounds 50 | - **logos** - All the logos we use 51 | - **xfce4** — All of the XFCE4 Configuration 52 | - **desktop** — Sets the icons we use 53 | - **panel** — Used to customize the Whisker Menu 54 | - **terminal** — Config for our Terminal 55 | - **xfconf** — The majority of config files stored as XML 56 | 57 | -------------------------------------------------------------------------------- /applications/uniApps.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | Name=Application Grid 5 | Comment= 6 | Exec=lightpad 7 | Icon=uniApps 8 | Path= 9 | Terminal=false 10 | StartupNotify=false 11 | NotShowIn=XFCE;Unity;KDE;GNOME; 12 | -------------------------------------------------------------------------------- /applications/uniDesktop.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | Name=Desktop Switcher 5 | Comment=Maybe a Gnome shell like dashboard for Xfce 6 | Exec=/usr/bin/xfdashboard 7 | Icon=uniDesktop 8 | Path= 9 | Terminal=false 10 | StartupNotify=false 11 | NotShowIn=XFCE;Unity;KDE;GNOME; 12 | -------------------------------------------------------------------------------- /applications/uniLauncher.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | Name=Search Bar 5 | Comment=Application launcher for Linux 6 | Exec=sh -c "pgrep -x ulauncher >/dev/null && env GDK_BACKEND=x11 ulauncher-toggle || env GDK_BACKEND=x11 ulauncher" 7 | Icon=uniLauncher 8 | Path= 9 | Terminal=false 10 | StartupNotify=false 11 | NotShowIn=XFCE;Unity;KDE;GNOME; 12 | -------------------------------------------------------------------------------- /autostart/cortile.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Version=2.3.0 4 | Type=Application 5 | Name=Cortile 6 | Comment=Tiling Tool 7 | Exec=cortile 8 | OnlyShowIn=XFCE; 9 | RunHook=0 10 | StartupNotify=false 11 | Terminal=false 12 | Hidden=false 13 | -------------------------------------------------------------------------------- /autostart/plank_dock.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Version=0.9.4 4 | Type=Application 5 | Name=Plank Dock 6 | Comment=Dock app 7 | Exec=plank 8 | OnlyShowIn=XFCE; 9 | RunHook=0 10 | StartupNotify=false 11 | Terminal=false 12 | Hidden=false 13 | -------------------------------------------------------------------------------- /autostart/plank_theme.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Version=1.0 4 | Type=Application 5 | Name=Plank Theme 6 | Comment=Themeing for Plank 7 | Exec=bash -c "cat /home/$USER/.config/docks.ini | dconf load /net/launchpad/plank/docks/; mv /home/$USER/.config/autostart/plank_theme.desktop /home/$USER/.config/autostart/plank_theme.desktop.bak" 8 | OnlyShowIn=XFCE; 9 | RunHook=0 10 | StartupNotify=false 11 | Terminal=false 12 | Hidden=false 13 | 14 | -------------------------------------------------------------------------------- /autostart/ulauncher.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Ulauncher 3 | Comment=Application launcher for Linux 4 | GenericName=Launcher 5 | Categories=GNOME;GTK;Utility; 6 | TryExec=/usr/bin/ulauncher 7 | Exec=env GDK_BACKEND=x11 /usr/bin/ulauncher --hide-window 8 | Icon=ulauncher 9 | Terminal=false 10 | Type=Application 11 | -------------------------------------------------------------------------------- /cortile/config.toml: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # # 3 | # https://github.com/leukipp/cortile/blob/main/config.toml # 4 | # # 5 | ################################################################################ 6 | 7 | #################################### Tiling #################################### 8 | 9 | # Tiling will be enabled on application start if set to true (true | false). 10 | tiling_enabled = false 11 | 12 | # Initial tiling layout ("fullscreen" | "vertical-left" | "vertical-right" | "horizontal-top" | "horizontal-bottom"). 13 | tiling_layout = "vertical-left" 14 | 15 | # An overlay window is displayed for this time period [ms] when the layout was changed (0 = disabled). 16 | tiling_gui = 1500 17 | 18 | # Menu entries in systray which shows the tiling state as icon ([] = disabled). 19 | # tiling_icon = [ 20 | # ['ACTION', 'TEXT'] = ['action strings from [keys] section', 'text to show in the menu'], 21 | # ['', ''] = 'show a separator line', 22 | # ] 23 | tiling_icon = [ 24 | ['toggle', 'Enabled'], 25 | ['', ''], 26 | ['master_increase', 'Add Parent'], 27 | ['master_decrease', 'Remove Parent'], 28 | ['', ''], 29 | ['slave_increase', 'Add Child'], 30 | ['slave_decrease', 'Remove Child'], 31 | ['', ''], 32 | ['exit', 'Exit'], 33 | ] 34 | 35 | #################################### Window #################################### 36 | 37 | # Regex RE2 syntax to ignore windows (WM_CLASS string can be found by running 'xprop WM_CLASS'). 38 | # window_ignore = [ 39 | # ['WM_CLASS', 'WM_NAME'] = ['ignore all windows with this class', 'but allow those with this name'] 40 | # ] 41 | window_ignore = [ 42 | ['nm.*', ''], 43 | ['gcr.*', ''], 44 | ['polkit.*', ''], 45 | ['wrapper.*', ''], 46 | ['lightdm.*', ''], 47 | ['blueman.*', ''], 48 | ['plank', ''], 49 | ['xfce4-panel', ''], 50 | ['rhinosystem', ''], 51 | ['ulauncher', ''], 52 | ['Ulauncher', ''], 53 | ['pavucontrol.*', ''], 54 | ['firefox.*', '.*Mozilla Firefox'], 55 | ] 56 | 57 | # Maximum number of allowed master windows (0 - 5). 58 | window_masters_max = 3 59 | 60 | # Maximum number of allowed slave windows (1 - 5). 61 | window_slaves_max = 3 62 | 63 | # How much space should be left between windows (0 - 100). 64 | window_gap_size = 10 65 | 66 | # Window decorations will be removed if set to false (true | false). 67 | window_decoration = true 68 | 69 | ################################## Proportion ################################## 70 | 71 | # Initial division of master-slave area (0.0 - 1.0). 72 | proportion = 0.5 73 | 74 | # How much to increment/decrement master-slave area (0.0 - 1.0). 75 | proportion_step = 0.05 76 | 77 | # Minimum window width/height in proportion to workspace (0.0 - 1.0). 78 | proportion_min = 0.2 79 | 80 | ##################################### Edge ##################################### 81 | 82 | # Additional margin of the tiling area ([top, right, bottom, left]). 83 | edge_margin = [0, 0, 0, 65] 84 | 85 | # Width and height of a hot-corner area within the edge corners (0 - 100). 86 | edge_corner_size = 10 87 | 88 | # Width or height of a hot-corner area within the edge centers (0 - 100). 89 | edge_center_size = 100 90 | 91 | ################################################################################ 92 | [colors] # RGBA color values used for ui elements. # 93 | ################################################################################ 94 | 95 | # Layout window text color. 96 | gui_text = [255, 255, 255, 255] 97 | 98 | # Layout window background color. 99 | gui_background = [30, 30, 40, 255] 100 | 101 | # Layout slave client rectangle color. 102 | gui_client_slave = [58, 58, 78, 255] 103 | 104 | # Layout master client rectangle color. 105 | gui_client_master = [189, 147, 249, 255] 106 | 107 | # Systray icon background color. 108 | icon_background = [0, 0, 0, 0] 109 | 110 | # Systray icon foreground color. 111 | icon_foreground = [255, 255, 255, 255] 112 | 113 | ################################################################################ 114 | [keys] # Key symbols can be found by running 'xev'. # 115 | ################################################################################ 116 | 117 | # Enable tiling on the current screen. 118 | enable = "Mod4-Shift-T" 119 | 120 | # Disable tiling on the current screen. 121 | disable = "Control-Shift-Home" 122 | 123 | # Disable tiling and restore windows on the current screen. 124 | restore = "Control-Shift-End" 125 | 126 | # Toggle between enable and disable on the current screen. 127 | toggle = "Mod4-Shift-Y" 128 | 129 | # Cycles through next layouts. 130 | cycle_next = "Control-Shift-Next" 131 | 132 | # Cycles through previous layouts. 133 | cycle_previous = "Control-Shift-Prior" 134 | 135 | # Activates the fullscreen layout. 136 | layout_fullscreen = "Control-Shift-Space" 137 | 138 | # Activates the vertical-left layout. 139 | layout_vertical_left = "Control-Shift-Left" 140 | 141 | # Activates the vertical-right layout. 142 | layout_vertical_right = "Control-Shift-Right" 143 | 144 | # Activates the horizontal-top layout. 145 | layout_horizontal_top = "Control-Shift-Up" 146 | 147 | # Activates the horizontal-bottom layout. 148 | layout_horizontal_bottom = "Control-Shift-Down" 149 | 150 | # Make the active window a master. 151 | master_make = "Mod1-Shift-M" 152 | 153 | # Increase the number of masters. 154 | master_increase = "Control-Shift-Plus" 155 | 156 | # Decrease the number of masters. 157 | master_decrease = "Control-Shift-Minus" 158 | 159 | # Increase the number of slaves. 160 | slave_increase = "Control-Shift-KP_Add" 161 | 162 | # Decrease the number of slaves. 163 | slave_decrease = "Control-Shift-KP_Subtract" 164 | 165 | # Increase the proportion of master-slave area. 166 | proportion_increase = "Mod1-Shift-L" 167 | 168 | # Decrease the proportion of master-slave area. 169 | proportion_decrease = "Mod1-Shift-H" 170 | 171 | # Moves focus to the next window. 172 | window_next = "Mod4-Right" 173 | 174 | # Moves focus to the previous window. 175 | window_previous = "Mod4-Left" 176 | 177 | # The commands above will affect all screens if this key is pressed in addition (Mod1 = Alt_L). 178 | mod_screens = "Mod1" 179 | 180 | # The commands above will affect all workspaces if this key is pressed in addition (Mod4 = Super_L). 181 | mod_workspaces = "Mod4" 182 | 183 | ################################################################################ 184 | [corners] # Action strings from [keys] or external commands. # 185 | ################################################################################ 186 | 187 | # Corner at top left. 188 | top_left = "window_previous" 189 | 190 | # Corner at top center. 191 | top_center = "" 192 | 193 | # Corner at top right. 194 | top_right = "master_make" 195 | 196 | # Corner at center right. 197 | center_right = "" 198 | 199 | # Corner at bottom right. 200 | bottom_right = "proportion_increase" 201 | 202 | # Corner at bottom center. 203 | bottom_center = "" 204 | 205 | # Corner at bottom left. 206 | bottom_left = "proportion_decrease" 207 | 208 | # Corner at center left. 209 | center_left = "" 210 | 211 | ################################################################################ 212 | [systray] # Action strings from [keys] or external commands. # 213 | ################################################################################ 214 | 215 | # Icon left click with pointer. 216 | click_left = "" 217 | 218 | # Icon middle click with pointer. 219 | click_middle = "toggle" 220 | 221 | # Icon right click with pointer. 222 | click_right = "" 223 | 224 | # Icon vertical scroll up with pointer. 225 | scroll_up = "cycle_previous" 226 | 227 | # Icon vertical scroll down with pointer. 228 | scroll_down = "cycle_next" 229 | 230 | # Icon horizontal scroll left with pointer. 231 | scroll_left = "proportion_decrease" 232 | 233 | # Icon horizontal scroll right with pointer. 234 | scroll_right = "proportion_increase" 235 | -------------------------------------------------------------------------------- /docks.ini: -------------------------------------------------------------------------------- 1 | [dock1] 2 | current-workspace-only=false 3 | dock-items=['00-uniLauncher.dockitem', '01-uniApps.dockitem', '02-uniDesktop.dockitem', '03-firefox.dockitem', '04-FileManager.dockitem', '05-codium.dockitem', '06-xfce4-terminal.dockitem', '07-org.rhinolinux.system.dockitem'] 4 | hide-mode='intelligent' 5 | icon-size=48 6 | pinned-only=false 7 | position='left' 8 | pressure-reveal=false 9 | theme='rhinoplank' 10 | zoom-enabled=true 11 | zoom-percent=115 12 | -------------------------------------------------------------------------------- /failsafe/xfce4/desktop/icons.screen.latest.rc: -------------------------------------------------------------------------------- 1 | [xfdesktop-version-4.10.3+-rcfile_format] 2 | 4.10.3+=true 3 | 4 | -------------------------------------------------------------------------------- /failsafe/xfce4/panel/launcher-15/uniOut.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | Name=Log Out 5 | Comment=Log out of the Unicorn Desktop 6 | Exec=xfce4-session-logout 7 | Icon=uniOut 8 | Path= 9 | Terminal=false 10 | StartupNotify=false 11 | -------------------------------------------------------------------------------- /failsafe/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- 1 | [Configuration] 2 | MiscAlwaysShowTabs=FALSE 3 | MiscBell=FALSE 4 | MiscBellUrgent=FALSE 5 | MiscBordersDefault=TRUE 6 | MiscCursorBlinks=TRUE 7 | MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK 8 | MiscDefaultGeometry=80x24 9 | MiscInheritGeometry=FALSE 10 | MiscMenubarDefault=TRUE 11 | MiscMouseAutohide=FALSE 12 | MiscMouseWheelZoom=TRUE 13 | MiscToolbarDefault=FALSE 14 | MiscConfirmClose=TRUE 15 | MiscCycleTabs=TRUE 16 | MiscTabCloseButtons=TRUE 17 | MiscTabCloseMiddleClick=TRUE 18 | MiscTabPosition=GTK_POS_TOP 19 | MiscHighlightUrls=TRUE 20 | MiscMiddleClickOpensUri=TRUE 21 | MiscCopyOnSelect=FALSE 22 | MiscShowRelaunchDialog=TRUE 23 | MiscRewrapOnResize=TRUE 24 | MiscUseShiftArrowsToScroll=FALSE 25 | MiscSlimTabs=TRUE 26 | MiscNewTabAdjacent=FALSE 27 | MiscSearchDialogOpacity=100 28 | MiscShowUnsafePasteDialog=TRUE 29 | MiscRightClickAction=TERMINAL_RIGHT_CLICK_ACTION_CONTEXT_MENU 30 | OverlayScrolling=TRUE 31 | BackgroundMode=TERMINAL_BACKGROUND_TRANSPARENT 32 | ColorBoldIsBright=TRUE 33 | ColorPalette=#3B4252;#BF616A;#A3BE8C;#EBCB8B;#81A1C1;#B48EAD;#88C0D0;#E5E9F0;#4C566A;#BF616A;#A3BE8C;#EBCB8B;#81A1C1;#B48EAD;#8FBCBB;#ECEFF4 34 | TabActivityColor=#88C0D0 35 | BackgroundDarkness=0.800000 36 | FontName=Fira Code weight=453 12 37 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfdashboard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /failsafe/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | /* 2 | Generated with Gradience 3 | 4 | Issues caused by theming should be reported to Gradience repository, and not to upstream 5 | 6 | https://github.com/GradienceTeam/Gradience 7 | */ 8 | 9 | @define-color accent_color #8d7be4; 10 | @define-color accent_bg_color #9235ff; 11 | @define-color accent_fg_color #ffffff; 12 | @define-color destructive_color #ff7b63; 13 | @define-color destructive_bg_color #c01c28; 14 | @define-color destructive_fg_color #ffffff; 15 | @define-color success_color #8ff0a4; 16 | @define-color success_bg_color #26a269; 17 | @define-color success_fg_color #ffffff; 18 | @define-color warning_color #f8e45c; 19 | @define-color warning_bg_color #cd9309; 20 | @define-color warning_fg_color rgba(0, 0, 0, 0.8); 21 | @define-color error_color #ff7b63; 22 | @define-color error_bg_color #c01c28; 23 | @define-color error_fg_color #ffffff; 24 | @define-color window_bg_color #241f31; 25 | @define-color window_fg_color #ffffff; 26 | @define-color view_bg_color #241f31; 27 | @define-color view_fg_color #ffffff; 28 | @define-color headerbar_bg_color #241f31; 29 | @define-color headerbar_fg_color #ffffff; 30 | @define-color headerbar_border_color #ffffff; 31 | @define-color headerbar_backdrop_color @window_bg_color; 32 | @define-color headerbar_shade_color rgba(0, 0, 0, 0.36); 33 | @define-color card_bg_color rgba(255, 255, 255, 0.08); 34 | @define-color card_fg_color #ffffff; 35 | @define-color card_shade_color rgba(0, 0, 0, 0.36); 36 | @define-color dialog_bg_color #241f31; 37 | @define-color dialog_fg_color #ffffff; 38 | @define-color popover_bg_color #241f31; 39 | @define-color popover_fg_color #ffffff; 40 | @define-color shade_color rgba(0, 0, 0, 0.36); 41 | @define-color scrollbar_outline_color rgba(0, 0, 0, 0.5); 42 | @define-color blue_1 #99c1f1; 43 | @define-color blue_2 #62a0ea; 44 | @define-color blue_3 #3584e4; 45 | @define-color blue_4 #1c71d8; 46 | @define-color blue_5 #1a5fb4; 47 | @define-color green_1 #8ff0a4; 48 | @define-color green_2 #57e389; 49 | @define-color green_3 #33d17a; 50 | @define-color green_4 #2ec27e; 51 | @define-color green_5 #26a269; 52 | @define-color yellow_1 #f9f06b; 53 | @define-color yellow_2 #f8e45c; 54 | @define-color yellow_3 #f6d32d; 55 | @define-color yellow_4 #f5c211; 56 | @define-color yellow_5 #e5a50a; 57 | @define-color orange_1 #ffbe6f; 58 | @define-color orange_2 #ffa348; 59 | @define-color orange_3 #ff7800; 60 | @define-color orange_4 #e66100; 61 | @define-color orange_5 #c64600; 62 | @define-color red_1 #f66151; 63 | @define-color red_2 #ed333b; 64 | @define-color red_3 #e01b24; 65 | @define-color red_4 #c01c28; 66 | @define-color red_5 #a51d2d; 67 | @define-color purple_1 #dc8add; 68 | @define-color purple_2 #c061cb; 69 | @define-color purple_3 #9141ac; 70 | @define-color purple_4 #813d9c; 71 | @define-color purple_5 #613583; 72 | @define-color brown_1 #cdab8f; 73 | @define-color brown_2 #b5835a; 74 | @define-color brown_3 #986a44; 75 | @define-color brown_4 #865e3c; 76 | @define-color brown_5 #63452c; 77 | @define-color light_1 #ffffff; 78 | @define-color light_2 #f6f5f4; 79 | @define-color light_3 #deddda; 80 | @define-color light_4 #c0bfbc; 81 | @define-color light_5 #9a9996; 82 | @define-color dark_1 #77767b; 83 | @define-color dark_2 #5e5c64; 84 | @define-color dark_3 #3d3846; 85 | @define-color dark_4 #241f31; 86 | @define-color dark_5 #000000; 87 | 88 | .navigation-sidebar { 89 | background-color: #241f31; 90 | } 91 | -------------------------------------------------------------------------------- /gtk-4.0/gtk.css: -------------------------------------------------------------------------------- 1 | /* 2 | Generated with Gradience 3 | 4 | Issues caused by theming should be reported to Gradience repository, and not to upstream 5 | 6 | https://github.com/GradienceTeam/Gradience 7 | */ 8 | 9 | @define-color accent_color #8d7be4; 10 | @define-color accent_bg_color #9235ff; 11 | @define-color accent_fg_color #ffffff; 12 | @define-color destructive_color #ff7b63; 13 | @define-color destructive_bg_color #c01c28; 14 | @define-color destructive_fg_color #ffffff; 15 | @define-color success_color #8ff0a4; 16 | @define-color success_bg_color #26a269; 17 | @define-color success_fg_color #ffffff; 18 | @define-color warning_color #f8e45c; 19 | @define-color warning_bg_color #cd9309; 20 | @define-color warning_fg_color rgba(0, 0, 0, 0.8); 21 | @define-color error_color #ff7b63; 22 | @define-color error_bg_color #c01c28; 23 | @define-color error_fg_color #ffffff; 24 | @define-color window_bg_color #241f31; 25 | @define-color window_fg_color #ffffff; 26 | @define-color view_bg_color #241f31; 27 | @define-color view_fg_color #ffffff; 28 | @define-color headerbar_bg_color #241f31; 29 | @define-color headerbar_fg_color #ffffff; 30 | @define-color headerbar_border_color #ffffff; 31 | @define-color headerbar_backdrop_color @window_bg_color; 32 | @define-color headerbar_shade_color rgba(0, 0, 0, 0.36); 33 | @define-color card_bg_color rgba(255, 255, 255, 0.08); 34 | @define-color card_fg_color #ffffff; 35 | @define-color card_shade_color rgba(0, 0, 0, 0.36); 36 | @define-color dialog_bg_color #241f31; 37 | @define-color dialog_fg_color #ffffff; 38 | @define-color popover_bg_color #241f31; 39 | @define-color popover_fg_color #ffffff; 40 | @define-color shade_color rgba(0, 0, 0, 0.36); 41 | @define-color scrollbar_outline_color rgba(0, 0, 0, 0.5); 42 | @define-color blue_1 #99c1f1; 43 | @define-color blue_2 #62a0ea; 44 | @define-color blue_3 #3584e4; 45 | @define-color blue_4 #1c71d8; 46 | @define-color blue_5 #1a5fb4; 47 | @define-color green_1 #8ff0a4; 48 | @define-color green_2 #57e389; 49 | @define-color green_3 #33d17a; 50 | @define-color green_4 #2ec27e; 51 | @define-color green_5 #26a269; 52 | @define-color yellow_1 #f9f06b; 53 | @define-color yellow_2 #f8e45c; 54 | @define-color yellow_3 #f6d32d; 55 | @define-color yellow_4 #f5c211; 56 | @define-color yellow_5 #e5a50a; 57 | @define-color orange_1 #ffbe6f; 58 | @define-color orange_2 #ffa348; 59 | @define-color orange_3 #ff7800; 60 | @define-color orange_4 #e66100; 61 | @define-color orange_5 #c64600; 62 | @define-color red_1 #f66151; 63 | @define-color red_2 #ed333b; 64 | @define-color red_3 #e01b24; 65 | @define-color red_4 #c01c28; 66 | @define-color red_5 #a51d2d; 67 | @define-color purple_1 #dc8add; 68 | @define-color purple_2 #c061cb; 69 | @define-color purple_3 #9141ac; 70 | @define-color purple_4 #813d9c; 71 | @define-color purple_5 #613583; 72 | @define-color brown_1 #cdab8f; 73 | @define-color brown_2 #b5835a; 74 | @define-color brown_3 #986a44; 75 | @define-color brown_4 #865e3c; 76 | @define-color brown_5 #63452c; 77 | @define-color light_1 #ffffff; 78 | @define-color light_2 #f6f5f4; 79 | @define-color light_3 #deddda; 80 | @define-color light_4 #c0bfbc; 81 | @define-color light_5 #9a9996; 82 | @define-color dark_1 #77767b; 83 | @define-color dark_2 #5e5c64; 84 | @define-color dark_3 #3d3846; 85 | @define-color dark_4 #241f31; 86 | @define-color dark_5 #000000; 87 | 88 | .navigation-sidebar { 89 | background-color: #241f31; 90 | } -------------------------------------------------------------------------------- /icons/duckduckgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/icons/duckduckgo.png -------------------------------------------------------------------------------- /icons/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/icons/github-logo.png -------------------------------------------------------------------------------- /icons/uniApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/icons/uniApps.png -------------------------------------------------------------------------------- /icons/uniDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/icons/uniDesktop.png -------------------------------------------------------------------------------- /icons/uniLauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/icons/uniLauncher.png -------------------------------------------------------------------------------- /icons/uniOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/icons/uniOut.png -------------------------------------------------------------------------------- /lightpad/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/lightpad/background.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plank/dock1/launchers/00-uniLauncher.dockitem: -------------------------------------------------------------------------------- 1 | [PlankDockItemPreferences] 2 | Launcher=file:///usr/share/applications/uniLauncher.desktop 3 | -------------------------------------------------------------------------------- /plank/dock1/launchers/01-uniApps.dockitem: -------------------------------------------------------------------------------- 1 | [PlankDockItemPreferences] 2 | Launcher=file:///usr/share/applications/uniApps.desktop 3 | -------------------------------------------------------------------------------- /plank/dock1/launchers/02-uniDesktop.dockitem: -------------------------------------------------------------------------------- 1 | [PlankDockItemPreferences] 2 | Launcher=file:///usr/share/applications/uniDesktop.desktop 3 | -------------------------------------------------------------------------------- /plank/dock1/launchers/03-firefox.dockitem: -------------------------------------------------------------------------------- 1 | [PlankDockItemPreferences] 2 | Launcher=file:///usr/share/applications/firefox.desktop 3 | -------------------------------------------------------------------------------- /plank/dock1/launchers/04-FileManager.dockitem: -------------------------------------------------------------------------------- 1 | [PlankDockItemPreferences] 2 | Launcher=file:///usr/share/applications/xfce4-file-manager.desktop 3 | -------------------------------------------------------------------------------- /plank/dock1/launchers/05-codium.dockitem: -------------------------------------------------------------------------------- 1 | [PlankDockItemPreferences] 2 | Launcher=file:///usr/share/applications/codium.desktop 3 | -------------------------------------------------------------------------------- /plank/dock1/launchers/06-xfce4-terminal.dockitem: -------------------------------------------------------------------------------- 1 | [PlankDockItemPreferences] 2 | Launcher=file:///usr/share/applications/xfce4-terminal.desktop 3 | -------------------------------------------------------------------------------- /plank/dock1/launchers/07-org.rhinolinux.system.dockitem: -------------------------------------------------------------------------------- 1 | [PlankDockItemPreferences] 2 | Launcher=file:///usr/local/share/applications/org.rhinolinux.system.desktop -------------------------------------------------------------------------------- /rhino/geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/rhino/geo.png -------------------------------------------------------------------------------- /rhino/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/rhino/moon.png -------------------------------------------------------------------------------- /rhino/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/rhino/mountains.png -------------------------------------------------------------------------------- /rhino/remix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/rhino/remix.png -------------------------------------------------------------------------------- /rhino/rolling-rhino-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/rhino/rolling-rhino-default.png -------------------------------------------------------------------------------- /rhino/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/rhino/simple.png -------------------------------------------------------------------------------- /rhino/waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/rhino/waves.png -------------------------------------------------------------------------------- /rhinoplank/dock.theme: -------------------------------------------------------------------------------- 1 | #This file auto-generated by Plank. 2 | #2020-07-02T19:35:04+0000 3 | # Plank auto-generated file modified by oklopfer 4 | # Plank Theme: RhinoLinux Theme 5 | 6 | [PlankTheme] 7 | #The roundness of the top corners. 8 | TopRoundness=20 9 | #The roundness of the bottom corners. 10 | BottomRoundness=20 11 | #The thickness (in pixels) of lines drawn. 12 | LineWidth=1 13 | #The color (RGBA) of the outer stroke. 14 | OuterStrokeColor=25;;20;;40;;0 15 | #The starting color (RGBA) of the fill gradient. 16 | FillStartColor=25;;20;;40;;230 17 | #The ending color (RGBA) of the fill gradient. 18 | FillEndColor=25;;20;;40;;230 19 | #The color (RGBA) of the inner stroke. 20 | InnerStrokeColor=25;;20;;40;;0 21 | 22 | [PlankDockTheme] 23 | #The padding on the left/right dock edges, in tenths of a percent of IconSize. 24 | HorizPadding=2.5 25 | #The padding on the top dock edge, in tenths of a percent of IconSize. 26 | TopPadding=2 27 | #The padding on the bottom dock edge, in tenths of a percent of IconSize. 28 | BottomPadding=2 29 | #The padding between items on the dock, in tenths of a percent of IconSize. 30 | ItemPadding=1 31 | #The size of item indicators, in tenths of a percent of IconSize. 32 | IndicatorSize=5 33 | #The size of the icon-shadow behind every item, in tenths of a percent of IconSize. 34 | IconShadowSize=0.5 35 | #The height (in percent of IconSize) to bounce an icon when the application sets urgent. 36 | UrgentBounceHeight=1.6666666666666667 37 | #The height (in percent of IconSize) to bounce an icon when launching an application. 38 | LaunchBounceHeight=0.90000000000000002 39 | #The opacity value (0 to 1) to fade the dock to when hiding it. 40 | FadeOpacity=1 41 | #The amount of time (in ms) for click animations. 42 | ClickTime=900 43 | #The amount of time (in ms) to bounce an urgent icon. 44 | UrgentBounceTime=900 45 | #The amount of time (in ms) to bounce an icon when launching an application. 46 | LaunchBounceTime=900 47 | #The amount of time (in ms) for active window indicator animations. 48 | ActiveTime=999 49 | #The amount of time (in ms) to slide icons into/out of the dock. 50 | SlideTime=150 51 | #The time (in ms) to fade the dock in/out on a hide (if FadeOpacity is < 1). 52 | FadeTime=300 53 | #The time (in ms) to slide the dock in/out on a hide (if FadeOpacity is 1). 54 | HideTime=300 55 | #The size of the urgent glow (shown when dock is hidden), in tenths of a percent of IconSize. 56 | GlowSize=100 57 | #The total time (in ms) to show the hidden-dock urgent glow. 58 | GlowTime=10000 59 | #The time (in ms) of each pulse of the hidden-dock urgent glow. 60 | GlowPulseTime=2000 61 | #The hue-shift (-180 to 180) of the urgent indicator color. 62 | UrgentHueShift=180 63 | #The time (in ms) to move an item to its new position or its addition/removal to/from the dock. 64 | ItemMoveTime=700 65 | #Whether background and icons will unhide/hide with different speeds. The top-border of both will leave/hit the screen-edge at the same time. 66 | CascadeHide=true 67 | #The color (RGBA) of the badge displaying urgent count 68 | BadgeColor=0;;0;;0;;0 69 | -------------------------------------------------------------------------------- /startunicorn: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # xfce4 4 | # 5 | # Copyright (C) 1996-2003 Olivier Fourdan (fourdan@xfce.org) 6 | # 7 | # This program is free software; you can redistribute it and/or modify 8 | # it under the terms of the GNU General Public License as published by 9 | # the Free Software Foundation; either version 2 of the License, or 10 | # (at your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | # GNU General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU General Public License 18 | # along with this program; if not, write to the Free Software 19 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 20 | # 21 | 22 | if ((${#@} == 0)); then 23 | OPTS="" 24 | for OPT in "${@}"; do 25 | if [[ ${OPT} == "--help" ]]; then 26 | # print help and exit 27 | echo "Usage:" 28 | echo " startunicorn [OPTIONS...]" 29 | echo 30 | echo "Options:" 31 | echo " --help Show help options" 32 | echo " --with-ck-launch Start xfce4-session inside a" 33 | echo " ConsoleKit session" 34 | echo 35 | exit 0 36 | elif [[ ${OPT} == "--with-ck-launch" ]]; then 37 | # try to launch xfce4-session with ck-launch-session in xinitrc 38 | XFCE4_SESSION_WITH_CK="1" 39 | export XFCE4_SESSION_WITH_CK 40 | else 41 | # append 42 | OPTS="$OPTS $OPT" 43 | fi 44 | done 45 | 46 | if [[ ${OPTS#*--} == "${OPTS}" ]]; then 47 | CLIENTRC="${OPTS}" 48 | else 49 | SERVERRC="${OPTS#*-- }" 50 | CLIENTRC="${OPTS%--*}" 51 | fi 52 | fi 53 | 54 | if [[ -z ${XDG_CONFIG_HOME} ]]; then 55 | BASEDIR="$HOME/.config/xfce4/" 56 | else 57 | BASEDIR="$XDG_CONFIG_HOME/xfce4" 58 | fi 59 | 60 | if [[ -z $XDG_DATA_DIRS ]]; then 61 | if [[ "x/usr/share" == "x/usr/local/share" || "x/usr/share" == "x/usr/share" ]]; then 62 | XDG_DATA_DIRS="/usr/local/share:/usr/share" 63 | else 64 | XDG_DATA_DIRS="/usr/share:/usr/local/share:/usr/share" 65 | fi 66 | # If $XDG_DATA_DIRS is pre-defined, but does not end with /usr/share, append it 67 | elif [[ "${XDG_DATA_DIRS##*:}" != "/usr/share" ]]; then 68 | XDG_DATA_DIRS="$XDG_DATA_DIRS:/usr/share" 69 | fi 70 | if [[ -f /usr/bin/snap ]]; then 71 | XDG_DATA_DIRS="$XDG_DATA_DIRS:/var/lib/snapd/desktop" 72 | fi 73 | export XDG_DATA_DIRS 74 | 75 | if [[ -z "$XDG_CONFIG_DIRS" ]]; then 76 | if [[ "x/etc" == "x/etc" ]]; then 77 | XDG_CONFIG_DIRS="/etc/xdg" 78 | else 79 | XDG_CONFIG_DIRS="/etc/xdg:/etc/xdg" 80 | fi 81 | # If $XDG_CONFIG_DIRS is pre-defined, but does not end with /etc/xdg, append it 82 | elif [[ "${XDG_CONFIG_DIRS##*:}" != "/etc/xdg" ]]; then 83 | XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS:/etc/xdg" 84 | fi 85 | export XDG_CONFIG_DIRS 86 | 87 | if [[ -z "$DISPLAY" ]]; then 88 | echo "$0: Starting X server" 89 | prog=xinit 90 | 91 | if [[ -n "$XDG_VTNR" ]]; then 92 | SERVERRC="vt$XDG_VTNR $SERVERRC" 93 | fi 94 | else 95 | echo "$0: X server already running on display $DISPLAY" 96 | prog=/bin/sh 97 | fi 98 | 99 | if [[ -f "$HOME/.xserverrc" ]]; then 100 | SERVERRC="$HOME/.xserverrc $SERVERRC" 101 | elif [[ -f /etc/X11/xinit/xserverrc ]]; then 102 | SERVERRC="/etc/X11/xinit/xserverrc $SERVERRC" 103 | fi 104 | 105 | if [[ -n "$SERVERRC" ]]; then 106 | SERVERRC="-- $SERVERRC" 107 | fi 108 | 109 | if [[ -f $BASEDIR/xinitrc ]]; then 110 | exec $prog $BASEDIR/xinitrc $CLIENTRC $SERVERRC 111 | elif [[ -f $HOME/.xfce4/xinitrc ]]; then 112 | mkdir -p $BASEDIR 113 | cp $HOME/.xfce4/xinitrc $BASEDIR/ 114 | exec $prog $BASEDIR/xinitrc $CLIENTRC $SERVERRC 115 | else 116 | exec $prog /etc/xdg/xdg-unicorn/xinitrc $CLIENTRC $SERVERRC 117 | fi 118 | -------------------------------------------------------------------------------- /ulauncher/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "blacklisted-desktop-dirs": "/usr/share/locale:/usr/share/app-install:/usr/share/kservices5:/usr/share/fk5:/usr/share/kservicetypes5:/usr/share/applications/screensavers:/usr/share/kde4:/usr/share/mimelnk", 3 | "clear-previous-query": true, 4 | "disable-desktop-filters": false, 5 | "grab-mouse-pointer": false, 6 | "hotkey-show-app": "s", 7 | "render-on-screen": "mouse-pointer-monitor", 8 | "show-indicator-icon": true, 9 | "show-recent-apps": "0", 10 | "terminal-command": "", 11 | "theme-name": "rhino" 12 | } 13 | -------------------------------------------------------------------------------- /ulauncher/shortcuts.json: -------------------------------------------------------------------------------- 1 | { 2 | "fadbb08e-9b58-4311-95be-b61e26b09fe6": { 3 | "id": "fadbb08e-9b58-4311-95be-b61e26b09fe6", 4 | "name": "Duck Duck Go", 5 | "keyword": "d", 6 | "cmd": "https://duckduckgo.com/%s", 7 | "icon": "/usr/share/icons/duckduckgo.png", 8 | "is_default_search": true, 9 | "run_without_argument": false, 10 | "added": 1684439459.1836133 11 | }, 12 | "c4481c5c-6dee-4b70-9153-955ece544a78": { 13 | "id": "c4481c5c-6dee-4b70-9153-955ece544a78", 14 | "name": "Stack Overflow", 15 | "keyword": "so", 16 | "cmd": "https://stackoverflow.com/search?q=%s", 17 | "icon": "/usr/share/ulauncher/media/stackoverflow-icon.svg", 18 | "is_default_search": true, 19 | "run_without_argument": false, 20 | "added": 1684439459.1836197 21 | }, 22 | "be0e6cf8-bed2-4274-88e1-9f548484e0e5": { 23 | "id": "be0e6cf8-bed2-4274-88e1-9f548484e0e5", 24 | "name": "GitHub", 25 | "keyword": "gi", 26 | "cmd": "https://github.com/search?q=%s", 27 | "icon": "/usr/share/icons/github-logo.png", 28 | "is_default_search": true, 29 | "run_without_argument": false, 30 | "added": 1684439459.1836245 31 | }, 32 | "f95ed6e7-7e16-41f5-9a15-ed3ef6a74b35": { 33 | "id": "f95ed6e7-7e16-41f5-9a15-ed3ef6a74b35", 34 | "name": "Rhino Linux | Website", 35 | "keyword": "rh", 36 | "cmd": "rhinolinux.org/", 37 | "icon": "/usr/share/icons/logo.png", 38 | "is_default_search": false, 39 | "run_without_argument": true, 40 | "added": 1684440012.4676385 41 | } 42 | -------------------------------------------------------------------------------- /ulauncher/user-themes/rhino/generated.css: -------------------------------------------------------------------------------- 1 | @import url("theme.css"); 2 | 3 | .input { 4 | caret-color: @caret_color; 5 | } 6 | .selected.item-box { 7 | /* workaround for a bug in GTK+ < 3.20 */ 8 | border: none; 9 | } 10 | -------------------------------------------------------------------------------- /ulauncher/user-themes/rhino/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": "1", 3 | "name": "rhino", 4 | "display_name": "Rhino", 5 | "extend_theme": "dark", 6 | "css_file": "theme.css", 7 | "css_file_gtk_3.20+": "theme-gtk-3.20.css", 8 | "matched_text_hl_colors": { 9 | "when_selected": "#fff", 10 | "when_not_selected": "#fff" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ulauncher/user-themes/rhino/theme-gtk-3.20.css: -------------------------------------------------------------------------------- 1 | @import url("theme.css"); 2 | 3 | .input { 4 | caret-color: @caret_color; 5 | } 6 | .selected.item-box { 7 | /* workaround for a bug in GTK+ < 3.20 */ 8 | border: none; 9 | } 10 | -------------------------------------------------------------------------------- /ulauncher/user-themes/rhino/theme.css: -------------------------------------------------------------------------------- 1 | /** 2 | * App Window 3 | */ 4 | /*@define-color bg_color #393D40;*/ 5 | @define-color bg_color #141414; 6 | @define-color window_bg @bg_color; 7 | @define-color window_border_color #000; 8 | @define-color prefs_backgroud #aaa; 9 | 10 | /** 11 | * Input 12 | */ 13 | /*@define-color selected_bg_color #4B5053;*/ 14 | @define-color selected_bg_color rgba(75,80,83,.7); 15 | 16 | @define-color selected_fg_color #d5d5d5; 17 | @define-color input_color #ddd; 18 | @define-color caret_color darker(@input_color); 19 | 20 | /** 21 | * Result items 22 | */ 23 | @define-color item_name #B3BAB8; 24 | @define-color item_text #999; 25 | /* @define-color item_box_selected @bg_color; */ 26 | @define-color item_box_selected #8064e4; 27 | @define-color item_text_selected #ccc; 28 | @define-color item_name_selected #bbb; 29 | @define-color item_shortcut_color #777; 30 | @define-color item_shortcut_shadow darker(@bg_color); 31 | @define-color item_shortcut_color_sel #ccc; 32 | @define-color item_shortcut_shadow_sel darker(@item_box_selected); 33 | 34 | .app { 35 | background-color: alpha (@window_bg, .85); 36 | border-color: @window_border_color; 37 | border-radius: 16px; 38 | } 39 | 40 | .input { 41 | color: @input_color; 42 | } 43 | 44 | /** 45 | * Selected text in input 46 | */ 47 | .input *:selected, 48 | .input *:focus, 49 | *:selected:focus { 50 | background-color: alpha (@selected_bg_color, 0.9); 51 | color: @selected_fg_color; 52 | } 53 | 54 | .item-text { 55 | color: @item_text; 56 | } 57 | .item-name { 58 | color: @item_name; 59 | } 60 | 61 | .selected.item-box { 62 | background-color: alpha (@item_box_selected, 0.6); 63 | border-left: 1px solid @window_border_color; 64 | border-right: 1px solid @window_border_color; 65 | } 66 | .selected.item-box .item-text { 67 | color: @item_text_selected; 68 | } 69 | .selected.item-box .item-name { 70 | color: @item_name_selected; 71 | } 72 | .item-shortcut { 73 | color: @item_shortcut_color; 74 | text-shadow: 1px 1px 1px @item_shortcut_shadow; 75 | } 76 | .selected.item-box .item-shortcut { 77 | color: @item_shortcut_color_sel; 78 | text-shadow: 1px 1px 1px @item_shortcut_shadow_sel; 79 | } 80 | 81 | .prefs-btn { 82 | opacity: 0.8; 83 | } 84 | .prefs-btn:hover { 85 | background-color: @prefs_backgroud; 86 | } 87 | 88 | .no-window-shadow { 89 | margin: -20px; 90 | } 91 | -------------------------------------------------------------------------------- /unicorn-dashboard/xfdashboard-1.0/animations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /unicorn-dashboard/xfdashboard-1.0/effects.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1.0 4 | 5 | 6 | 7 | emblem-important 8 | 32 9 | 10 | 11 | 12 | emblem-default 13 | 32 14 | south-east 15 | 1.0 16 | 1.0 17 | 18 | 19 | -------------------------------------------------------------------------------- /unicorn-dashboard/xfdashboard-1.0/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhino-linux/unicorn/b78c958b28b9b63bed7d4b6117132047f502d0a6/unicorn-dashboard/xfdashboard-1.0/minimal.png -------------------------------------------------------------------------------- /unicorn-dashboard/xfdashboard-1.0/xfdashboard-minimal.css: -------------------------------------------------------------------------------- 1 | @import(xfdashboard.css) 2 | /* Small icons for minimized windows */ 3 | 4 | XfdashboardWindowContent 5 | { 6 | include-window-frame: true; 7 | unmapped-window-icon-x-fill: false; 8 | unmapped-window-icon-y-fill: false; 9 | unmapped-window-icon-x-align: 0.5; 10 | unmapped-window-icon-y-align: 0.5; 11 | unmapped-window-icon-x-scale: 2.0; 12 | unmapped-window-icon-y-scale: 2.0; 13 | unmapped-window-icon-anchor-point: center; 14 | } 15 | 16 | /* icons */ 17 | 18 | XfdashboardQuicklaunch #applications-button 19 | { 20 | icon-name: "view-list-symbolic"; 21 | } 22 | 23 | XfdashboardQuicklaunch #applications-button:toggled 24 | { 25 | icon-name: "view-paged-symbolic"; 26 | } 27 | 28 | XfdashboardWindowsView 29 | { 30 | view-icon: "view-paged-symbolic"; 31 | } 32 | 33 | XfdashboardApplicationsView 34 | { 35 | view-icon: "view-list-symbolic"; 36 | } 37 | 38 | XfdashboardSearchView 39 | { 40 | view-icon: "folder-saved-search-symbolic"; 41 | } 42 | 43 | /* colors */ 44 | 45 | #notification, #tooltip 46 | { 47 | background-fill-color: #1a1a1a; 48 | outline-color: #1a1a1a; 49 | } 50 | 51 | #quicklaunch, #quicklaunch:drop-target 52 | { 53 | background-fill-color: #26184c; 54 | outline-color: #26184c; 55 | } 56 | 57 | #quicklaunch XfdashboardButton:hover 58 | { 59 | background-fill-color: #8b00e7; 60 | } 61 | 62 | XfdashboardQuicklaunch #applications-button 63 | { 64 | background-fill-color: #26184c; 65 | } 66 | 67 | XfdashboardQuicklaunch #trash-button:drop-target 68 | { 69 | background-fill-color: #8b00e7; 70 | } 71 | 72 | .drag-actor-XfdashboardLiveWindow:drag-handle 73 | { 74 | background-fill-color: #8b00e7a0; 75 | outline-color: #8b00e7ff; 76 | } 77 | 78 | XfdashboardWorkspaceSelector 79 | { 80 | background-fill-color: #26184c; 81 | outline-color: #26184c; 82 | } 83 | 84 | XfdashboardLiveWorkspace 85 | { 86 | outline-color: #1a1a1aff; 87 | } 88 | 89 | XfdashboardLiveWorkspace:active 90 | { 91 | outline-color: #8b00e7; 92 | } 93 | 94 | XfdashboardScrollbar 95 | { 96 | slider-color: #66666660; 97 | } 98 | 99 | XfdashboardScrollbar:hover 100 | { 101 | slider-color: #8b00e7a0; 102 | } 103 | 104 | XfdashboardScrollbar:pressed 105 | { 106 | slider-color: #8b00e7ff; 107 | } 108 | 109 | XfdashboardSearchView XfdashboardSearchResultContainer XfdashboardButton.result-item:hover, 110 | XfdashboardApplicationsView XfdashboardButton:hover 111 | { 112 | background-fill-color: #26184c; 113 | } 114 | 115 | XfdashboardSearchView XfdashboardSearchResultContainer XfdashboardButton:selected, 116 | XfdashboardApplicationsView XfdashboardButton:selected 117 | { 118 | background-fill-color: #26184c; 119 | outline-color: #26184c; 120 | } 121 | 122 | #view-selector XfdashboardToggleButton:toggled 123 | { 124 | background-fill-color: #8b00e7; 125 | } 126 | 127 | #searchbox.focus 128 | { 129 | outline-color: #26184c; 130 | background-fill-color: #26184c; 131 | } 132 | 133 | XfdashboardLiveWindow 134 | { 135 | background-type: outline; 136 | outline-width: 2.0; 137 | outline-color: #404040; 138 | } 139 | 140 | XfdashboardWindowsView XfdashboardLiveWindow:selected, 141 | XfdashboardWindowsView XfdashboardLiveWindow:hover 142 | { 143 | outline-color: #8b00e7ff; 144 | } 145 | 146 | XfdashboardLiveWindow:selected XfdashboardButton.title 147 | { 148 | background-fill-color: #8b00e7f0; 149 | outline-color: #8b00e7ff; 150 | } 151 | 152 | XfdashboardLiveWindow:hover XfdashboardButton.title 153 | { 154 | background-fill-color: #8b00e7f0; 155 | outline-color: #8b00e7ff; 156 | } 157 | 158 | /* effects */ 159 | 160 | #quicklaunch XfdashboardButton 161 | { 162 | effects: ; 163 | } 164 | -------------------------------------------------------------------------------- /unicorn-dashboard/xfdashboard-1.0/xfdashboard-secondary.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | true 7 | 0 8 | 8 9 | 10 | 11 | 12 | width 13 | 0 14 | 15 | 16 | 17 | 18 | 19 | 20 | height 21 | -16 22 | 23 | 24 | 25 | 26 | 27 | 28 | horizontal 29 | 8.0 30 | false 31 | 32 | 33 | 34 | 35 | 36 | true 37 | true 38 | top right bottom 39 | right 40 | true 41 | 42 | 43 | 44 | 45 | 46 | windows 47 | true 48 | true 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /unicorn-dashboard/xfdashboard-1.0/xfdashboard.css: -------------------------------------------------------------------------------- 1 | @constants 2 | { 3 | background-base-color: @rgb(87, 146, 226); /*#5792e2*/ 4 | background: @alpha(@background-base-color, 0.38) /*#5792e260*/; 5 | overlay-background: @alpha(@background-base-color, 1.0) /*#5792e2ff*/ ; 6 | overlay-outline: #4681d1ff; 7 | missing-icon: @try_icons("image-missing", "gtk-missing-image"); 8 | close-icon: @try_icons("window-close-symbolic", "window-close", "gtk-close", @missing-icon); 9 | search-icon: @try_icons("edit-find-symbolic", "edit-find", "gtk-find", @missing-icon); 10 | home-icon: @try_icons("go-home-symbolic", "gtk-home", @missing-icon); 11 | trash-icon: @try_icons("user-trash", "gtk-delete", @missing-icon); 12 | clear-icon: @try_icons("edit-clear-symbolic", "edit-clear", "gtk-clear", @missing-icon); 13 | } 14 | 15 | /* Stage */ 16 | XfdashboardStageInterface 17 | { 18 | background-color: #000000d0; 19 | background-image-type: desktop; 20 | } 21 | 22 | 23 | /* Image content */ 24 | XfdashboardImageContent 25 | { 26 | missing-icon-name: "image-missing"; 27 | } 28 | 29 | /* Window content */ 30 | XfdashboardWindowContent 31 | { 32 | include-window-frame: true; 33 | } 34 | 35 | /* Notifications */ 36 | #notification 37 | { 38 | background-type: fill outline; 39 | background-fill-color: @overlay-background; 40 | outline-color: @overlay-outline; 41 | outline-width: 1.0; 42 | text-color: #ffffffff; 43 | } 44 | 45 | /* Tooltip */ 46 | #tooltip 47 | { 48 | background-type: fill outline; 49 | background-fill-color: @overlay-background; 50 | outline-color: @overlay-outline; 51 | outline-width: 1.0; 52 | text-color: #ffffffe0; 53 | } 54 | 55 | /* Quicklaunch */ 56 | #quicklaunch 57 | { 58 | spacing: 4.0; 59 | background-type: fill outline rounded-corners; 60 | background-fill-color: @background; 61 | outline-color: #5792e2ff; 62 | outline-width: 0.5; 63 | outline-borders: top right bottom; 64 | corners: right; 65 | } 66 | 67 | #quicklaunch XfdashboardButton 68 | { 69 | icon-size: 64; 70 | effects: black-white; 71 | } 72 | 73 | #quicklaunch XfdashboardButton:hover 74 | { 75 | background-type: fill rounded-corners; 76 | background-fill-color: #93c1ffff; 77 | corners: all; 78 | corner-radius: 4.0; 79 | effects: ; 80 | } 81 | 82 | #quicklaunch XfdashboardApplicationButton.running 83 | { 84 | effects: running-application; 85 | } 86 | 87 | #quicklaunch:drop-target 88 | { 89 | background-fill-color: #93c1ff80; 90 | outline-width: 1.5; 91 | } 92 | 93 | XfdashboardQuicklaunch 94 | { 95 | normal-icon-size: 64.0; 96 | } 97 | 98 | XfdashboardQuicklaunch #applications-button 99 | { 100 | background-fill-color: #5792e2a0; 101 | icon-name: @home-icon; 102 | background-type: none; 103 | button-style: icon; 104 | } 105 | 106 | XfdashboardQuicklaunch #applications-button.search-active 107 | { 108 | icon-name: @search-icon; 109 | } 110 | 111 | XfdashboardQuicklaunch #applications-button:toggled 112 | { 113 | background-type: fill; 114 | } 115 | 116 | XfdashboardQuicklaunch #trash-button 117 | { 118 | icon-name: @trash-icon; 119 | button-style: icon; 120 | background-fill-color: #5792e2a0; 121 | background-type: none; 122 | } 123 | 124 | XfdashboardQuicklaunch #trash-button:drop-target 125 | { 126 | background-type: fill; 127 | background-fill-color: red; 128 | } 129 | 130 | .drag-source-XfdashboardQuicklaunch:drag-handle 131 | { 132 | icon-size: 64.0; 133 | button-style: icon; 134 | sync-icon-size: false; 135 | } 136 | 137 | /* Live windows */ 138 | XfdashboardLiveWindow 139 | { 140 | title-padding: 4.0; 141 | close-padding: 4.0; 142 | } 143 | 144 | XfdashboardLiveWindow .title 145 | { 146 | button-style: both; 147 | background-type: fill rounded-corners; 148 | corner-radius: 4.0; 149 | } 150 | 151 | XfdashboardLiveWindow .close-button 152 | { 153 | icon-name: @close-icon; 154 | button-style: icon; 155 | background-type: fill rounded-corners; 156 | corner-radius: 4.0; 157 | } 158 | 159 | XfdashboardLiveWindow .window-number 160 | { 161 | button-style: text; 162 | text-justify: center; 163 | font: bold; 164 | color: white; 165 | background-type: fill rounded-corners; 166 | corner-radius: 4.0; 167 | } 168 | 169 | XfdashboardLiveWindow.window-state-urgent 170 | { 171 | effects: window-urgency; 172 | } 173 | 174 | .drag-actor-XfdashboardLiveWindow:drag-handle 175 | { 176 | background-type: outline fill rounded-corners; 177 | background-fill-color: #5792e2a0; 178 | outline-color: #5792e2ff; 179 | outline-width: 1.0; 180 | corner-radius: 2.0; 181 | } 182 | 183 | /* Live workspaces */ 184 | XfdashboardLiveWorkspace 185 | { 186 | background-type: outline; 187 | background-image-type: desktop; 188 | outline-color: #404040ff; 189 | outline-width: 1.0; 190 | show-workspace-name: false; 191 | workspace-name-padding: 4.0; 192 | } 193 | 194 | XfdashboardLiveWorkspace:active 195 | { 196 | background-type: outline; 197 | outline-color: #ffff00ff; 198 | outline-width: 2.0; 199 | } 200 | 201 | XfdashboardLiveWorkspace .title 202 | { 203 | button-style: text; 204 | background-type: fill rounded-corners; 205 | corner-radius: 4.0; 206 | } 207 | 208 | /* Scrollbars */ 209 | XfdashboardScrollbar 210 | { 211 | spacing: 2.0; 212 | page-size-factor: 0.5; 213 | slider-width: 8.0; 214 | slider-radius: 4.0; 215 | slider-color: #5792e260; 216 | } 217 | 218 | XfdashboardScrollbar:hover 219 | { 220 | slider-color: #5792e2a0; 221 | } 222 | 223 | XfdashboardScrollbar:pressed 224 | { 225 | slider-color: #5792e2ff; 226 | } 227 | 228 | 229 | /* Text boxes */ 230 | XfdashboardTextBox 231 | { 232 | padding: 4.0; 233 | spacing: 4.0; 234 | text-color: #ffffffff; 235 | hint-text-color: #c0c0c0ff; 236 | } 237 | 238 | XfdashboardTextBox .primary-icon, 239 | XfdashboardTextBox .secondary-icon 240 | { 241 | padding: 0.0; 242 | button-style: icon; 243 | icon-sync-size: false; 244 | } 245 | 246 | /* Buttons */ 247 | XfdashboardButton 248 | { 249 | icon-size: 16; 250 | text-justify: left; 251 | color: #ffffffff; 252 | } 253 | 254 | /* Application buttons */ 255 | XfdashboardApplicationButton 256 | { 257 | format-title-only: "%s"; 258 | format-title-description: "%s\n\n%s"; 259 | } 260 | 261 | XfdashboardApplicationButton.view-mode-icon 262 | { 263 | show-description: false; 264 | } 265 | 266 | XfdashboardApplicationButton.view-mode-list 267 | { 268 | show-description: true; 269 | } 270 | 271 | XfdashboardApplicationButton.running 272 | { 273 | effects: running-application; 274 | } 275 | 276 | /* Workspace selector (incl. collapse box) */ 277 | XfdashboardWorkspaceSelector 278 | { 279 | spacing: 8.0; 280 | background-type: fill outline rounded-corners; 281 | background-fill-color: @background; 282 | outline-color: #5792e2ff; 283 | outline-width: 0.5; 284 | orientation: vertical; 285 | max-fraction: 0.20; 286 | using-fraction: true; 287 | orientation: vertical; 288 | } 289 | 290 | #workspace-selector-collapse-box 291 | { 292 | collapsed-size: 64.0; 293 | collapse-orientation: left; 294 | outline-borders: top left bottom; 295 | corners: left; 296 | } 297 | 298 | /* Search text box */ 299 | #searchbox 300 | { 301 | background-type: fill outline rounded-corners; 302 | background-fill-color: #ffffff18; 303 | outline-color: #404040ff; 304 | outline-width: 0.5; 305 | corners: all; 306 | corner-radius: 4.0; 307 | padding: 4.0; 308 | primary-icon-name: @search-icon; 309 | hint-text-color: #c0c0c080; 310 | } 311 | 312 | #searchbox.search-active 313 | { 314 | secondary-icon-name: @clear-icon; 315 | } 316 | 317 | /* View selector */ 318 | #view-selector 319 | { 320 | spacing: 4.0; 321 | } 322 | 323 | #view-selector XfdashboardToggleButton 324 | { 325 | background-type: none; 326 | button-style: icon; 327 | sync-icon-size: true; 328 | } 329 | 330 | #view-selector XfdashboardToggleButton:toggled 331 | { 332 | background-type: fill; 333 | background-fill-color: #5792e2ff; 334 | } 335 | 336 | /* Viewpad */ 337 | #viewpad 338 | { 339 | spacing: 4.0; 340 | horizontal-scrollbar-policy: automatic; 341 | vertical-scrollbar-policy: automatic; 342 | } 343 | 344 | /* Views */ 345 | XfdashboardView.view-list-mode 346 | { 347 | view-mode: list; 348 | } 349 | 350 | XfdashboardView.view-icon-mode 351 | { 352 | view-mode: icon; 353 | } 354 | 355 | /* Search view */ 356 | XfdashboardSearchView XfdashboardSearchResultContainer 357 | { 358 | title-format: "%s"; 359 | view-mode: list; 360 | spacing: 4.0; 361 | padding: 4.0; 362 | } 363 | 364 | XfdashboardSearchView XfdashboardSearchResultContainer .title 365 | { 366 | background-type: outline; 367 | outline-color: #e0e0e0; 368 | outline-borders: bottom; 369 | } 370 | 371 | XfdashboardSearchView XfdashboardSearchResultContainer XfdashboardApplicationButton.result-item 372 | { 373 | format-title-only: "%s"; 374 | format-title-description: "%s\n\n%s"; 375 | } 376 | 377 | XfdashboardSearchView XfdashboardSearchResultContainer XfdashboardButton.result-item.view-mode-icon 378 | { 379 | icon-size: 64.0; 380 | single-line: false; 381 | sync-icon-size: false; 382 | icon-orientation: top; 383 | text-justify: center; 384 | } 385 | 386 | XfdashboardSearchView XfdashboardSearchResultContainer XfdashboardButton.result-item.view-mode-list 387 | { 388 | button-style: both; 389 | icon-size: 64.0; 390 | single-line: false; 391 | sync-icon-size: false; 392 | icon-orientation: left; 393 | text-justify: left; 394 | } 395 | 396 | XfdashboardSearchView XfdashboardSearchResultContainer XfdashboardButton.result-item:hover 397 | { 398 | background-type: fill rounded-corners; 399 | background-fill-color: @background; 400 | corners: all; 401 | corner-radius: 4.0; 402 | } 403 | 404 | .drag-source-XfdashboardSearchView:drag-handle 405 | { 406 | icon-size: 64.0; 407 | button-style: icon; 408 | sync-icon-size: false; 409 | } 410 | 411 | /* Applications view */ 412 | XfdashboardApplicationsView 413 | { 414 | view-mode: list; 415 | spacing: 4.0; 416 | } 417 | 418 | XfdashboardApplicationsView, 419 | XfdashboardApplicationsView XfdashboardApplicationButton 420 | { 421 | parent-menu-icon: go-up; 422 | format-title-only: "%s"; 423 | format-title-description: "%s\n\n%s"; 424 | } 425 | 426 | XfdashboardApplicationsView XfdashboardButton.view-mode-icon 427 | { 428 | button-style: both; 429 | icon-size: 64.0; 430 | single-line: false; 431 | sync-icon-size: false; 432 | icon-orientation: top; 433 | text-justify: center; 434 | } 435 | 436 | XfdashboardApplicationsView XfdashboardButton.view-mode-list 437 | { 438 | button-style: both; 439 | icon-size: 64.0; 440 | single-line: false; 441 | sync-icon-size: false; 442 | icon-orientation: left; 443 | text-justify: left; 444 | } 445 | 446 | XfdashboardApplicationsView XfdashboardButton:hover 447 | { 448 | background-type: fill rounded-corners; 449 | background-fill-color: @background; 450 | corners: all; 451 | corner-radius: 4.0; 452 | } 453 | 454 | .drag-source-XfdashboardApplicationsView:drag-handle 455 | { 456 | icon-size: 64.0; 457 | button-style: icon; 458 | sync-icon-size: false; 459 | } 460 | 461 | /* Windows view */ 462 | XfdashboardWindowsView 463 | { 464 | spacing: 8.0; 465 | prevent-upscaling: true; 466 | view-icon: windows-view.png; 467 | filter-monitor-windows: true; 468 | } 469 | 470 | /* Focus */ 471 | #searchbox.focus, 472 | #view-selector.focus 473 | { 474 | outline-color: #3d71ffff; 475 | outline-width: 2.0; 476 | } 477 | 478 | #searchbox.focus 479 | { 480 | background-fill-color: #93c1ff50; 481 | hint-text-color: #e0e0e0ff; 482 | } 483 | 484 | #view-selector.focus 485 | { 486 | background-type: outline; 487 | } 488 | 489 | #quicklaunch.focus, 490 | #workspace-selector.focus 491 | { 492 | outline-width: 2.0; 493 | } 494 | 495 | #workspace-selector.focus 496 | { 497 | background-fill-color: #93c1ff80; 498 | } 499 | 500 | #quicklaunch XfdashboardButton:selected 501 | { 502 | background-type: fill outline rounded-corners; 503 | background-fill-color: #93c1ffff; 504 | outline-color: #ffffffff; 505 | corners: all; 506 | corner-radius: 4.0; 507 | } 508 | 509 | #quicklaunch #applications-button:selected, 510 | #quicklaunch #applications-button.search-active:selected, 511 | #quicklaunch #applications-button:toggled:selected 512 | { 513 | background-type: fill outline rounded-corners; 514 | background-fill-color: #93c1ffff; 515 | outline-color: #ffffffff; 516 | } 517 | 518 | XfdashboardWindowsView XfdashboardLiveWindow:selected 519 | { 520 | background-type: outline; 521 | outline-color: #3d71ffff; 522 | outline-width: 2.0; 523 | } 524 | 525 | XfdashboardLiveWindow:selected XfdashboardButton.title 526 | { 527 | background-type: outline fill rounded-corners; 528 | background-fill-color: #5792e2f0; 529 | outline-color: #508ad5ff; 530 | outline-width: 1.0; 531 | } 532 | 533 | XfdashboardApplicationsView XfdashboardButton:selected 534 | { 535 | background-type: fill outline rounded-corners; 536 | background-fill-color: @background; 537 | outline-color: #5792e2ff; 538 | outline-width: 2.0; 539 | corners: all; 540 | corner-radius: 4.0; 541 | } 542 | 543 | XfdashboardSearchView XfdashboardSearchResultContainer XfdashboardButton:selected 544 | { 545 | background-type: fill outline rounded-corners; 546 | background-fill-color: @background; 547 | outline-color: #5792e2ff; 548 | outline-width: 2.0; 549 | corners: all; 550 | corner-radius: 4.0; 551 | } 552 | 553 | /* Popup menus */ 554 | .popup-menu 555 | { 556 | background-type: fill outline rounded-corners; 557 | background-fill-color: @alpha(@background-base-color, 0.7); 558 | outline-color: #5792e2ff; 559 | outline-width: 1.0; 560 | corners: all; 561 | corner-radius: 4.0; 562 | } 563 | 564 | .popup-menu-title 565 | { 566 | font: bold; 567 | background-type: outline; 568 | outline-borders: bottom; 569 | outline-width: 1.0; 570 | outline-color: white; 571 | } 572 | 573 | .popup-menu-item 574 | { 575 | margin-top: 2.0; 576 | margin-bottom: 2.0; 577 | } 578 | 579 | .popup-menu-item:selected, 580 | .popup-menu-item:hover 581 | { 582 | background-type: fill; 583 | background-fill-color: #93c1ffff; 584 | } 585 | 586 | .popup-menu.popup-menu-source-XfdashboardQuicklaunch 587 | { 588 | show-title: true; 589 | show-title-icon: true; 590 | } 591 | 592 | .popup-menu.popup-menu-source-XfdashboardQuicklaunch XfdashboardLabel.popup-menu-item 593 | { 594 | icon-size: 16; 595 | text-justify: left; 596 | color: #ffffffff; 597 | } 598 | -------------------------------------------------------------------------------- /unicorn-dashboard/xfdashboard-1.0/xfdashboard.theme: -------------------------------------------------------------------------------- 1 | [Xfdashboard Theme] 2 | Name=xfdashboard-minimal 3 | Comment=Miminal theme for xfdashboard 4 | Style=xfdashboard-minimal.css 5 | Layout=xfdashboard.xml;xfdashboard-secondary.xml 6 | Effects=effects.xml 7 | Animations=animations.xml 8 | Author=MaysunFalls 9 | Version=1.0.0 10 | Screenshot=minimal.png 11 | -------------------------------------------------------------------------------- /unicorn-dashboard/xfdashboard-1.0/xfdashboard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | true 7 | 0 8 | 8 9 | 10 | 11 | 12 | width 13 | 0 14 | 15 | 16 | 17 | 18 | 19 | 20 | height 21 | -16 22 | 23 | 24 | 25 | 26 | 27 | 28 | horizontal 29 | 8.0 30 | false 31 | 32 | 33 | 34 | 35 | 36 | true 37 | true 38 | 39 | 40 | 41 | vertical 42 | 8.0 43 | false 44 | 45 | 46 | 47 | 48 | 49 | true 50 | 51 | 52 | 53 | horizontal 54 | 8.0 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | true 71 | true 72 | true 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | true 81 | true 82 | true 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | true 92 | 0.1 93 | height-for-width 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | -------------------------------------------------------------------------------- /unicorn-session: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export XDG_SESSION_TYPE=x11 3 | export $(dbus-launch) 4 | export PATH=$PATH:$HOME/.local/bin 5 | startunicorn 6 | -------------------------------------------------------------------------------- /unicorn.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Name=Unicorn Session 4 | Comment=Use this session to run Unicorn as your desktop environment 5 | Exec=unicorn-session 6 | Icon= 7 | Type=Application 8 | DesktopNames=Unicorn:XFCE 9 | -------------------------------------------------------------------------------- /unicorn_badge-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /xfce4/desktop/icons.screen.latest.rc: -------------------------------------------------------------------------------- 1 | [xfdesktop-version-4.10.3+-rcfile_format] 2 | 4.10.3+=true 3 | 4 | -------------------------------------------------------------------------------- /xfce4/desktop/icons.screen0-1904x1024.rc: -------------------------------------------------------------------------------- 1 | [xfdesktop-version-4.10.3+-rcfile_format] 2 | 4.10.3+=true 3 | 4 | -------------------------------------------------------------------------------- /xfce4/desktop/icons.screen0-1904x1025.rc: -------------------------------------------------------------------------------- 1 | [xfdesktop-version-4.10.3+-rcfile_format] 2 | 4.10.3+=true 3 | 4 | -------------------------------------------------------------------------------- /xfce4/desktop/icons.screen0-1904x1064.rc: -------------------------------------------------------------------------------- 1 | [xfdesktop-version-4.10.3+-rcfile_format] 2 | 4.10.3+=true 3 | 4 | -------------------------------------------------------------------------------- /xfce4/desktop/icons.screen0-1904x990.rc: -------------------------------------------------------------------------------- 1 | [xfdesktop-version-4.10.3+-rcfile_format] 2 | 4.10.3+=true 3 | 4 | [2022-08-10-16-21-45-00] 5 | row=0 6 | col=0 7 | 8 | [Wastebasket] 9 | row=1 10 | col=0 11 | 12 | [/] 13 | row=2 14 | col=0 15 | 16 | [/home/httpllamaz] 17 | row=3 18 | col=0 19 | 20 | -------------------------------------------------------------------------------- /xfce4/helpers.rc: -------------------------------------------------------------------------------- 1 | WebBrowser=firefox 2 | FileManager=thunar 3 | TerminalEmulator=xfce4-terminal 4 | -------------------------------------------------------------------------------- /xfce4/panel/launcher-15/uniOut.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | Name=Log Out 5 | Comment=Log out of the Unicorn Desktop 6 | Exec=xfce4-session-logout 7 | Icon=uniOut 8 | Path= 9 | Terminal=false 10 | StartupNotify=false 11 | -------------------------------------------------------------------------------- /xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- 1 | [Configuration] 2 | MiscAlwaysShowTabs=FALSE 3 | MiscBell=FALSE 4 | MiscBellUrgent=FALSE 5 | MiscBordersDefault=TRUE 6 | MiscCursorBlinks=TRUE 7 | MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK 8 | MiscDefaultGeometry=80x24 9 | MiscInheritGeometry=FALSE 10 | MiscMenubarDefault=TRUE 11 | MiscMouseAutohide=FALSE 12 | MiscMouseWheelZoom=TRUE 13 | MiscToolbarDefault=FALSE 14 | MiscConfirmClose=TRUE 15 | MiscCycleTabs=TRUE 16 | MiscTabCloseButtons=TRUE 17 | MiscTabCloseMiddleClick=TRUE 18 | MiscTabPosition=GTK_POS_TOP 19 | MiscHighlightUrls=TRUE 20 | MiscMiddleClickOpensUri=TRUE 21 | MiscCopyOnSelect=FALSE 22 | MiscShowRelaunchDialog=TRUE 23 | MiscRewrapOnResize=TRUE 24 | MiscUseShiftArrowsToScroll=FALSE 25 | MiscSlimTabs=TRUE 26 | MiscNewTabAdjacent=FALSE 27 | MiscSearchDialogOpacity=100 28 | MiscShowUnsafePasteDialog=TRUE 29 | MiscRightClickAction=TERMINAL_RIGHT_CLICK_ACTION_CONTEXT_MENU 30 | OverlayScrolling=TRUE 31 | BackgroundMode=TERMINAL_BACKGROUND_TRANSPARENT 32 | ColorBoldIsBright=TRUE 33 | ColorPalette=#3B4252;#BF616A;#A3BE8C;#EBCB8B;#81A1C1;#B48EAD;#88C0D0;#E5E9F0;#4C566A;#BF616A;#A3BE8C;#EBCB8B;#81A1C1;#B48EAD;#8FBCBB;#ECEFF4 34 | TabActivityColor=#88C0D0 35 | BackgroundDarkness=0.800000 36 | FontName=Fira Code weight=453 12 37 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/keyboards.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfdashboard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /xinitrc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # fix broken $UID on some system... 4 | if test "x$UID" = "x"; then 5 | if test -x /usr/xpg4/bin/id; then 6 | UID=`/usr/xpg4/bin/id -u`; 7 | else 8 | UID=`id -u`; 9 | fi 10 | fi 11 | 12 | # set $XDG_MENU_PREFIX to "xfce-" so that "xfce-applications.menu" is picked 13 | # over "applications.menu" in all Xfce applications. 14 | if test "x$XDG_MENU_PREFIX" = "x"; then 15 | XDG_MENU_PREFIX="xfce-" 16 | export XDG_MENU_PREFIX 17 | fi 18 | 19 | # set DESKTOP_SESSION so that one can detect easily if an Xfce session is running 20 | if test "x$DESKTOP_SESSION" = "x"; then 21 | DESKTOP_SESSION="unicorn" 22 | export DESKTOP_SESSION 23 | fi 24 | 25 | # set XDG_CURRENT_DESKTOP so that Qt 5 applications can identify user set Xfce theme 26 | if test "x$XDG_CURRENT_DESKTOP" = "x"; then 27 | XDG_CURRENT_DESKTOP="Unicorn" 28 | export XDG_CURRENT_DESKTOP 29 | fi 30 | 31 | # $XDG_CONFIG_HOME defines the base directory relative to which user specific 32 | # configuration files should be stored. If $XDG_CONFIG_HOME is either not set 33 | # or empty, a default equal to $HOME/.config should be used. 34 | if test "x$XDG_CONFIG_HOME" = "x" ; then 35 | XDG_CONFIG_HOME=$HOME/.config 36 | fi 37 | [ -d "$XDG_CONFIG_HOME" ] || mkdir "$XDG_CONFIG_HOME" 38 | 39 | # $XDG_CACHE_HOME defines the base directory relative to which user specific 40 | # non-essential data files should be stored. If $XDG_CACHE_HOME is either not 41 | # set or empty, a default equal to $HOME/.cache should be used. 42 | if test "x$XDG_CACHE_HOME" = "x" ; then 43 | XDG_CACHE_HOME=$HOME/.cache 44 | fi 45 | [ -d "$XDG_CACHE_HOME" ] || mkdir "$XDG_CACHE_HOME" 46 | 47 | # set up XDG user directores. see 48 | # http://freedesktop.org/wiki/Software/xdg-user-dirs 49 | if command -v xdg-user-dirs-update >/dev/null 2>&1; then 50 | xdg-user-dirs-update 51 | fi 52 | 53 | # For now, start with an empty list 54 | XRESOURCES="" 55 | 56 | # Has to go prior to merging Xft.xrdb, as its the "Defaults" file 57 | test -r "/etc/xdg/xfce4/Xft.xrdb" && XRESOURCES="$XRESOURCES /etc/xdg/xfce4/Xft.xrdb" 58 | test -r $HOME/.Xdefaults && XRESOURCES="$XRESOURCES $HOME/.Xdefaults" 59 | 60 | BASEDIR=$XDG_CONFIG_HOME/xfce4 61 | if test -r "$BASEDIR/Xft.xrdb"; then 62 | XRESOURCES="$XRESOURCES $BASEDIR/Xft.xrdb" 63 | elif test -r "$XFCE4HOME/Xft.xrdb"; then 64 | mkdir -p "$BASEDIR" 65 | cp "$XFCE4HOME/Xft.xrdb" "$BASEDIR"/ 66 | XRESOURCES="$XRESOURCES $BASEDIR/Xft.xrdb" 67 | fi 68 | 69 | # merge in X cursor settings 70 | test -r "$BASEDIR/Xcursor.xrdb" && XRESOURCES="$XRESOURCES $BASEDIR/Xcursor.xrdb" 71 | 72 | # ~/.Xresources contains overrides to the above 73 | test -r "$HOME/.Xresources" && XRESOURCES="$XRESOURCES $HOME/.Xresources" 74 | 75 | # load all X resources (adds /dev/null to avoid an empty list that would hang the process) 76 | cat /dev/null $XRESOURCES | xrdb -merge - 77 | 78 | # load local modmap 79 | test -r $HOME/.Xmodmap && xmodmap $HOME/.Xmodmap 80 | 81 | # if XAUTHLOCALHOSTNAME is not set in systemd user session, starting of xfce4-notifyd, DISPLAY etc. will fail 82 | if command -v systemctl >/dev/null 2>&1 && systemctl --user list-jobs >/dev/null 2>&1; then # user session is running 83 | dbus-update-activation-environment --systemd XAUTHLOCALHOSTNAME=$XAUTHLOCALHOSTNAME 84 | fi 85 | 86 | 87 | # check if we start xfce4-session with ck-launch-session. this is only 88 | # required for starting from a console, not a login manager 89 | if test "x$XFCE4_SESSION_WITH_CK" = "x1"; then 90 | if command -v ck-launch-session >/dev/null 2>&1; then 91 | exec ck-launch-session xfce4-session 92 | else 93 | echo 94 | echo "You have tried to start Xfce with consolekit support, but" 95 | echo "ck-launch-session is not installed." 96 | echo "Aborted startup..." 97 | echo 98 | exit 1 99 | fi 100 | else 101 | # start xfce4-session normally 102 | exec xfce4-session 103 | fi 104 | 105 | # if we got here, then exec failed 106 | exit 1 107 | --------------------------------------------------------------------------------