You are not logged in.

#1 2017-07-10 23:31:25

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

xed editor - config questions.

Thanks to HoaS for packing this Mate application - Mint xed editor

I can't find a config file anywhere, equivalent to geany.conf  hmm

First impressions are positive, even though OOTB there is less functionality than geany (eg colour picker, pretty print); keybinds are dumped to the '~/.config/xed/accels' xml file, but it would be nice to be able to change them. Are they compiled in?

Last edited by damo (2017-07-11 06:04:09)


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#2 2017-07-11 00:05:58

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,030

Re: xed editor - config questions.

Well, I tried the Debain 8 version:

Packages for Debian 8.0:     xed_1.4.5+sonya_amd64.deb
2017-07-10_210346_Scrot11.jpg
sad

EDIT: - Just dawned on me you're running Mint

Debian has "pluma" looks a little like a scaled down gedit.  Quite nice as well, but no conky.lang file  sad

Last edited by Sector11 (2017-07-11 00:32:13)


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#3 2017-07-11 00:47:24

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,030

Re: xed editor - config questions.

@ damo or HoaS

... since Xed is a 'kin' to pluma ... and conky.lang works for pluma just like gedit.  Would you try this:

/usr/share/gtksourceview-2.0/language-specs/conky.lang

<?xml version="1.0" encoding="UTF-8"?>

<!--
 Author: Ivan Novembri
 Copyright (C) 2009 Ivan Novembri <ivan.novembri@gmail.com>
 Revu et corrigé par: Rombeaut Rodolphe
 Latest Update by: Sector11 - to current Conky Variables and Settings as of:
 - - 31 Aug 2014

 Place this file in:

 for medit v1.1.1:
 /usr/share/medit/language-specs/conky.lang

 for medit - older versions:
 /usr/share/medit-1/language-specs/conkyrc.lang

 NOTE:  Not tested in gedit as of 15 May 2013
 for gedit v2.x
 /usr/share/gtksourceview-2.0/language-specs/conkyrc.lang
 or (for single user)
 ~/.local/share/gtksourceview-2.0/language-specs/conkyrc.lang'

 for gedit v3.x
 /usr/share/gtksourceview-3.0/language-specs/conkyrc.lang
 or (for single user)
 ~/.local/share/gtksourceview-3.0/language-specs/conkyrc.lang'

 NOTE:  Tested in Pluma 1.8.1 on 2017-07-10
 /usr/share/gtksourceview-2.0/language-specs/conkyrc.lang

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Library General Public
 License as published by the Free Software Foundation; either
 version 3 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Library General Public License for more details.

 You should have received a copy of the GNU Library General Public
 License along with this library; if not, write to the
 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.

-->

<language id="conkyrc" _name="Conky" version="2.0" _section="Others">
  <metadata>
<!--    <property name="mimetypes">text/plain</property> -->
    <property name="globs">*conky*</property>
    <property name="line-comment-start">#</property>
  </metadata>

  <styles>
    <style id="comment"           _name="Commentaires"          map-to="def:comment"/>
    <style id="keyword"           _name="avant text"            map-to="def:keyword"/>
    <style id="decimal"           _name="Decimal"               map-to="def:decimal"/>
    <style id="attribute"         _name="après text"            map-to="def:type"/>
    <style id="color"             _name="valeur couleur"        map-to="def:base-n-integer"/>
    <style id="boolean"           _name="Boolean"               map-to="def:boolean"/>
    <style id="subshell"          _name="Subshell"              map-to="def:preprocessor"/>
    <style id="element-name"      _name="crochets"              map-to="def:identifier"/>
    <style id="error"             _name="Error"                 map-to="def:error"/>
    <style id="attributex"        _name="Attribut police"       map-to="xml:attribute-name"/>
    <style id="adresse"           _name="Adresse"               map-to="def:statement"/>
  </styles>

  <definitions>
    <context id="conkyrc">
      <include>
        <context ref="keyword"/>
        <context ref="line-comment"/>
        <context ref="number"/>
        <context ref="color"/>
        <context ref="color1"/>
        <context ref="color2"/>
        <context ref="adresse"/>
        <context ref="date"/>
        <context ref="taille"/>
        <context ref="boolean"/>
        <context ref="backtick-subshell"/>
        <context ref="attribute"/>
        <context ref="attribute1"/>
        <context ref="crochets"/>
        <context ref="police"/>
        <context ref="lua"/>
        <context ref="lua1"/>
        <context ref="lua2"/>
        <context ref="lua3"/>
        <context ref="lua4"/>
        <context ref="lua5"/>
        <context ref="lua6"/>
        <context ref="lua7"/>
      </include>
    </context>

    <context id="police" style-ref="attributex">
      <match>((?&lt;=\$\{font )\b([\w_-]\s?)*(\:(style\=)?([Mm]edium)?([Bb]old|[Ii]talic))?\:(pixel)?size=)|((?&lt;=xftfont ) {0,}\b([\w_-]\s?)*(\:(style\=)?([Mm]edium)?([Bb]old|[Ii]talic))?\:(pixel)?size=)</match>
    </context>

    <context id="line-comment" style-ref="comment" end-at-line-end="true">
      <start>(?&lt;!\S)#</start>
      <include>
        <context ref="def:in-comment"/>
      </include>
    </context>

    <context id="backtick-subshell" style-ref="subshell">
      <start>`</start>
      <end>`</end>
    </context>

    <context id="crochets" style-ref="element-name">
      <match>\$\{|(?&lt;!\})\}</match>
    </context>

    <define-regex id="attribute2">[a-z]</define-regex>

    <context id="attribute1" style-ref="element-name">
      <match>\$(?=\%{attribute2})</match>
    </context>

    <context id="number" style-ref="decimal">
      <match extended="true">
        (?&lt;![\w\.])(?&lt;!color\d )(?&lt;!color )[0-9]{1,4}(,|\.)[0-9]{1,4}(?![\w\.,])|(?&lt;![\w\.])(?&lt;!color\d )(?&lt;!color )[0-9]{1,5}(?![\w\.,])
      </match>
    </context>

    <!-- parole sopra TEXT -->
    <!-- keywords above TEXT -->
    <context id="keyword" style-ref="keyword">
      <keyword>TEXT</keyword>
      <keyword>alignment</keyword>
      <keyword>append_file</keyword>
      <keyword>background</keyword>
      <keyword>border_inner_margin</keyword>
      <keyword>border_outer_margin</keyword>
      <keyword>border_width</keyword>
      <keyword>bytes</keyword>
      <keyword>color[0-9]</keyword>
      <keyword>color</keyword>
      <keyword>colour</keyword>
      <keyword>cpu_avg_samples</keyword>
      <keyword>default_bar_size</keyword>
      <keyword>default_color</keyword>
      <keyword>default_gauge_size</keyword>
      <keyword>default_graph_size</keyword>
      <keyword>default_outline_color</keyword>
      <keyword>default_shade_color</keyword>
      <keyword>disable_auto_reload</keyword>
      <keyword>diskio_avg_samples</keyword>
      <keyword>display</keyword>
      <keyword>double_buffer</keyword>
      <keyword>draw_borders</keyword>
      <keyword>draw_graph_borders</keyword>
      <keyword>draw_outline</keyword>
      <keyword>draw_shades</keyword>
      <keyword>extra_newline</keyword>
      <keyword>^font</keyword>
      <keyword>format_human_readable</keyword>
      <keyword>function_name[functionarguments]</keyword>
      <keyword>gap_x</keyword>
      <keyword>gap_y</keyword>
      <keyword>hddtemp_host</keyword>
      <keyword>hddtemp_port</keyword>
      <keyword>if_up_strictness</keyword>
      <keyword>imap</keyword>
      <keyword>imlib_cache_flush_interval</keyword>
      <keyword>imlib_cache_size</keyword>
      <keyword>lua_draw_hook_post</keyword>
      <keyword>lua_draw_hook_pre</keyword>
      <keyword>lua_load</keyword>
      <keyword>lua_shutdown_hook</keyword>
      <keyword>lua_startup_hook</keyword>
      <keyword>mail_spool</keyword>
      <keyword>max_port_monitor_connections</keyword>
      <keyword>max_specials</keyword>
      <keyword>max_text_width</keyword>
      <keyword>max_user_text</keyword>
      <keyword>maximum_width</keyword>
      <keyword>minimum_size</keyword>
         <keyword>mldonkey_hostname</keyword>
         <keyword>mldonkey_login</keyword>
			<keyword>mldonkey_password</keyword>
         <keyword>mldonkey_port</keyword>
      <keyword>mpd_host</keyword>
      <keyword>mpd_password</keyword>
      <keyword>mpd_port</keyword>
      <keyword>music_player_interval</keyword>
      <keyword>net_avg_samples</keyword>
      <keyword>no_buffers</keyword>
      <keyword>nvidia_display</keyword>
         <keyword>on_bottom</keyword>
      <keyword>out_to_console</keyword>
      <keyword>out_to_ncurses</keyword>
      <keyword>out_to_stderr</keyword>
      <keyword>out_to_x</keyword>
      <keyword>override_utf8_locale</keyword>
      <keyword>overwrite_file</keyword>
      <keyword>own_window</keyword>
      <keyword>own_window_argb_value</keyword>
      <keyword>own_window_argb_visual</keyword>
      <keyword>own_window_class</keyword>
      <keyword>own_window_colour</keyword>
      <keyword>own_window_hints</keyword>
      <keyword>own_window_title</keyword>
      <keyword>own_window_argb_visual</keyword>
      <keyword>own_window_argb_value</keyword>
      <keyword>own_window_transparent</keyword>
      <keyword>own_window_type</keyword>
      <keyword>pad_percents</keyword>
         <keyword>pixels</keyword>
      <keyword>pop3</keyword>
      <keyword>short_units</keyword>
      <keyword>show_graph_range</keyword>
      <keyword>show_graph_scale</keyword>
      <keyword>stippled_borders</keyword>
      <keyword>temperature_unit</keyword>
      <keyword>template[0-9]</keyword>
      <keyword>text_buffer_size</keyword>
      <keyword>times_in_seconds</keyword>
      <keyword>top_cpu_separate</keyword>
      <keyword>top_name_width</keyword>
      <keyword>total_run_times</keyword>
      <keyword>update_interval</keyword>
      <keyword>update_interval_on_battery</keyword>
      <keyword>uppercase</keyword>
      <keyword>use_spacer</keyword>
      <keyword>use_xft</keyword>
      <keyword>xftalpha</keyword>
      <keyword>xftfont</keyword>
    </context>


    <!-- parole sotto TEXT -->
    <!-- keywords below TEXT -->
    <context id="attribute" style-ref="attribute">
         <keyword>AC</keyword>
      <keyword>acpiacadapter</keyword>
      <keyword>acpifan</keyword>
      <keyword>acpitemp</keyword>
      <keyword>addr</keyword>
      <keyword>addrs</keyword>
      <keyword>adt746xcpu</keyword>
      <keyword>adt746xfan</keyword>
      <keyword>alignc</keyword>
      <keyword>alignr</keyword>
         <keyword>ambient</keyword>
      <keyword>apcupsd</keyword>
      <keyword>apcupsd_cable</keyword>
      <keyword>apcupsd_charge</keyword>
      <keyword>apcupsd_lastxfer</keyword>
      <keyword>apcupsd_linev</keyword>
      <keyword>apcupsd_load</keyword>
      <keyword>apcupsd_loadbar</keyword>
      <keyword>apcupsd_loadgauge</keyword>
      <keyword>apcupsd_loadgraph</keyword>
      <keyword>apcupsd_model</keyword>
      <keyword>apcupsd_name</keyword>
      <keyword>apcupsd_status</keyword>
      <keyword>apcupsd_temp</keyword>
      <keyword>apcupsd_timeleft</keyword>
      <keyword>apcupsd_upsmode</keyword>
         <keyword>api_useridapi_keycharacter_id</keyword>
      <keyword>apm_adapter</keyword>
      <keyword>apm_battery_life</keyword>
      <keyword>apm_battery_time</keyword>
      <keyword>audacious_bar</keyword>
      <keyword>audacious_bitrate</keyword>
      <keyword>audacious_channels</keyword>
      <keyword>audacious_filename</keyword>
      <keyword>audacious_frequency</keyword>
      <keyword>audacious_length</keyword>
      <keyword>audacious_length_seconds</keyword>
      <keyword>audacious_main_volume</keyword>
      <keyword>audacious_playlist_length</keyword>
      <keyword>audacious_playlist_position</keyword>
      <keyword>audacious_position</keyword>
      <keyword>audacious_position_seconds</keyword>
      <keyword>audacious_status</keyword>
      <keyword>audacious_title</keyword>
      <keyword>battery</keyword>
      <keyword>battery_bar</keyword>
      <keyword>battery_percent</keyword>
      <keyword>battery_short</keyword>
      <keyword>battery_time</keyword>
      <keyword>blink</keyword>
      <keyword>bmpx_album</keyword>
      <keyword>bmpx_artist</keyword>
      <keyword>bmpx_bitrate</keyword>
      <keyword>bmpx_title</keyword>
      <keyword>bmpx_track</keyword>
      <keyword>bmpx_uri</keyword>
      <keyword>buffers</keyword>
      <keyword>cached</keyword>
         <keyword>case</keyword>
      <keyword>cmdline_to_pid</keyword>
         <keyword>codeset_fromcodeset_to</keyword>
      <keyword>color</keyword>
      <keyword>colorN</keyword>
      <keyword>combine</keyword>
      <keyword>command</keyword>
      <keyword>conky_build_arch</keyword>
      <keyword>conky_build_date</keyword>
      <keyword>conky_version</keyword>
      <keyword>cpu</keyword>
      <keyword>cpu[0-9]</keyword>
      <keyword>cpubar</keyword>
      <keyword>cpugauge</keyword>
      <keyword>cpugraph</keyword>
      <keyword>curl</keyword>
      <keyword>desktop</keyword>
      <keyword>desktop_name</keyword>
      <keyword>desktop_number</keyword>
        <keyword>device</keyword>
      <keyword>disk_protect</keyword>
      <keyword>diskio</keyword>
      <keyword>diskio_read</keyword>
      <keyword>diskio_write</keyword>
      <keyword>diskiograph</keyword>
      <keyword>diskiograph_read</keyword>
      <keyword>diskiograph_write</keyword>
         <keyword>disk</keyword>
      <keyword>downspeed</keyword>
      <keyword>downspeedf</keyword>
      <keyword>downspeedgraph</keyword>
      <keyword>draft_mails</keyword>
      <keyword>else</keyword>
      <keyword>endif</keyword>
      <keyword>entropy_avail</keyword>
      <keyword>entropy_bar</keyword>
      <keyword>entropy_perc</keyword>
      <keyword>entropy_poolsize</keyword>
         <keyword>eth[0-9]</keyword>
      <keyword>eval</keyword>
      <keyword>eve</keyword>
      <keyword>exec</keyword>
      <keyword>execbar</keyword>
      <keyword>execgauge</keyword>
      <keyword>execgraph</keyword>
      <keyword>execi</keyword>
      <keyword>execibar</keyword>
      <keyword>execigauge</keyword>
      <keyword>execigraph</keyword>
      <keyword>execp</keyword>
      <keyword>execpi</keyword>
         <keyword>expression</keyword>
         <keyword>fifthconnectiononaprivilegedport</keyword>
         <keyword>filestring</keyword>
         <keyword>finterval</keyword>
         <keyword>firstconnectiononaprivilegedport</keyword>
         <keyword>firstsshdconnection</keyword>
      <keyword>flagged_mails</keyword>
      <keyword>font</keyword>
      <keyword>format_time</keyword>
      <keyword>forwarded_mails</keyword>
      <keyword>freq</keyword>
         <keyword>freq_dyn_g</keyword>
         <keyword>freq_dyn</keyword>
      <keyword>freq_g</keyword>
         <keyword>fs</keyword>
      <keyword>fs_bar</keyword>
      <keyword>fs_bar_free</keyword>
      <keyword>fs_free</keyword>
      <keyword>fs_free_perc</keyword>
      <keyword>fs_size</keyword>
      <keyword>fs_type</keyword>
      <keyword>fs_used</keyword>
      <keyword>fs_used_perc</keyword>
         <keyword>function_name</keyword>
         <keyword>gid_name</keyword>
         <keyword>Givesthecurrentgpufrequency</keyword>
      <keyword>goto</keyword>
         <keyword>gpufreq</keyword>
      <keyword>gw_iface</keyword>
      <keyword>gw_ip</keyword>
      <keyword>hddtemp</keyword>
      <keyword>head</keyword>
         <keyword>height</keyword>
         <keyword>host</keyword>
      <keyword>hr</keyword>
      <keyword>hwmon</keyword>
      <keyword>i2c</keyword>
      <keyword>i8k_ac_status</keyword>
      <keyword>i8k_bios</keyword>
      <keyword>i8k_buttons_status</keyword>
         <keyword>i8k_cpu_tempf</keyword>
      <keyword>i8k_cpu_temp</keyword>
      <keyword>i8k_left_fan_rpm</keyword>
      <keyword>i8k_left_fan_status</keyword>
      <keyword>i8k_right_fan_rpm</keyword>
      <keyword>i8k_right_fan_status</keyword>
      <keyword>i8k_serial</keyword>
      <keyword>i8k_version</keyword>
      <keyword>ibm_brightness</keyword>
      <keyword>ibm_fan</keyword>
      <keyword>ibm_temps</keyword>
      <keyword>ibm_volume</keyword>
      <keyword>iconv_start</keyword>
      <keyword>iconv_stop</keyword>
         <keyword>ifbatteryisfullychargedorabsent.</keyword>
      <keyword>if_empty</keyword>
      <keyword>if_existing</keyword>
      <keyword>if_gw</keyword>
      <keyword>if_match</keyword>
      <keyword>if_mixer_mute</keyword>
      <keyword>if_mounted</keyword>
      <keyword>if_mpd_playing</keyword>
      <keyword>if_running</keyword>
      <keyword>if_smapi_bat_installed</keyword>
      <keyword>if_up</keyword>
      <keyword>if_updatenr</keyword>
      <keyword>if_xmms2_connected</keyword>
      <keyword>image</keyword>
         <keyword>imagequality</keyword>
      <keyword>imap_messages</keyword>
      <keyword>imap_unseen</keyword>
      <keyword>include</keyword>
         <keyword>interface</keyword>
         <keyword>intervalcommand</keyword>
         <keyword>interval</keyword>
         <keyword>interval-t-lcommand</keyword>
         <keyword>ioscheduler</keyword>
         <keyword>item</keyword>
      <keyword>kernel</keyword>
      <keyword>laptop_mode</keyword>
      <keyword>lines</keyword>
         <keyword>link</keyword>
         <keyword>linkstatus</keyword>
      <keyword>loadavg</keyword>
      <keyword>loadgraph</keyword>
         <keyword>Localhostname</keyword>
         <keyword>Localipaddress</keyword>
         <keyword>Localportnumber</keyword>
         <keyword>logfilelines</keyword>
         <keyword>(?&lt;=exec )expr</keyword>
      <keyword>lua</keyword>
      <keyword>lua_bar</keyword>
      <keyword>lua_gauge</keyword>
      <keyword>lua_graph</keyword>
      <keyword>^lua</keyword>
      <keyword>lua_parse</keyword>
         <keyword>lua_read_parse</keyword>
      <keyword>machine</keyword>
         <keyword>maildir</keyword>
      <keyword>mails</keyword>
      <keyword>mboxscan</keyword>
         <keyword>maxlength</keyword>
      <keyword>mem</keyword>
      <keyword>membar</keyword>
      <keyword>memeasyfree</keyword>
      <keyword>memfree</keyword>
         <keyword>memfreq</keyword>
      <keyword>memgauge</keyword>
      <keyword>memgraph</keyword>
      <keyword>memmax</keyword>
      <keyword>memperc</keyword>
      <keyword>mixer</keyword>
      <keyword>mixerbar</keyword>
      <keyword>mixerl</keyword>
      <keyword>mixerlbar</keyword>
      <keyword>mixerr</keyword>
      <keyword>mixerrbar</keyword>
         <keyword>ml_download_counter</keyword>
         <keyword>ml_ndownloaded_files</keyword>
         <keyword>ml_ndownloading_files</keyword>
         <keyword>ml_nshared_files</keyword>
         <keyword>ml_shared_counter</keyword>
         <keyword>ml_tcp_download_rate</keyword>
         <keyword>ml_tcp_upload_rate</keyword>
         <keyword>ml_udp_download_rate</keyword>
         <keyword>ml_udp_upload_rate</keyword>
         <keyword>ml_upload_counter</keyword>
      <keyword>moc_album</keyword>
      <keyword>moc_artist</keyword>
      <keyword>moc_bitrate</keyword>
      <keyword>moc_curtime</keyword>
      <keyword>moc_file</keyword>
      <keyword>moc_rate</keyword>
      <keyword>moc_song</keyword>
      <keyword>moc_state</keyword>
      <keyword>moc_timeleft</keyword>
      <keyword>moc_title</keyword>
      <keyword>moc_totaltime</keyword>
      <keyword>monitor</keyword>
      <keyword>monitor_number</keyword>
      <keyword>mountpoint</keyword>
      <keyword>mpd_album</keyword>
      <keyword>mpd_artist</keyword>
      <keyword>mpd_bar</keyword>
      <keyword>mpd_bitrate</keyword>
      <keyword>mpd_elapsed</keyword>
      <keyword>mpd_file</keyword>
      <keyword>mpd_length</keyword>
      <keyword>mpd_name</keyword>
      <keyword>mpd_percent</keyword>
      <keyword>mpd_random</keyword>
      <keyword>mpd_repeat</keyword>
      <keyword>mpd_smart</keyword>
      <keyword>mpd_status</keyword>
      <keyword>mpd_title</keyword>
      <keyword>mpd_track</keyword>
      <keyword>mpd_vol</keyword>
      <keyword>nameserver</keyword>
         <keyword>net</keyword>
      <keyword>new_mails</keyword>
      <keyword>nodename</keyword>
      <keyword>nodename_short</keyword>
         <keyword>num</keyword>
      <keyword>nvidia</keyword>
      <keyword>offset</keyword>
         <keyword>OpenGLapplications</keyword>
      <keyword>outlinecolor</keyword>
         <keyword>parameters</keyword>
         <keyword>path</keyword>
      <keyword>pb_battery</keyword>
      <keyword>pid_chroot</keyword>
      <keyword>pid_cmdline</keyword>
      <keyword>pid_cwd</keyword>
      <keyword>pid_environ</keyword>
      <keyword>pid_environ_list</keyword>
      <keyword>pid_exe</keyword>
         <keyword>pid_fsuid</keyword>
      <keyword>pid_nice</keyword>
      <keyword>pid_openfiles</keyword>
      <keyword>pid_parent</keyword>
      <keyword>pid_priority</keyword>
      <keyword>pid_read</keyword>
      <keyword>pid_state</keyword>
      <keyword>pid_state_short</keyword>
      <keyword>pid_stderr</keyword>
      <keyword>pid_stdin</keyword>
      <keyword>pid_stdout</keyword>
      <keyword>pid_thread_list</keyword>
      <keyword>pid_threads</keyword>
      <keyword>pid_time_kernelmode</keyword>
      <keyword>pid_time_usermode</keyword>
      <keyword>pid_time</keyword>
      <keyword>pid_uid</keyword>
      <keyword>pid_euid</keyword>
      <keyword>pid_suid</keyword>
      <keyword>pid_fsuid</keyword>
      <keyword>pid_fsgid</keyword>
      <keyword>pid_gid</keyword>
      <keyword>pid_sgid</keyword>
      <keyword>pid_egid</keyword>
      <keyword>pid_fsgid</keyword>

      <keyword>pid_vmpeak</keyword>
      <keyword>pid_vmsize</keyword>
      <keyword>pid_vmlck</keyword>
      <keyword>pid_vmhwm</keyword>
      <keyword>pid_vmrss</keyword>
      <keyword>pid_vmdata</keyword>
      <keyword>pid_vmstk</keyword>
      <keyword>pid_vmexe</keyword>
      <keyword>pid_vmlib</keyword>
      <keyword>pid_vmpte</keyword>
      <keyword>pid_write</keyword>
      <keyword>platform</keyword>
      <keyword>pop3_unseen</keyword>
      <keyword>pop3_used</keyword>
         <keyword>port_beginport_enditem</keyword>
         <keyword>port</keyword>
         <keyword>ports</keyword>
      <keyword>pre_exec</keyword>
      <keyword>processes</keyword>
         <keyword>process</keyword>
         <keyword>range</keyword>
      <keyword>read_tcp</keyword>
         <keyword>Remotehostname</keyword>
         <keyword>Remoteipaddress</keyword>
         <keyword>Remoteportnumber</keyword>
      <keyword>replied_mails</keyword>
      <keyword>rss</keyword>
      <keyword>running_processes</keyword>
      <keyword>running_threads</keyword>
      <keyword>scroll</keyword>
      <keyword>seen_mails</keyword>
         <keyword>seti_credit</keyword>
         <keyword>seti_progbar</keyword>
         <keyword>seti_prog</keyword>
      <keyword>shadecolor</keyword>
         <keyword>shellcommand</keyword>
         <keyword>size</keyword>
      <keyword>smapi</keyword>
      <keyword>smapi_bat_bar</keyword>
      <keyword>smapi_bat_perc</keyword>
      <keyword>smapi_bat_power</keyword>
      <keyword>smapi_bat_temp</keyword>
      <keyword>sony_fanspeed</keyword>
      <keyword>stippled_hr</keyword>
         <keyword>string</keyword>
      <keyword>swap</keyword>
      <keyword>swapbar</keyword>
      <keyword>swapfree</keyword>
      <keyword>swapmax</keyword>
      <keyword>swapperc</keyword>
      <keyword>sysname</keyword>
      <keyword>tab</keyword>
      <keyword>tail</keyword>
      <keyword>tcp_portmon</keyword>
      <keyword>TCP</keyword>
         <keyword>temp</keyword>
      <keyword>template[0-9]</keyword>
      <keyword>templateN</keyword>
         <keyword>tenthsshdconnection</keyword>
      <keyword>texeci</keyword>
         <keyword>text_and_other_conky_vars</keyword>
         <keyword>textfile</keyword>
         <keyword>thebittorrentportrange</keyword>
      <keyword>threads</keyword>
         <keyword>threshold</keyword>
      <keyword>time</keyword>
      <keyword>to_bytes</keyword>
      <keyword>top</keyword>
      <keyword>top_io</keyword>
      <keyword>top_mem</keyword>
      <keyword>top_time</keyword>
      <keyword>totaldown</keyword>
      <keyword>totalup</keyword>
      <keyword>trashed_mails</keyword>
         <keyword>type</keyword>
         <keyword>typen</keyword>
      <keyword>tztime</keyword>
      <keyword>gid_name</keyword>
      <keyword>uid_name</keyword>
      <keyword>unflagged_mails</keyword>
      <keyword>unforwarded_mails</keyword>
      <keyword>unreplied_mails</keyword>
      <keyword>unseen_mails</keyword>
         <keyword>updatenr</keyword>
      <keyword>updates</keyword>
      <keyword>upspeedf</keyword>
      <keyword>upspeedgraph</keyword>
      <keyword>upspeed</keyword>
      <keyword>uptime</keyword>
      <keyword>uptime_short</keyword>
         <keyword>urlinterval_in_minutes</keyword>
      <keyword>user_names</keyword>
      <keyword>user_number</keyword>
      <keyword>user_terms</keyword>
      <keyword>user_times</keyword>
      <keyword>utime</keyword>
         <keyword>var1var2</keyword>
      <keyword>voffset</keyword>
      <keyword>voltage_mv</keyword>
      <keyword>voltage_v</keyword>
      <keyword>weather</keyword>
      <keyword>weather_forecast</keyword>
         <keyword>width</keyword>
      <keyword>wireless_ap</keyword>
      <keyword>wireless_bitrate</keyword>
      <keyword>wireless_essid</keyword>
      <keyword>wireless_link_bar</keyword>
      <keyword>wireless_link_qual</keyword>
      <keyword>wireless_link_qual_max</keyword>
      <keyword>wireless_link_qual_perc</keyword>
      <keyword>wireless_mode</keyword>
      <keyword>words</keyword>
         <keyword>wlan[0-9]</keyword>
      <keyword>xmms2_album</keyword>
      <keyword>xmms2_artist</keyword>
      <keyword>xmms2_bar</keyword>
      <keyword>xmms2_bitrate</keyword>
      <keyword>xmms2_comment</keyword>
      <keyword>xmms2_date</keyword>
      <keyword>xmms2_duration</keyword>
      <keyword>xmms2_elapsed</keyword>
      <keyword>xmms2_genre</keyword>
      <keyword>xmms2_id</keyword>
      <keyword>xmms2_percent</keyword>
      <keyword>xmms2_playlist</keyword>
      <keyword>xmms2_size</keyword>
      <keyword>xmms2_smart</keyword>
      <keyword>xmms2_status</keyword>
      <keyword>xmms2_timesplayed</keyword>
      <keyword>xmms2_title</keyword>
      <keyword>xmms2_tracknr</keyword>
      <keyword>xmms2_url</keyword>
    </context>

<!-- *************************************************************************** -->

    <context id="color" style-ref="color">
      <match>((?&lt;= )([0-9]|[a-f]|[A-F]){6} ([0-9]|[a-f]|[A-F]){6}(?=\}))</match>
    </context>

    <context id="color1" style-ref="color">
      <match>((?&lt;=colour )([0-9]|[a-f]|[A-F]){6})|((?&lt;=color )([0-9]|[a-f]|[A-F]){6})|((?&lt;=color\d )([0-9]|[a-f]|[A-F]){6})</match>
    </context>

    <context id="taille" style-ref="decimal">
      <match>\d*x\d*\d</match>
    </context>

    <context id="adresse" style-ref="adresse">
      <match>\s(~|\$HOME)?\/([^ \`{}$]{3,}\/?)*</match>
    </context>

    <context id="date" style-ref="boolean">
      <match>(?&lt;=\$\{time )[\% a-zA-Z:]*(?=\})</match>
    </context>

    <context id="lua" style-ref="boolean">
      <match>(?&lt;=lua_load )([a-zA-Z0-9]+(_?[a-zA-Z0-9]+)+(\.lua)?)</match>
    </context>

    <context id="lua1" style-ref="boolean">
      <match>(?&lt;=lua_draw_hook_pre )([a-zA-Z0-9]+(_?[a-zA-Z0-9]+)+ ?){1,}</match>
    </context>

    <context id="lua2" style-ref="boolean">
      <match>(?&lt;=lua_draw_hook_post )([a-zA-Z0-9]+(_?[a-zA-Z0-9]+)+ ?){1,}</match>
    </context>

    <context id="lua3" style-ref="boolean">
      <match>(?&lt;=lua_parse )([a-zA-Z0-9]+(_?[a-zA-Z0-9]+)+ ?){1,}</match>
    </context>

    <context id="lua4" style-ref="boolean">
      <match>(?&lt;=lua_bar )([a-zA-Z0-9]+(_?[a-zA-Z0-9]+)+ ?){1,}</match>
    </context>

    <context id="lua5" style-ref="boolean">
      <match>(?&lt;=lua_gauge )([a-zA-Z0-9]+(_?[a-zA-Z0-9]+)+ ?){1,}</match>
    </context>

    <context id="lua6" style-ref="boolean">
      <match>(?&lt;=lua_graph )([a-zA-Z0-9]+(_?[a-zA-Z0-9]+)+ ?){1,}</match>
    </context>

    <context id="lua7" style-ref="boolean">
      <match>(?&lt;=lua_read_parse )([a-zA-Z0-9]+(_?[a-zA-Z0-9]+)+ ?){1,}</match>
    </context>

    <context id="boolean" style-ref="boolean">
      <keyword> +yes</keyword>
      <keyword> +no</keyword>
      <keyword> +none</keyword>
      <keyword> +normal</keyword>
      <keyword> +override</keyword>
      <keyword> +desktop</keyword>
      <keyword> +dock</keyword>
      <keyword> +panel</keyword>
      <keyword> +top</keyword>
      <keyword> +top_left</keyword>
      <keyword> +top_left</keyword>
      <keyword> +top_right</keyword>
      <keyword> +top_middle</keyword>
      <keyword> +bottom_left</keyword>
      <keyword> +bottom_right</keyword>
      <keyword> +bottom_middle</keyword>
      <keyword> +middle_left</keyword>
      <keyword> +middle_middle</keyword>
      <keyword> +middle_right</keyword>
      <keyword> +none</keyword>
      <keyword> +tl</keyword>
      <keyword> +tr</keyword>
      <keyword> +tm</keyword>
      <keyword> +bl</keyword>
      <keyword> +br</keyword>
      <keyword> +bm</keyword>
      <keyword> +ml</keyword>
      <keyword> +mm</keyword>
      <keyword> +mr</keyword>
      <keyword> +right</keyword>
      <keyword> +left</keyword>
      <keyword> +fahrenheit</keyword>
      <keyword> +celsius</keyword>
      <keyword>( +)?(,)?undecorated</keyword>
      <keyword>( +)?(,)?undecorate</keyword>
      <keyword>( +)?(,)?below</keyword>
      <keyword>( +)?(,)?above</keyword>
      <keyword>( +)?(,)?sticky</keyword>
      <keyword>( +)?(,)?skip_taskbar</keyword>
      <keyword>( +)?(,)?skip_pager</keyword>
    </context>

    <context id="color2" style-ref="color">
      <keyword> +purple</keyword>
      <keyword> +blue</keyword>
      <keyword> +green</keyword>
      <keyword> +yellow</keyword>
      <keyword> +orange</keyword>
      <keyword> +red</keyword>
      <keyword> +black</keyword>
      <keyword> +white</keyword>
      <keyword> +gray</keyword>
      <keyword> +brown</keyword>
      <keyword> +pink</keyword>
      <keyword> +lightblue </keyword>
      <keyword> +darkblue</keyword>
      <keyword> +cyan</keyword>
      <keyword> +bordeaux</keyword>
      <keyword> +violet</keyword>
    </context>

  </definitions>
</language>

With luck it will show up under: Other
2017-07-10_214417_Scrot11.th.jpg

Works with Medit as well unfortunately not with geany

Last edited by Sector11 (2017-07-11 01:27:08)


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#4 2017-07-11 05:08:57

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: xed editor - config questions.

Sector11 wrote:

...
EDIT: - Just dawned on me you're running Mint

...

Not for a long time - my main distro is Stretch+BL (Helium-dev). HoaS's xed for Debian9 installed fine for me.

Regarding the conky.lang - it works with xed v1.4.5.  I don't think geany is using lang files AFAICS: the syntax files are in /usr/share/geany/{colorschemes,filedefs}

Last edited by damo (2017-07-11 05:23:11)


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#5 2017-07-11 05:51:53

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: xed editor - config questions.

Sector11 wrote:

sad

You have grabbed my original (untested) .deb that didn't work  big_smile

The current .deb includes xed-common and will actually install and run properly:

https://forums.bunsenlabs.org/viewtopic … 651#p55651

EDIT: I think it's better to add the repository and use `apt-get`, the .deb files can only be found in the actual repositories:

http://download.opensuse.org/repositori … ebian_8.0/

http://download.opensuse.org/repositori … ebian_9.0/

@damo, no idea sorry, I will look into it later...

Last edited by Head_on_a_Stick (2017-07-11 06:27:12)

Offline

#6 2017-07-11 09:57:39

brontosaurusrex
Middle Office
Registered: 2015-09-29
Posts: 2,755

Re: xed editor - config questions.

@HoaS: what should be in sources.list for Stretch?

This

deb http://download.opensuse.org/repositories/home:/Head_on_a_Stick: Helium main

gives

W: The repository 'http://download.opensuse.org/repositories/home:/Head_on_a_Stick: Helium Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://download.opensuse.org/repositories/home:/Head_on_a_Stick:/dists/Helium/main/binary-amd64/Packages  404  Not Found [IP: 195.135.221.134 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.

So I'am probably doing something wrong.

Offline

#7 2017-07-11 10:09:46

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: xed editor - config questions.

Did you get the repo release key, as described on the download page?
https://software.opensuse.org//download … ackage=xed


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#8 2017-07-11 10:21:07

brontosaurusrex
Middle Office
Registered: 2015-09-29
Posts: 2,755

Re: xed editor - config questions.

@damo, I did now, fixed.

Looks good, I do miss the minimap trick. Monokai-extended theme here.
xedMonokai.th.png

What is the tech trick in making this apps look native?

Last edited by brontosaurusrex (2017-07-11 10:44:12)

Offline

#9 2017-07-11 15:11:20

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,030

Re: xed editor - config questions.

@ damo

AHHH OK, remove from head: damo using Mint.  big_smile

Glad to hear conky.lang file works.  Must update it to include new conky 1.10 syntax.  I knew geany doesn't use .lang files, I checked it out a while back and was told to 'create my own' from an example in the place you just pointed to.  And they were not to friendly in telling me either.


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#10 2017-07-11 15:16:15

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,030

Re: xed editor - config questions.

Head_on_a_Stick wrote:
Sector11 wrote:

sad

You have grabbed my original (untested) .deb that didn't work  big_smile

NOW you tell me.  You bad boy!

OK will sign-up for the your repo and grab it.  Thanks.


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#11 2017-07-11 16:13:25

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,030

Re: xed editor - config questions.

AGAIN I revisit this....

Head_on_a_Stick wrote:
Sector11 wrote:

sad

You have grabbed my original (untested) .deb that didn't work  big_smile

OK, I have the repos, (Debian 8) got the key, did an:

   $ alias up2
alias up2='sudo apt-get update && sudo apt-get dist-upgrade --no-install-recommends'

Got the new Setting up conky-all (1:1.9.0-6) ... so far so good:

   $ alias get
alias get='sudo apt-get install --no-install-recommends'

and OOPS! again:

 11 Jul 17 @ 13:01:07 ~
   $ get xed
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 xed : Depends: libpeas-1.0-0-python3loader but it is not installable or
                debian-system-adjustments but it is not installable
E: Unable to correct problems, you have held broken packages.
 
 11 Jul 17 @ 13:01:27 ~
   $

mad  I'm jinxed I tell ya I'm jinxed!  ]:D
{sigh}

   $ sys
System:    Host: s12 Kernel: 3.16.0-4-amd64 x86_64 (64 bit gcc: 4.8.4)
           Desktop: Openbox 3.5.2 dm: (startx) Distro: Debian GNU/Linux 8

Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#12 2017-07-11 19:20:51

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: xed editor - config questions.

Sector11 wrote:

mad  I'm jinxed I tell ya I'm jinxed!  ]:D

No, you are really useful   {)

root@Diproton:~ # aptitude show libpeas-1.0-0-python3loader
No candidate version found for libpeas-1.0-0-python3loader
Package: libpeas-1.0-0-python3loader
State: not a real package
Provided by: libpeas-1.0-0 (1.20.0-1+b1)
root@Diproton:~ #

So try:

sudo apt install libpeas-1.0-0 xed

I will add it to the Depends list in the .dsc file.

Thanks!

EDIT: actually, try this before I trigger a rebuild with the new dependency:

sudo aptitude install xed

Perhaps `aptitude` can figure it out by itself...

8)

Last edited by Head_on_a_Stick (2017-07-11 19:24:12)

Offline

#13 2017-07-11 19:31:19

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: xed editor - config questions.

libpeas? Isn't that a dependency of python's BeautifulSoup module?  8o


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#14 2017-07-11 19:33:25

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: xed editor - config questions.

^

import ham

lol

Offline

#15 2017-07-11 20:25:42

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,030

Re: xed editor - config questions.

Head_on_a_Stick wrote:
Sector11 wrote:

mad  I'm jinxed I tell ya I'm jinxed!  ]:D

No, you are really useful   {)

As in the Sargent-Major said to the hippie; "Don't worry kid, no man is entirely worthless, they can always serve as a horrible example." kinda useful?

Just pulling your leg, HoaS  big_smile

EDIT: actually, try this before I trigger a rebuild with the new dependency:

sudo aptitude install xed

Perhaps `aptitude` can figure it out by itself...

8)

No .. it said 17 then changed to 8 programs and no xed.

 11 Jul 17 @ 17:09:09 ~
   $ sudo aptitude install xed
[sudo] password for sector11: 
The following NEW packages will be installed:
  geoclue-2.0{a} gist{a} libgtksourceview-3.0-1{a} libgtksourceview-3.0-common{a} 
  libjavascriptcoregtk-3.0-0{a} libnl-genl-3-200{a} libpeas-1.0-0{a} libpeas-common{a} 
  libwebkitgtk-3.0-0{a} libwebkitgtk-3.0-common{a} ruby-json{a} wpasupplicant{a} 
  xapps-common{a} xed{b} xed-common{a} zenity{a} zenity-common{a} 
0 packages upgraded, 17 newly installed, 0 to remove and 0 not upgraded.
Need to get 18.4 MB of archives. After unpacking 73.0 MB will be used.
The following packages have unmet dependencies:
 xed : Depends: libpeas-1.0-0-python3loader which is a virtual package. or
                debian-system-adjustments which is a virtual package.
The following actions will resolve these dependencies:

     Keep the following packages at their current version:
1)     xed [Not Installed]                                



Accept this solution? [Y/n/q/?] 
The following NEW packages will be installed:
  geoclue-2.0{a} libjavascriptcoregtk-3.0-0{a} libnl-genl-3-200{a} libwebkitgtk-3.0-0{a} 
  libwebkitgtk-3.0-common{a} wpasupplicant{a} zenity{a} zenity-common{a} 
0 packages upgraded, 8 newly installed, 0 to remove and 0 not upgraded.
Need to get 14.9 MB of archives. After unpacking 53.4 MB will be used.
Do you want to continue? [Y/n/?] 
Get: 1 http://deb.debian.org/debian/ jessie/main libjavascriptcoregtk-3.0-0 amd64 2.4.9-1~deb8u1 [1,996 kB]
Get: 2 http://deb.debian.org/debian/ jessie/main libnl-genl-3-200 amd64 3.2.24-2 [20.1 kB]         
Get: 3 http://deb.debian.org/debian/ jessie/main libwebkitgtk-3.0-common all 2.4.9-1~deb8u1 [452 kB]
Get: 4 http://deb.debian.org/debian/ jessie/main libwebkitgtk-3.0-0 amd64 2.4.9-1~deb8u1 [7,707 kB]
Get: 5 http://deb.debian.org/debian/ jessie/main geoclue-2.0 amd64 2.1.10-2 [71.5 kB]              
Get: 6 http://deb.debian.org/debian/ jessie/main wpasupplicant amd64 2.3-1+deb8u4 [917 kB]         
Get: 7 http://deb.debian.org/debian/ jessie/main zenity-common all 3.14.0-1 [3,527 kB]             
Get: 8 http://deb.debian.org/debian/ jessie/main zenity amd64 3.14.0-1 [252 kB]                    
Fetched 14.9 MB in 4min 54s (50.7 kB/s)                                                            
Retrieving bug reports... Done
Parsing Found/Fixed information... Done
Selecting previously unselected package libjavascriptcoregtk-3.0-0:amd64.
(Reading database ... 161072 files and directories currently installed.)
Preparing to unpack .../libjavascriptcoregtk-3.0-0_2.4.9-1~deb8u1_amd64.deb ...
Unpacking libjavascriptcoregtk-3.0-0:amd64 (2.4.9-1~deb8u1) ...
Selecting previously unselected package libnl-genl-3-200:amd64.
Preparing to unpack .../libnl-genl-3-200_3.2.24-2_amd64.deb ...
Unpacking libnl-genl-3-200:amd64 (3.2.24-2) ...
Selecting previously unselected package libwebkitgtk-3.0-common.
Preparing to unpack .../libwebkitgtk-3.0-common_2.4.9-1~deb8u1_all.deb ...
Unpacking libwebkitgtk-3.0-common (2.4.9-1~deb8u1) ...
Selecting previously unselected package libwebkitgtk-3.0-0:amd64.
Preparing to unpack .../libwebkitgtk-3.0-0_2.4.9-1~deb8u1_amd64.deb ...
Unpacking libwebkitgtk-3.0-0:amd64 (2.4.9-1~deb8u1) ...
Selecting previously unselected package geoclue-2.0.
Preparing to unpack .../geoclue-2.0_2.1.10-2_amd64.deb ...
Unpacking geoclue-2.0 (2.1.10-2) ...
Selecting previously unselected package wpasupplicant.
Preparing to unpack .../wpasupplicant_2.3-1+deb8u4_amd64.deb ...
Unpacking wpasupplicant (2.3-1+deb8u4) ...
Selecting previously unselected package zenity-common.
Preparing to unpack .../zenity-common_3.14.0-1_all.deb ...
Unpacking zenity-common (3.14.0-1) ...
Selecting previously unselected package zenity.
Preparing to unpack .../zenity_3.14.0-1_amd64.deb ...
Unpacking zenity (3.14.0-1) ...
Processing triggers for dbus (1.8.22-0+deb8u1) ...
Processing triggers for desktop-file-utils (0.22-1) ...
Processing triggers for mime-support (3.58) ...
Processing triggers for man-db (2.7.0.2-5) ...
Setting up libjavascriptcoregtk-3.0-0:amd64 (2.4.9-1~deb8u1) ...
Setting up libnl-genl-3-200:amd64 (3.2.24-2) ...
Setting up libwebkitgtk-3.0-common (2.4.9-1~deb8u1) ...
Setting up libwebkitgtk-3.0-0:amd64 (2.4.9-1~deb8u1) ...
Setting up geoclue-2.0 (2.1.10-2) ...
Setting up wpasupplicant (2.3-1+deb8u4) ...
Setting up zenity-common (3.14.0-1) ...
Setting up zenity (3.14.0-1) ...
Processing triggers for libc-bin (2.19-18+deb8u10) ...
Processing triggers for dbus (1.8.22-0+deb8u1) ...

 11 Jul 17 @ 17:18:24 ~
   $ 

Now to clean them out.

{sigh} Told ya, didn't I tell ya - JINXED!    wink  smile

Edit: Cleaned up.

Last edited by Sector11 (2017-07-11 20:31:52)


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#16 2017-07-12 06:36:41

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: xed editor - config questions.

^ Well that's ****ing confusing...

APT has installed libpeas-1.0-0 but claims the libpeas-1.0-0-python3loader dependency is unsatisfied.

Please post the output of:

aptitude show libpeas-1.0-0-python3loader

Compare the output with that from my stretch system here:

https://forums.bunsenlabs.org/viewtopic … 703#p55703

Offline

#17 2017-07-12 10:58:11

brontosaurusrex
Middle Office
Registered: 2015-09-29
Posts: 2,755

Re: xed editor - config questions.

HoaS, Any plans for 'packing' Xreader, Xviewer? (Could be nice replacement for current mate atril (or evince) and viewnior).

Last edited by brontosaurusrex (2017-07-12 10:59:08)

Offline

#18 2017-07-12 11:08:57

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: xed editor - config questions.

brontosaurusrex wrote:

HoaS, Any plans for 'packing' Xreader, Xviewer? (Could be nice replacement for current mate atril (or evince) and viewnior).

It has been discussed. It could be neat having a whole suite of complementary apps, but tricky if we have to maintain the packages.


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#19 2017-07-12 12:27:51

brontosaurusrex
Middle Office
Registered: 2015-09-29
Posts: 2,755

Re: xed editor - config questions.

A quick try at building xreader, looks good imho
xreader.th.png

something like:

autogen.sh --disable-caja
make
sudo checkinstall # complains about version number, but happy with manual "144"
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
sudo ldconfig

But as usually: do it right, not the way I do it.

Last edited by brontosaurusrex (2017-07-12 12:40:33)

Offline

#20 2017-07-12 12:54:21

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: xed editor - config questions.

^ @bronto

Maybe open a new thread for xreader?


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

Board footer

Powered by FluxBB