diff --git a/Cursors/Chicago95 Animated Hourglass Cursors/build/cursors_gen.py b/Cursors/Chicago95 Animated Hourglass Cursors/build/cursors_gen.py index 5910fa0..c3c79e8 100755 --- a/Cursors/Chicago95 Animated Hourglass Cursors/build/cursors_gen.py +++ b/Cursors/Chicago95 Animated Hourglass Cursors/build/cursors_gen.py @@ -635,7 +635,7 @@ for cursor in cursors: f = open("tmp/"+cur_filename+".cur","wb") f.write(icon['ico_file']) f.close() - self.convert_cur_files("tmp/"+cur_filename+".cur", "tmp/"+cur_filename+".png") + convert_cur_files("tmp/"+cur_filename+".cur", "tmp/"+cur_filename+".png") write_conf.write("{size} {xhot} {yhot} {filename} {rate}\n".format(size=size, xhot=xhot, yhot=yhot, filename=cur_filename+".png", rate=rate )) else: itericons = iter(ani_file_config['icon']) diff --git a/Cursors/Chicago95 Standard Cursors Black/build/cursors_gen.py b/Cursors/Chicago95 Standard Cursors Black/build/cursors_gen.py index 5910fa0..c3c79e8 100755 --- a/Cursors/Chicago95 Standard Cursors Black/build/cursors_gen.py +++ b/Cursors/Chicago95 Standard Cursors Black/build/cursors_gen.py @@ -635,7 +635,7 @@ for cursor in cursors: f = open("tmp/"+cur_filename+".cur","wb") f.write(icon['ico_file']) f.close() - self.convert_cur_files("tmp/"+cur_filename+".cur", "tmp/"+cur_filename+".png") + convert_cur_files("tmp/"+cur_filename+".cur", "tmp/"+cur_filename+".png") write_conf.write("{size} {xhot} {yhot} {filename} {rate}\n".format(size=size, xhot=xhot, yhot=yhot, filename=cur_filename+".png", rate=rate )) else: itericons = iter(ani_file_config['icon']) diff --git a/Cursors/Chicago95 Standard Cursors Black/index.theme b/Cursors/Chicago95 Standard Cursors Black/index.theme index ff678b6..cff7f53 100644 --- a/Cursors/Chicago95 Standard Cursors Black/index.theme +++ b/Cursors/Chicago95 Standard Cursors Black/index.theme @@ -1,3 +1,3 @@ [Icon Theme] -Name=Chicago 95 Standard +Name=Chicago 95 Standard Black Comment=Chicago 95 Standard cursor theme for X11 diff --git a/Cursors/Chicago95 Standard Cursors/build/cursors_gen.py b/Cursors/Chicago95 Standard Cursors/build/cursors_gen.py index 5910fa0..c3c79e8 100755 --- a/Cursors/Chicago95 Standard Cursors/build/cursors_gen.py +++ b/Cursors/Chicago95 Standard Cursors/build/cursors_gen.py @@ -635,7 +635,7 @@ for cursor in cursors: f = open("tmp/"+cur_filename+".cur","wb") f.write(icon['ico_file']) f.close() - self.convert_cur_files("tmp/"+cur_filename+".cur", "tmp/"+cur_filename+".png") + convert_cur_files("tmp/"+cur_filename+".cur", "tmp/"+cur_filename+".png") write_conf.write("{size} {xhot} {yhot} {filename} {rate}\n".format(size=size, xhot=xhot, yhot=yhot, filename=cur_filename+".png", rate=rate )) else: itericons = iter(ani_file_config['icon']) diff --git a/INSTALL.md b/INSTALL.md index 6a07cf6..f93064b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -422,10 +422,21 @@ If you want to change the icon label backdrop colour or text colours, you'll hav ### [ Cursors ] To install the cursors theme copy the folders in `Cursors` to `/usr/share/icons` (for system-wide install) or `~/.icons` (for user only install.) -In XFCE select Settings -> Mouse and Touchpad. Click on 'Icons' and select `Chicago95`. +In XFCE select Settings -> Mouse and Touchpad. Click on 'Icons' and select one of: + +* **Chicago95 Standard Cursors**: Original Windows 95 cursor theme +* **Chicago95 Standard Cursors Black**: Customized Windows 95 cursor theme in black +* **Chicago95 Animated Hourglass Cursors**: Original Windows 95 animated cursor theme +* **Chicago95_Cursor_White**: Original Chicago95 cursor theme (replaced by Standard Cursors) +* **Chicago95_Cursor_Black**: Original Chicago95 cursor black theme (replaced by Standard Cursors Black ) +* **Chicago95_Emerald**: A 3d cursor theme with some extra flair *Note: If you copied the icons to `/usr/share/icons` you may have to log out or reboot your system before the cursor theme is available.* +#### Custom Cursor Themes + +If these themes aren't enough and you'd like to personalize your icon theme download your cursors (from sites like http://cd.textfiles.com/winfiles/winfiles1/cursors.html) and replace the cursor in `/build/95` or `/build/xcursors` (note: this only works in the Standard/Animated Hourgladd Cursors folders). You don't need to worry about the extension, the build script will work with regular cursors `.cur`, animated cursors `.ani` and icons `.ico`. So long as the file name before the file extension is the same. After you've made your changes run the python script `cursor_gen.py` from within the build directory and your new theme will be created. To give your theme a custom name edit the `index.theme` file. Then rename the folder and copy it using the same directions above. + ### [ MS Sans Serif font ] diff --git a/installer.py b/installer.py index b2edf00..1f4fb7a 100755 --- a/installer.py +++ b/installer.py @@ -269,7 +269,7 @@ class InstallGUI: elif from_file == "install_cursors" and self.copy_files["install_cursors"]: print("Enabling Cursors in XFCE4") - self.xfconf_query('xsettings', '/Gtk/CursorThemeName', "Chicago95_Cursor_White") + self.xfconf_query('xsettings', '/Gtk/CursorThemeName', "Chicago95 Standard Cursors") elif from_file == "install_sounds" and self.copy_files["install_sounds"]: print("Enabling Sounds in XFCE4") self.xfconf_query('xsettings', '/Net/EnableEventSounds', "true")